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
write a different wrapper that avoids using with and starts from the raw data
use native ggformula. Except for calculating coverage, it is dead simple. But not sure I like the part about computing which intervals cover.
use CIsim()
other ideas?
# This can also be done in native ggformula -- just need to do some work to # to calculate which ones cover.pop.mean<- mean(~area, data=ames)
samp_ci<-samp_ci %>%
mutate(covers=pop.mean>=lower&pop.mean<=upper)
gf_pointrange(mean+lower+upper~.index, data=samp_ci, color=~covers)
mosaic::sample()
handles a multi-column data frame just fine. No need to select just one variable.The text was updated successfully, but these errors were encountered: