I am very new to R and I am having trouble accessing a dataset I\'ve imported. I\'m using RStudio and used the Import Dataset function when importing my csv-file and pasted
You can set this globally for all read.csv/read.* commands with options(stringsAsFactors=F)
read.csv/read.*
options(stringsAsFactors=F)
Then read the file as follows: my.tab <- read.table( "filename.csv", as.is=T )
my.tab <- read.table( "filename.csv", as.is=T )