plot_mx_umap {mxnorm} | R Documentation |
Visualize UMAP dimension reduction algorithm
Description
Visualize UMAP dimension reduction algorithm
Usage
plot_mx_umap(mx_data, metadata_col = NULL)
Arguments
mx_data |
|
metadata_col |
column denoted in the |
Value
ggplot2
object with density plot
Examples
mx_data = mx_dataset(mxnorm::mx_sample, "slide_id", "image_id",
c("marker1_vals","marker2_vals","marker3_vals"),
c("metadata1_vals"))
mx_data = mx_normalize(mx_data, transform="log10",method="None")
mx_data = run_reduce_umap(mx_data, table="normalized",
c("marker1_vals","marker2_vals","marker3_vals"))
plot_mx_umap(mx_data)
[Package mxnorm version 1.0.3 Index]