Displaying 1 result from an estimated 1 matches for "capped_data".
Did you mean:
append_data
2014 Jul 01
1
combining data from multiple read.delim() invocations.
...o the following? I have data in a number of tab
delimited files. I am using read.delim() to read them, in a loop. I am
invoking my code on Linux Fedora 20, from the BASH command line, using
Rscript. The code I'm using looks like:
arguments <- commandArgs(trailingOnly=TRUE);
# initialize the capped_data data.frame
capped_data <- data.frame(lpar="NULL",
started=Sys.time(),
ended=Sys.time(),
stringsAsFactors=FALSE);
# and empty it.
capped_data <- capped_data[-1,];
#
# Read in the data from the files listed
for (file...