Embed: Perform spectral embedding on dot products.

View source: R/countland_embed.R

EmbedR 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)

countland documentation built on May 29, 2024, 7:13 a.m.

Related to Embed in countland...