scale_data | R Documentation |
Scale data.
scale_data( x, center = TRUE, method = c("auto", "uv", "range", "pareto", "none") )
x |
mass_dataset |
center |
center or not. TRUE or FALSE. |
method |
auto, uv, range, pareto or none. |
scaled mass_dataset
Xiaotao Shen shenxt1990@outlook.com
library(massdataset) data("expression_data") data("sample_info") data("sample_info_note") data("variable_info") data("variable_info_note") object = create_mass_dataset( expression_data = expression_data, sample_info = sample_info, variable_info = variable_info, sample_info_note = sample_info_note, variable_info_note = variable_info_note ) object scale_data(object, method = "auto") scale_data(object, method = "range") scale_data(object, method = "pareto") scale_data(object, method = "none")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.