I have a csv file with 28 columns and 1000 rows.
I want to assign a specific set of columns to a vector, in order to analyze that vector in further steps.
The question is:
How can I define the columns to be stored in the vector?
What I have done is:
carbo2 <- carbo[,-4,-5,]
#or
carbo2 <- carbo[,c(-4,-5),]
In some cases, those command lines work almost well. But, when I print those vectors, I find that some columns, that I do not want, were assigned.