View source: R/missing_value_explore_plot.R
show_sample_missing_values | R Documentation |
show missing values for each sample
show_sample_missing_values(
object,
color_by,
order_by,
percentage = FALSE,
show_x_text = TRUE,
show_x_ticks = TRUE,
desc = FALSE
)
object |
(required) A mass_dataset class object. |
color_by |
which column (in sample_info) is used to color samples |
order_by |
which column (in sample_info) is used to order samples |
percentage |
show MV percentage? TRUE or FALSE. |
show_x_text |
show x axis text or not? TRUE or FALSE |
show_x_ticks |
show x ticks or not? TRUE or FALSE |
desc |
descend sample order or not. TRUE or FALSE. |
A ggplot2 object
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
##show missing values plot
show_sample_missing_values(object)
show_sample_missing_values(object, color_by = "class")
show_sample_missing_values(object, color_by = "class", order_by = "na")
show_sample_missing_values(object, color_by = "class", order_by = "na",
desc = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.