-1

Is it possible to calculate the Approximate Weight of Evidence (AWE) from information obtained via the mclust R package?

jmutr
  • 3
  • 3

2 Answers2

0

Following the formula from Banfield, J. and Raftery, A. (1993) Model-based Gaussian and non-Gaussian clustering. Biometrics, 49, 803-821. -2*model$loglik + model$d*(log(model$n)+1.5) Where model represents the model with number of cluster solutions selected. Keeping this question in the hope that it may help someone in the future.

jmutr
  • 3
  • 3
0

According to R documentation, you should have access to function awe(tree, data) since version R1.1.7.

From the example on the linked page (in case of broken link),

data(iris)
iris.m _ iris[,1:4]
awe.val <- awe(mhtree(iris.m), iris.m)
plot(awe.val)
Daemon Painter
  • 3,208
  • 3
  • 29
  • 44
  • I did try that formula beforehand and it did not recognize the formula. Thought that perhaps the formula was removed, but could be mistaken. Will check again later, thanks for the answer! – jmutr Dec 09 '19 at 20:03