fuzzyindex: Calculate fuzzy ground truth.

Description Usage Arguments Value Author(s) Examples

View source: R/mnems.r

Description

Calculates responsibilities and mixture weights based on the ground truth and noisy data.

Usage

1
fuzzyindex(x, data, logtype = 2, complete = FALSE, ...)

Arguments

x

mnemsim object

data

noisy data matrix

logtype

logarithm type of the data

complete

if TRUE, complete data log likelihood is considered (for very large data sets, e.g. 1000 cells and 1000 E-genes)

...

additional parameters for the function getAffinity

Value

list with cell log odds mixture weights and log likelihood

Author(s)

Martin Pirkl

Examples

1
2
3
4
5
sim <- simData(Sgenes = 3, Egenes = 2, Nems = 2, mw = c(0.4,0.6))
data <- sim$data
data[which(sim$data == 1)] <- rnorm(sum(sim$data == 1), 1, 1)
data[which(sim$data == 0)] <- rnorm(sum(sim$data == 0), -1, 1)
fuzzy <- fuzzyindex(sim, data)

mnem documentation built on Nov. 18, 2020, 2 a.m.