posteriorgmm: Calculates the posterior probability for a given dataset for...

Description Usage Arguments Value Examples

View source: R/gmm.R

Description

Calculates the posterior probability for a given dataset for a GMM

Usage

1
posteriorgmm(model = NULL, X = NULL)

Arguments

model

: The Gaussian Mixture Model

X

(n by d): The dataset of interest, where n is the number of samples and d is the dimension

Value

P (n by k) : The posterior probabilty of each dataset belonging to each of the k component

Examples

1
2
3
4
5
# compute posterior probability for a default 1-d gaussian mixture model
# and dataset generated from it
model <- gmm()
X <- rgmm(model)
p <- posteriorgmm(model=model, X=X)

Example output



KSD documentation built on Jan. 13, 2021, 8:39 a.m.