-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Labels
Description
This is more like a to do list/reminder of various glitches that we need to fix/address
-
A
dataargument is needed forglmoutput to work withpublish. For example this doesn't workset.seed(1) x <- rnorm(100) y <- rnorm(100) g <- factor(rbinom(100, size=2, p=.5)) df <- data.frame(x, y, g) m <- glm(y ~ g*x, family=gaussian) publish(m)while this does:
m <- glm(y ~ g*x, family=gaussian, data=df) publish(m) -
Add a way to allow for other than 95% confidence intervals of parameters?
Reactions are currently unavailable