Skip to content

Instantly share code, notes, and snippets.

@cbare
Created December 1, 2012 07:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cbare/4180924 to your computer and use it in GitHub Desktop.
Save cbare/4180924 to your computer and use it in GitHub Desktop.
Combine RSSD output from multiple nodes into a data.frame
system('cp ../rssd.10x.node* .')
dfs <- lapply( list.files('.','rssd.10x.*'), function(fn) { read.delim(fn, sep="\t", header=T) } )
df <- do.call(rbind, dfs)
dim(df)
all(is.na(df$error))
@cbare
Copy link
Author

cbare commented Dec 5, 2012

Combine checkpoints from all workers into one data.frame

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment