Implementations of the functions dplyr::rename()
and
dplyr::rename_with()
that can be used to rename the variables of the cell meta
data.frame.
rename*Df()
changes the names of individual variables using new_name = old_name
syntax. rename*DfWith()
renames variables with a function specified in argument .fn
.
renameMetaDf(object, ..., phase = NULL)
renameMetaDfWith(object, ..., phase = NULL)
object | A valid cypro object. |
---|---|
... | Input for function |
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 Ignored if the experiment design contains only one phase. |
An updated version of the input cypro
-object.
Use getGroupingVariableNames()
to check if renaming resulted in
the desired output.
Make sure not to rename protected variables. Use the function protectedVariables()
to obtain variable names that must not be changed and must not be added. Doing
so will result in erroneous analysis results as many functions rely on these
variables to carry specific meaning.