View source: R/9-activate_mass_dataset.R
activate_mass_dataset | R Documentation |
Activates a dataset within the mass dataset object for further analysis.
activate_mass_dataset(
.data,
what = c("sample_info", "variable_info", "expression_data", "annotation_table")
)
.data |
A |
what |
A character string specifying which dataset to activate. The available options are:
By default, it activates the "sample_info" dataset. |
This function allows users to activate a specific dataset within the
mass_dataset
object. The activated dataset can be then used in subsequent
analysis steps.
Returns the mass_dataset
object with the specified dataset activated.
Xiaotao Shen shenxt1990@outlook.com
data("expression_data")
data("sample_info")
data("variable_info")
object =
create_mass_dataset(
expression_data = expression_data,
sample_info = sample_info,
variable_info = variable_info
)
object
object@activated
object =
activate_mass_dataset(.data = object, what = "sample_info")
object@activated
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.