You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm currently implementing R-style plots for GLM (see JuliaStats/GLM.jl#581) and can't figure out how to dispatch the qqplotrecipe from StatsPlots on GLM.LinearModel objects...
I've tried everything I could think of and the only thing that worked was manually defining a method for qqplot, with all the defaults keyword arguments.
How am I supposed to do this properly with recipes?
The text was updated successfully, but these errors were encountered:
I think your current approach is fine. Typically there is only one type per recipe and then you could chain them by returning the type of the recipe that should come after, but if you want to use the same name, adding a method seems reasonable to me.
I'm currently implementing R-style plots for GLM (see JuliaStats/GLM.jl#581) and can't figure out how to dispatch the
qqplot
recipe from StatsPlots onGLM.LinearModel
objects...I've tried everything I could think of and the only thing that worked was manually defining a method for
qqplot
, with all the defaults keyword arguments.How am I supposed to do this properly with recipes?
The text was updated successfully, but these errors were encountered: