Embed {countland}R Documentation

Perform spectral embedding on dot products.

Description

Perform spectral embedding on dot products.

Usage

Embed(C, n_components = 10)

Arguments

C

countland object

n_components

number of components, integer (default=10)

Value

countland object with slot embedding, eigenvals

Examples

gold_path <- system.file("testdata", package = "countland", mustWork = TRUE)
gold.data <- Seurat::Read10X(data.dir = gold_path)
C <- countland(gold.data)
C <- Dot(C)
C <- Embed(C,n_components=5)

[Package countland version 0.1.2 Index]