Description Usage Arguments Value Examples
Plot differences across mixture models
1 2 3 |
object |
Object of class inheriting from "mpk". |
type |
String indicating whether the data-points are colored according to difference in mixture weights
|
dim |
Vector indicating along which dimension the data are projected.
Default is |
group |
Vector indicating which groups are plotted. By default all groups are plotted. |
xlim |
the x limits (x1, x2) of the plot. |
xlim |
the y limits of the plot. |
A plot.
1 2 3 4 5 6 7 8 9 10 11 | n = c(250, 250)
p = 4
Y1 = rbind( matrix( rnorm( n[1]*p), ncol = p), matrix( rnorm(n[2]*p) + 3, ncol = p))
Y2 = rbind( matrix( rnorm( n[1]*p), ncol = p), matrix( rnorm(n[2]*p) + 4, ncol = p))
Y = rbind(Y1, Y2)
C = c( rep(1,sum(n)), rep(2,sum(n)))
ans = mpk(Y, C)
plotDiff(ans, type = "weight")
plotDiff(ans, type = "shift")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.