Java Mailing List Archive

http://www.r-help.com/

Home » Home (12/2007) » R Help for Statistical Computing »

Re: [R] convert to chron objects

Gabor Grothendieck

2005-07-13

Replies:

[I had some emails problems so I am sending this again. Sorry
if you get it twice.]

On 7/13/05, Gabor Grothendieck <ggrothendieck@(protected):
>
>
> On 7/13/05, Young Cho <iidn01@(protected):
> > Hi,
> >
> > I have a column of a dataframe which has time stamps
> > like:
> >
> > > eh$t[1]
> > [1] 06/05/2005 01:15:25
> >
> > and was wondering how to convert it to chron variable.
> > Thanks a lot.
>
>
>
>
>
Try this:

# test data frame eh containing a factor variable t
eh <- data.frame(t = c("06/05/2005 01:15:25", "06/07/2005 01:15:25"))

# substring converts factor to character and extracts substring
chron(dates = substring(eh$t, 1, 10), times = substring(eh$t, 12))

See ?chron for more info. There is an article on dates in
R News 4/1 and although it does not specifically answer this
question it may be useful with chron and also provides a
reference to more chron info elsewhere.

______________________________________________
R-help@(protected)
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html
©2008 r-help.com - Jax Systems, LLC, U.S.A.