diffuseProj: Predicts diffusion map projection from new data points

Description Usage Arguments Details Value Author(s) Examples

View source: R/diffusion.r

Description

Predicts diffusion map projection from new data points

Usage

1
diffuseProj(dm, x, data, distfun)

Arguments

dm

Output from diffuseMat2 function

x

Matrix of new data points. Features in rows and cells in columns.

data

Original data used to generate diffusion map

distfun

A distance function that takes new data as first paramter and previous data as second variable returning a squared distance measure, with each sample in the rows and distance to previous data points in columns, e.g. function(x, y) (1 - cor(x, y))^2.

Details

Predicts diffusion map projection from new data points

Value

Returns a matrix with projected diffusion components.

Author(s)

Wajid Jawaid

Examples

1
2
3
4
## Not run: 
y <- diffuseProj(xx, newData, oldData, function(z) (1-cor(z))^2)

## End(Not run)

wjawaid/roots documentation built on May 20, 2019, 11:37 a.m.