Re: [R] timeDate with month designated by three letters.

2011-07-20 Thread David Winsemius
On Jul 20, 2011, at 3:38 PM, mdkz...@aol.com wrote: Thanks for the assistance How does strptime("04-MAY-11 1428",format="%d-%b-%y %H%M") differ from timeDate("04-MAY-11 1428",format="%d-%b-%y %H%M") ? Wouldn't one need to know where you got this non-base function? -- David Winsemius, M

Re: [R] timeDate with month designated by three letters.

2011-07-20 Thread mdkzone
... Peter Alspach > -Original Message- > From: r-help-boun...@r-project.org [mailto:r-help-bounces@r- > project.org] On Behalf Of mdkz...@aol.com > Sent: Wednesday, 20 July 2011 8:39 a.m. > To: R-help@r-project.org > Subject: [R] timeDate with month designated by thre

Re: [R] timeDate with month designated by three letters.

2011-07-19 Thread Clint Bowman
strptime("04-MAY-11 1428",format="%d-%b-%y %H%M") [1] "2011-05-04 14:28:00" -- Clint BowmanINTERNET: cl...@ecy.wa.gov Air Quality Modeler INTERNET: cl...@math.utah.edu Department of Ecology VOICE: (360) 407-6815 PO Box 47600

Re: [R] timeDate with month designated by three letters.

2011-07-19 Thread Peter Alspach
f Of mdkz...@aol.com > Sent: Wednesday, 20 July 2011 8:39 a.m. > To: R-help@r-project.org > Subject: [R] timeDate with month designated by three letters. > > Dear R Experts: > > >I am trying to convert a date and time character field to timeDate > where the month is presented

[R] timeDate with month designated by three letters.

2011-07-19 Thread mdkzone
Dear R Experts: I am trying to convert a date and time character field to timeDate where the month is presented as three letters, such as "JUN" for June, etc. This is an example of the full character field: "04-MAY-11 1428" What is the proper format syntax? I've tried timeDate("04-MAY