I have a df with three columns (among others) with "date-data": day, month and year. I am wondering if there is any clever way to join them to one column with "DD-MM_YYYY" instead? Perhaps with lubridate?
`day<-c(2, 4, 22, 7, 17, 12)
month<-c(2, 1, 6, 12, 10, 5)
year<-c(1999, 2000, 2001, 1977, 1982, 1940)
df<-data.frame(day, month, year)`
I have only joined string columns before or created column where I have done computations. This is new to me.