View source: R/dataset_chart_classes.R
DatasetExperiment_boxplot | R Documentation |
A boxplot to visualise the distribution of values within a subset of features.
DatasetExperiment_boxplot(
factor_name,
by_sample = TRUE,
per_class = TRUE,
number = 50,
...
)
factor_name |
(character) The name of a sample-meta column to use. |
by_sample |
(logical) Plot by sample. Allowed values are limited to the following:
The default is |
per_class |
(logical) Plot per class. Allowed values are limited to the following:
The default is |
number |
(numeric, integer) The number of features/samples plotted. The default is |
... |
Additional slots and values passed to |
A
DatasetExperiment_boxplot
object. This object has no output
slots.
See chart_plot
in the struct
package to plot this chart object.
struct object
A DatasetExperiment_boxplot
object inherits the following struct
classes:
[DatasetExperiment_boxplot]
>> [chart]
>> [struct_class]
M = DatasetExperiment_boxplot(
factor_name = "V1",
by_sample = FALSE,
per_class = FALSE,
number = 50)
D = MTBLS79_DatasetExperiment()
C = DatasetExperiment_boxplot(factor_name='Class',number=10,per_class=FALSE)
chart_plot(C,D)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.