I've just started learning R for a short time. I have the following table
Name stDte edDte
A 2010-05-01 2014-12-01
B 2013-06-01 2014-02-01
I need to get it transformed into a table like this
Name Dte
A 2010-05-01
A 2010-06-01
A 2010-07-01
...
A 2014-12-01
B 2013-06-01
B 2013-07-01
...
B 2014-02-01
I'm thinking about using a combination of a 'for' loop for together with rbind but I'm not sure how to go about it. Would appreciate any suggestions on how to do that. Thanks in advance for the guidance