Let's say that I want to create a data frame that contains a column with a structured structure in the following format.
2011-08-01 2011-08-02 2011-08-03 2011-08-04 ...
I want to know if this data can be generated with the seq()
command.
Something like the following: (obviously not working)
seq(2011-08-01:2011-08-31)
Instead, I should use toDate and regex to create this date in this particular format.
source share