I recently inherited an old data set that's about ~50 years of daily data across several different sites. The previous person organized the dates into three columns, i.e. column A is year, column B is month, and column C is day. This is obviously useless for any kind of time series analysis. I would like to write a line in R that combines that into the actual day in column D. So for example if column A row 1 = 1959, column B row 1 = 3, and column C row 1 = 27, how can I make column D read 3/27/1959 and ensure this is recognized as a date? I have been completely unsuccessful thus far.
Thanks, Jill