I am working with a data frame which has date in the first row as given below:
However, when I input them these dates get converted to numbers as shown below:
I would like this to be dates in the same format as in the image above.
> library(readxl)
> Book1 <- read_excel("C:/X/X/X/Book1.xlsx",skip=1)
> View(Book1)
The data frame is given below:
structure(list(ds = c("ABC", "ABX", "ABZ"), `44866` = c(0, 0,
0), `44896` = c(0, 0, 0), `44927` = c(0, 0, 0), `44958` = c(0,
0, 0), `44986` = c(0, 0, 0), `45017` = c(0, 0, 0)), class = c("tbl_df",
"tbl", "data.frame"), row.names = c(NA, -3L))
Can someone share work around on this?

