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
This is more like a to do list/reminder of various glitches that we need to fix/address
A dataargument is needed for glm output to work with publish. For example this doesn't work
set.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?
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 workwhile this does:
Add a way to allow for other than 95% confidence intervals of parameters?