seuratJackStrawPlot {singleCellTK}R Documentation

seuratJackStrawPlot Computes the plot object for jackstraw plot from the pca slot in the input sce object

Description

seuratJackStrawPlot Computes the plot object for jackstraw plot from the pca slot in the input sce object

Usage

seuratJackStrawPlot(inSCE, dims = NULL)

Arguments

inSCE

(sce) object from which to compute the jackstraw plot (pca should be computed)

dims

Number of components to plot in Jackstraw. If NULL, then all components are plotted Default NULL.

Value

plot object

Examples

data(scExample, package = "singleCellTK")
## Not run: 
sce <- seuratNormalizeData(sce, useAssay = "counts")
sce <- seuratFindHVG(sce, useAssay = "counts")
sce <- seuratScaleData(sce, useAssay = "counts")
sce <- seuratPCA(sce, useAssay = "counts")
sce <- seuratComputeJackStraw(sce, useAssay = "counts")
seuratJackStrawPlot(sce)

## End(Not run)

[Package singleCellTK version 2.0.0 Index]