I can't import all the rows of my csv file in R with read.csv in R -
i have large dataset in csv file. when opening in data visualization software (spotfire) can see has more 7 millions rows.
however, working rstudio, , when try open file read.csv2, being cautious of quotes or other options affect dataset, end 4 million file.
here code when import file
my_data <- { as.data.frame(read.csv2(file, sep = ";", header = true, na.strings=c(""," ","na"), quote = "", check.names=false, stringsasfactors=false)) }
moreover, when take @ data in rstudio view(my_data)
can see lines correct
is related size limit of files in rstudio or ?
Comments
Post a Comment