-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ridgeplot! doesn't have default keys #43
Comments
Huh, I'm not sure exactly why that doesn't work. I know why it works for I will have take another deep dive into recipes to understand this behavior, so it might be a while before this is fixed. |
Some related kwarg weirdness with the auto-generated m1 = fit(MixedModel,
@formula(1000 / reaction ~ 1 + days + (1 + days | subj)),
MixedModels.dataset(:sleepstudy))
nsamp = 1000
bootstrap = parametricbootstrap(nsamp, m1)
conf_level=0.95
vline_at_zero=true
show_intercept=true
fig = Figure(; resolution=(1200, 400))
ax1 = Axis(fig[1, 1]; title="just ridgeplot!")
ridgeplot!(ax1, bootstrap; conf_level, vline_at_zero, show_intercept)
ax2 = Axis(fig[1, 2]; title="ridgeplot! and coefplot!")
ridgeplot!(ax2, bootstrap; conf_level, vline_at_zero, show_intercept)
coefplot!(ax2, bootstrap; conf_level, vline_at_zero, show_intercept)
save("test.png", fig) |
@jmmanley which Makie/CairoMakie version are you using? |
@palday I originally observed this with
and also reproduced it in a fresh environment with just
|
* start work on rank deficiency * initial pass at conversion to recipeless implementation * version and compat bump * Indexable * coefplot * ridgeplot * ridge2d * YAS * CI update * handle rank deficiency * add tests * YAS * fix a scope warning * eliminate progress message in precompilation
Recently got this error
It works if I set the key word arguments
conf_level
andshow_intercept
manually, but I figured these were supposed to have default values likeridgeplot
The text was updated successfully, but these errors were encountered: