I am working with the glmertree
package in R, which is an extension of the partykit
package. I am trying to plot a model using the glmertree
plotting function, which simply extends the partykit
plotting function. I would like to make the circles for the internal nodes smaller in my plot so that they do not all overlap. I have extensively researched the ip_args (inner panel args) option for a party kit plot, but all I have managed to do is change the font size or the font color or what is printed in the internal node- I cannot change the circle size. Can anyone help with this?
Default plot, made with the code plot(glmr_reasonable)
Using the code:
ip_args=list(abbreviate=FALSE, pval=FALSE, gp=gpar(cex=0.5, col="red", pin=c(0.25, 0.25)))
plot(glmr_reasonable, ip_args=ip_args)
I was able to make the following changes:
However, I don't want red text and tiny font, I want smaller circles. Does anyone know how to help?
Thanks!