Description Usage Arguments Value
Creates a page with two tabs and a sidebar. The first tab generates the dimension reduction plot of the UMAP or t-SNE with the parameters set in the sidebar by clicking the "Generate plot" button. It is possible to save the scatterplot with its parameters to compare it with another parameters by clicking the button "Add plot for comparison". The second tab "Compare selected plots" contains a grid layout with the saved reduced dimensions. A list in the sidebar shows the saved plots and enables the deletion of plots.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | add_dimred_comparison_page(dashboard, object, ...)
## S4 method for signature 'i2dashboard,missing'
add_dimred_comparison_page(
dashboard,
exprs_values,
seed = NULL,
calculateUMAP = list(),
calculateTSNE = list(),
page = "dimred_comparison_page",
title = "Explore UMAP/t-SNE parameter",
menu = "Tools"
)
## S4 method for signature 'i2dashboard,SingleCellExperiment'
add_dimred_comparison_page(
dashboard,
object,
exprs_values = "logcounts",
subset_row = NULL,
...
)
## S4 method for signature 'i2dashboard,SummarizedExperiment'
add_dimred_comparison_page(
dashboard,
object,
exprs_values = "logcounts",
subset_row = NULL,
...
)
## S4 method for signature 'i2dashboard,Seurat'
add_dimred_comparison_page(
dashboard,
object,
assay = "RNA",
assay_slot = "data",
subset_row = NULL,
...
)
|
dashboard |
A i2dashboard. |
object |
An object of class Seurat, SingleCellExperiment or SummarizedExperiment. |
... |
Further parameters passed to the core function. |
exprs_values |
A numeric matrix of log-expression values where rows are features and columns are cells. Alternatively, a character indicating which assay of |
seed |
An integer vector, containing the random number generator (RNG) state for random number generation with |
calculateUMAP |
A list with parameters passed on to |
calculateTSNE |
A list with parameters passed on to |
page |
The name of the page to be added. |
title |
The title of the page. |
menu |
The menu tab to which this page is subordinated. Default "Tools" |
subset_row |
An optional character vector (of feature names), a logical vector or numeric vector (of indices) specifying the features to use. The default of NULL will use all features. |
assay |
A character specifying the assay ( |
assay_slot |
A character specifying the name of the data slot in the assay. (Default: "data") |
An object of class i2dashboard.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.