This is very annoying, I can't seam to understand whats wrong?
This is my .csv file:
D102-A1 D102-A2
A1BG 0.32 0.39
A1BG-AS1 0.08 0.14
The actual look:
;D102-A1;D102-A2
A1BG;0.32;0.39
A1BG-AS1;0.08;0.14
This is my code:
x <- read.table(file = "file.csv", sep = ";", header = TRUE, col.names = 1)
This gives these errors:
more columns than column names In addition: Warning message: header and 'col.names' are of different lengths
The first line as an empty cell in upper left corner, should this not be a header? When I have a header, why can't I set column 1 as row.names?
Thank you!