[R] Converting the data in year month day hour and minutes to date

Pete Brecknock Peter.Brecknock at bp.com
Tue Feb 19 19:23:25 CET 2013


jdbaba wrote
> Hi , 
> 
>  
> 
> I am trying to convert the date as factor to date using "as.date" function
> in R. I have the date in the following format
> 
> 2008-01-01 02:30
> 
>  
> 
> I tried to use the following command : 
> 
> as.Date(mydata$Date, format="%y-%m-%d  ")
> 
>  
> 
> Can somebody help me with this ? I was able to convert the format with no
> hour but getting difficulty with hour included. 
> 
>  
> 
> Thank you. 
> 
>  
> 
> Janesh
> 
> 
> 	[[alternative HTML version deleted]]
> 
> ______________________________________________

> R-help@

>  mailing list
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide
> http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.

how about 

as.POSIXlt("2008-01-01 02:30", format="%Y-%m-%d %H:%M") 

Pete



--
View this message in context: http://r.789695.n4.nabble.com/Converting-the-data-in-year-month-day-hour-and-minutes-to-date-tp4659075p4659080.html
Sent from the R help mailing list archive at Nabble.com.



More information about the R-help mailing list