I have a CSV that contains integers and long decimal percentages, such as:
71,4,0.056338028169014086,0.028169014084507043
When I import the CSV in R using
df <- as.data.frame(read.csv('/file/location.csv', header = TRUE, stringsAsFactors=FALSE))
all of the integers import as integers, but the long decimal columns import as character. How can I get them to import as numeric?