I have a file "data.csv" with a few columns:
col1, col2, col3
001, 012, 0234
All three columns have strings like the data displayed, but when I run df = read.csv("data.csv")
, View(df)
looks like this.
col1, col2, col3
1, 12, 234
How do import the data to look the way it does in the CSV?