parsePipNames {pipeComp} | R Documentation |
Parses the names of analyses performed through 'runPipeline' to extract a data.frame of parameter values (with decent classes).
parsePipNames(x, setRowNames = FALSE, addcolumns = NULL)
x |
The names to parse, or a data.frame with the names to parse as row.names. All names are expected to contain the same parameters. |
setRowNames |
Logical; whether to set original names as row.names of the output data.frame (default FALSE) |
addcolumns |
An optional data.frame of 'length(x)' rows to cbind to the output. |
A data.frame
my_names <- c("param1=A;param2=5","param1=B;param2=0") parsePipNames(my_names)