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
Post a Comment