plotGridSearchPerplexity {celda} | R Documentation |
Visualize perplexity of every model in a celdaList, by unique K/L combinations
plotGridSearchPerplexity(x, ...) ## S4 method for signature 'SingleCellExperiment' plotGridSearchPerplexity(x, altExpName = "featureSubset", sep = 1) ## S4 method for signature 'celdaList' plotGridSearchPerplexity(x, sep = 1)
x |
Can be one of
|
... |
Ignored. Placeholder to prevent check warning. |
altExpName |
The name for the altExp slot to use. Default "featureSubset". |
sep |
Numeric. Breaks in the x axis of the resulting plot. |
A ggplot plot object showing perplexity as a function of clustering parameters.
data(sceCeldaCGGridSearch) sce <- resamplePerplexity(sceCeldaCGGridSearch) plotGridSearchPerplexity(sce) data(celdaCGSim, celdaCGGridSearchRes) ## Run various combinations of parameters with 'celdaGridSearch' celdaCGGridSearchRes <- resamplePerplexity( celdaCGSim$counts, celdaCGGridSearchRes) plotGridSearchPerplexity(celdaCGGridSearchRes)