- I am importing an excel csv file which has a large number of columns. Each column is for a different date. e.g. March 1990, April 1990.
- When I import the column headers are being changed to numbers, for example, 34355, 34356.
- How do I preserve the dates?
I tried using the r studio import function
sales <- read_csv("W:/Sales_data/sales.csv")
Expected
First_Name Sir_name Region Jan_1980 Feb_1980 Mar_1980
George Dell LA 52 23 121
Lisa Stevens NY 234 122
Peter Hunt TX 3242 12 123
Actual
First_Name Sir_name Region 34524 34525 34526
George Dell LA 52 23 121
Lisa Stevens NY 234 122
Peter Hunt TX 3242 12 123
Any help is greatly appreciated.