[Solved] Using R – Read CSV , aggregate/percent column

[ad_1]

The first step (reading in the csv) is pretty simple:

data = read.table("filename.csv",
sep = ",", quote = "",
header=TRUE)

The ‘sep’ part makes it clear that the separator is a comma, and ‘header’ keeps those column headings separate from the rest of the data.
Does that work for you?
-Y

[ad_2]

solved Using R – Read CSV , aggregate/percent column