Any suggestions for how I can plot mixEM type data using ggplot2

Look at the structure of the returned object (this should be documented in the help): > # simple mixture of normals: > x=c(rnorm(10000,8,2),rnorm(10000,17,4)) > xMix = normalmixEM(x, lambda=NULL, mu=NULL, sigma=NULL) Now what: > str(xMix) List of 9 $ x : num [1:20000] 6.18 9.92 9.07 8.84 9.93 … $ lambda : num [1:2] 0.502 0.498 … Read more