Thomas J. Leeper
Thomas J. Leeper
Ah, sorry. I mixed this and your other issue. I'll investigate.
Nope. If you can figure it out, I'd appreciate a PR.
I suspect the issue was just solved by: https://github.com/leeper/slopegraph/pull/22 Let me know if not.
The new draw approach used as of https://github.com/leeper/slopegraph/commit/69f6143913fe524f062b5f49a55a357cb96f5f2c eliminated binning altogether. Will need to think of a new way to do this by, possibly, modifying y-values that are near to...
That's actually a pretty awesomely terrible graph. I think theme still hope for this, that specific example aside.
Ooh, fun. Want to put together a vignette? On Mar 18, 2016 3:09 PM, "Maëlle Salmon" [email protected] wrote: > New progress! Better resizing/cropping I think. > > ### packages >...
Background images? On Mar 18, 2016 3:46 PM, "Maëlle Salmon" [email protected] wrote: > I'm having way too much fun with this actually. When I've something > substantial for a geom_bar...
Relevant example (from email), in Stata: ```Stata * Low Birth Weight webuse lbw * The logistic regression logit low i.smoke i.race age lwt i.smoke ptl ht ui * The margins...
Here's a simple Stata example: ```Stata . regress y i.sex age distance . margins sex Predictive margins Number of obs = 3,000 Model VCE : OLS Expression : Linear prediction,...
We can actually obtain this easier than I expected because it's the same as: ```R > predict(m, setNames(data.frame(Ymale), c("intercept", "sex", "age", "distance")), se.fit = TRUE) $fit 1 62.73048 $se.fit [1]...