time series data problem

i have a dataset with information about polution in 366 days (a year)
but the colum of DATA is organyzed exponencially in days
ex: 1/april/1997
1/may/1997
i want to 0rganize it into series time.
1 to 30 of the months

Not sure exactly what you want to do but you can change that text into dates with the lubridate package.

library(lubridate)
dmy("1/april/1997")
[1] "1997-04-01"

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.