[R] Convert H:MM:SS PM /AM into 24 HR syntax

2009-11-04 Thread Jason Rupert
I've got an array of times in H:MM:SS PM/AM format, e.g. 5:27:15 PM (no leading zero), and I would like to convert them over to 24 HR syntax, e.g. HH:MM:SS. If it matters, the times are from the Central Time zone. Is there a command to convert the time to a 24HR format? I tried the

Re: [R] Convert H:MM:SS PM /AM into 24 HR syntax

2009-11-04 Thread Henrique Dallazuanna
Try this: strptime(5:27:15 PM, %I:%M:%S %p) On Wed, Nov 4, 2009 at 3:19 PM, Jason Rupert jasonkrup...@yahoo.com wrote: I've got an array of times in H:MM:SS PM/AM format, e.g. 5:27:15 PM (no leading zero), and I would like to convert them over to 24 HR syntax, e.g. HH:MM:SS. If it

Re: [R] Convert H:MM:SS PM /AM into 24 HR syntax

2009-11-04 Thread Jason Rupert
This is exactly what I needed.  Thanks again for all your help. - Original Message From: Henrique Dallazuanna www...@gmail.com To: Jason Rupert jasonkrup...@yahoo.com Cc: R-help@r-project.org Sent: Wed, November 4, 2009 11:22:52 AM Subject: Re: [R] Convert H:MM:SS PM /AM into 24 HR