Displaying 1 result from an estimated 1 matches for "tmp_col_arg".
Did you mean:
  tmp_col_args
  
2013 Feb 27
0
How to specify ff object filepaths when reading a CSV file into a ff data frame.
...<<<<<<
 # new to R, there are certainly better checks, or butter type than nested list...
 if(!is.null(names(col_args))){
   if (is.null(col_args$pattern)) 
     col_args$pattern <- "ffdf"
 }else{
   if(length(col_args)>0){
     for(i in 1:length(col_args)){
       tmp_col_args=col_args[[i]]
       if (is.null(tmp_col_args$pattern)) 
         tmp_col_args$pattern <- "ffdf"
     }
   }
 }
 # >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> patching >>>>>>>>...