Learn R Programming

immunarch (version 0.9.1)

group_from_metadata: Get a character vector of samples' groups from the input metadata file

Description

Get a character vector of samples' groups from the input metadata file

Usage

group_from_metadata(.by, .metadata, .sep = "; ")

Value

Character vector with group names.

Arguments

.by

Character vector. Specify a column or columns in the input metadata to group by.

.metadata

Metadata object.

.sep

Character vector. Defines a separator between groups if more than one group passed in .by.

Developer Examples

immunarch:::group_from_metadata("Status", data.frame(Status = c("A", "A", "B", "B", "C")))