Created
May 2, 2014 14:04
-
-
Save kohnakagawa/a08a2c15f46f748064b3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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