castSummary {twoddpcr} | R Documentation |
Returns a data frame with the dependent columns prefixed with given labels (depending on the targets). All relevant columns are retained.
castSummary(df, ch1Label = "Mt", ch2Label = "Wt", rows = NULL)
df |
A data frame created by calling |
ch1Label |
The prefix to use for the channel 1 target. Defaults to "Mt". |
ch2Label |
The prefix to use for the channel 2 target. Defaults to "Wt". |
rows |
The number of rows to retain from the original data frame. If
|
A data frame with the target rows merged.
Anthony Chiu, anthony.chiu@cruk.manchester.ac.uk
## Cast output from Bio-Rad's QuantaSoft into wide form. castSummary(KRAScountsQS) ## Only retain selected rows. castSummary(KRAScountsQS, rows=c(1,4:6))