Displaying 1 result from an estimated 1 matches for "2c83".
Did you mean:
283
2009 Dec 24
2
Column naming issues using read.table
...e header starts on row 2 but is contained in
column 1, i have 600 data files and for future ease would rather not edit
each file seperatly. The data starts on row three and I only need the first
381 data points.
The R error message using the code iv got so far is
Error in read.table(file("s1-2c83.csv"), header = FALSE, sep = ",", quote =
"", :
more columns than column names
The code I have so far is
framename<-read.table(file ("s1-2c83.csv"),
header = FALSE, # FLASE indicates headers are not included in input file
sep = ",", # must ha...