Description Usage Arguments Value Examples
Dimensionality reduction through PCA
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
MAE |
A multi-assay experiment object |
tax_level |
The taxon level used for organisms |
color |
A condition to color data points by e.g. "AGE" |
shape |
A condition to shape data points by e.g. "SEX" |
cx |
Component on the x-axis e.g. 1 |
cy |
Component on the y-axis e.g. 2 |
cz |
Component on the z-axis e.g. 3 |
n_neighbors |
Number of nearest neighbors |
metric |
Distance function e.g. c("euclidean", "manhattan") |
n_epochs |
Number of iterations |
init |
Initial embedding using eigenvector e.g c("spectral", "random") |
min_dist |
Determines how close points appear in the final layout |
datatype |
Datatype to use e.g. c("logcpm", "relabu", "counts") |
A list with a plotly object and summary table
1 2 3 4 5 6 7 8 9 10 | data_dir = system.file("extdata/MAE.rds", package = "animalcules")
toy_data <- readRDS(data_dir)
result <- dimred_umap(toy_data,
tax_level="genus",
color="AGE",
shape="DISEASE",
cx=1,
cy=2,
datatype="logcpm")
result$plot
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.