Hello,
I want to import some columns out of the csv file that I have into a data frame in R like we can do for the rows->
df<-read.csv(“train.csv”, stringsAsFactors=FALSE, nrows=1000)
How casn we do something similar in R to read some specific number of columns from the start or the end?
thanks.