aggregate {cytominer} | R Documentation |
Aggregate data based on given grouping.
Description
aggregate
aggregates data based on the specified aggregation method.
Usage
aggregate(
population,
variables,
strata,
operation = "mean",
univariate = TRUE,
...
)
Arguments
population |
tbl with grouping (metadata) and observation variables. |
variables |
character vector specifying observation variables. |
strata |
character vector specifying grouping variables for aggregation. |
operation |
optional character string specifying method for aggregation,
e.g. |
univariate |
boolean specifying whether the aggregation function is univariate or multivariate. |
... |
optional arguments passed to aggregation operation |
Value
aggregated data of the same class as population
.
Examples
population <- tibble::tibble(
Metadata_group = c(
"control", "control", "control", "control",
"experiment", "experiment", "experiment",
"experiment"
),
Metadata_batch = c("a", "a", "b", "b", "a", "a", "b", "b"),
AreaShape_Area = c(10, 12, 15, 16, 8, 8, 7, 7)
)
variables <- c("AreaShape_Area")
strata <- c("Metadata_group", "Metadata_batch")
aggregate(population, variables, strata, operation = "mean")
[Package cytominer version 0.2.2 Index]