What I expected
fread("foo.csv") to import a data.table
What I did
- Installed the most recent version
- created a simple csv file
- tried to read a csv
install_github("Rdatatable/data.table")
write.csv(1, "tmp.csv")
fread("tmp.csv", verbose = TRUE)
What happened:
# Error in fread("tmp.csv", verbose = TRUE) :
# showProgress must be 0 or 1, currently
> sessionInfo()
R version 3.1.1 (2014-07-10)
Platform: x86_64-w64-mingw32/x64 (64-bit)
locale:
[1] LC_COLLATE=English_United States.1252 LC_CTYPE=English_United States.1252
[3] LC_MONETARY=English_United States.1252 LC_NUMERIC=C
[5] LC_TIME=English_United States.1252
attached base packages:
[1] stats graphics grDevices utils datasets methods base
other attached packages:
[1] data.table_1.9.5
loaded via a namespace (and not attached):
[1] chron_2.3-45 tools_3.1.1
What works
Works normally on Ubuntu 14.04 / R 3.1.0
What I expected
fread("foo.csv")to import a data.tableWhat I did
What happened:
What works
Works normally on Ubuntu 14.04 / R 3.1.0