Skip to content
Snippets Groups Projects
Unverified Commit 74461d59 authored by Todor Kondic's avatar Todor Kondic
Browse files

base: Change in NA defaults for file2tab

R/base.R(file2tab): Updated. Different NA defaults.
parent 74cdcb45
No related branches found
No related tags found
No related merge requests found
......@@ -22,7 +22,7 @@ tab2file<-function(tab,file,...) {
data.table::fwrite(x=tab,file=file,...)
}
file2tab<-function(file,na.strings=c("","NA"),...) {
file2tab<-function(file,na.strings=c("","NA","\"\""),...) {
data.table::fread(file=file,na.strings = na.strings, ...)
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment