Displaying 1 result from an estimated 1 matches for "compric".
Did you mean:
compris
2013 Mar 13
2
How to read a *.csv file in R?
...18,8 59,32 53,5 -10,54
July 87 19,8 110,64 54,5 -4,72
Aug.87 18,9 43,18 55,3 -0,36
Sep.87 18,2 28,17 55,1 -4,17
Oct. 87 18,6 35,77 57,8 4,14
Nov.87 17,7 22,92 55,5 1,09
Dec. 87 16,8 7,01 56,5 6,81
Jan. 88 16,7 -8,74 58,4 17,27
Feb.88 15,7 -9,25 59,5 19,24
> heisenberg <- read.csv(file="comprice.csv",head=TRUE,sep="")
Error in read.table(file = file, header = header, sep = sep, quote = quote,
:
duplicate 'row.names' are not allowed
However, my row names are not duplicated. When I try:
> heisenberg <- read.csv(file="comprice.csv",head=TRUE,sep=&...