Originally the rownames
of my data (a csv
-file) were:
1
5
33
37
However, as I read in my data using:
data <- read.table(data, sep = ",", header = TRUE)
it seems that the rownames
has been transformed to:
X1
X5
X33
X37
Are there any common reasons for why this is happening? It's entirely unintentional.