Using Dates in R -


this question has answer here:

i have csv file columns dates. have imported file using code: rx <-read.csv ("test.csv", sep = "," , header = true) , want convert field start_date date format can use date ranges split data set. in csv file field in format '01/01/2015'

any in doing great.

thanks

i agree imo. can convert using:

rx$start_date = as.date(rx$start_date, format = "%d/%m/%y") 

Comments

Popular posts from this blog

Django REST Framework perform_create: You cannot call `.save()` after accessing `serializer.data` -

Why does Go error when trying to marshal this JSON? -