Convenient access to the names of your objects data variables. Useful to obtain vectors of variable names as input for recurring arguments like across or grouping_variable.

getGroupingVariableNames(
  object,
  ...,
  named = FALSE,
  phase = NULL,
  verbose = TRUE
)

getClusterVariableNames(object, ..., phase = NULL)

getMetaVariableNames(object, ..., phase = NULL)

getWellPlateVariableNames(object, ...)

Arguments

object

A valid cypro object.

...

Additional selection helpers from the tidyselect package that match variable names according to a given pattern.

named

Logial value. If set to TRUE the grouping variables are named according to their grouping type (cluster, meta or well_plate).

phase

Character or numeric. If character, the ordinal value referring to the phase of interest (e.g. 'first', 'second' etc.). referring to the phase of interest or 'all'. If numeric, the number referring to the phase.

If set to NULL takes the phase denoted as default with adjustDefault().

Ignored if the experiment design contains only one phase.

verbose

Logical. If set to TRUE informative messages regarding the computational progress will be printed.

(Warning messages will always be printed.)

Value

A character vector.

See also

starts_with(), ends_with(), contains(), matches()