0

I'm looking for an implementation of EM clustering for R.

I've tried to install.packages 'mclust' and 'EMCluster' and they both inform me that they are "not available (for R version 3.1.2)"

Are there any known packages for version 3?

aaron
  • 86
  • 6

1 Answers1

1

They are available for R 3.1.2, you may have a different mirror selected.

try this to install:

install.packages("mclust", repos='http://cran.us.r-project.org')

bjoseph
  • 2,116
  • 17
  • 24