View source: R/analysis-functions.R
cumulative_count_union | R Documentation |
This function was deprecated in favour of a single function,
please use cumulative_is
instead.
cumulative_count_union(
x,
association_file = NULL,
timepoint_column = "TimePoint",
key = c("SubjectID", "CellMarker", "Tissue", "TimePoint"),
include_tp_zero = FALSE,
zero = "0000",
aggregate = FALSE,
...
)
x |
A simple integration matrix or an aggregated matrix (see details) |
association_file |
NULL or the association file for x if |
timepoint_column |
What is the name of the time point column? |
key |
The aggregation key - must always contain the |
include_tp_zero |
Include timepoint 0? |
zero |
How is 0 coded in the data frame? |
aggregate |
Should x be aggregated? |
... |
Additional parameters to pass to |
A data frame
## Not run:
data("integration_matrices", package = "ISAnalytics")
data("association_file", package = "ISAnalytics")
aggreg <- aggregate_values_by_key(
x = integration_matrices,
association_file = association_file,
value_cols = c("seqCount", "fragmentEstimate")
)
cumulative_count <- cumulative_count_union(aggreg)
cumulative_count
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.