Skip to content

Instantly share code, notes, and snippets.

@kohnakagawa
Created May 2, 2014 14:04
Show Gist options
  • Save kohnakagawa/a08a2c15f46f748064b3 to your computer and use it in GitHub Desktop.
Save kohnakagawa/a08a2c15f46f748064b3 to your computer and use it in GitHub Desktop.
#small sample for GMM
#install.packages('mclust') #installing Mclust package
library(mclust)
dat <- read.table("./result/")
dat <- data.matrix(dat)
result.dat <- Mclust(dat)
plot(result.dat)
summary(result.dat,parameters=TRUE)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment