Calculates the likelihood for a given dataset for a GMM
Calculates the likelihood for a given dataset for a GMM
likelihoodgmm(model = NULL, X = NULL)
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 |
P (n by k) : The likelihood of each dataset belonging to each of the k component
# compute likelihood for a default 1-d gaussian mixture model # and dataset generated from it model <- gmm() X <- rgmm(model) p <- likelihoodgmm(model=model, X=X)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.