SyntaxFix
Write A Post
Hire A Developer
Questions
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 )