May 10, 2019

How to Use Gamlss with Ggplot2

I was exploring Gamlss and seeing if I could plot the resulting models with ggplot2. While a gamlss model is not, strictly speaking, coercible to data.frame, nor is there a fortify method included, I wrote a quick method and am providing it here, gratis: fortify.gamlss <- function(gamlss.obj) { return(data.frame(x=c(1:length(gamlss.obj$y)), y=gamlss.obj$y)) }

I would appreciate it if those responsible would incorporate this into the tree. Many thanks!

No comments:

Post a Comment