leeper / prediction

Tidy, Type-Safe 'prediction()' Methods
https://cran.r-project.org/package=prediction
Other
89 stars 14 forks source link

No SEs for speedglm #47

Open ballardao opened 3 years ago

ballardao commented 3 years ago

Please specify whether your issue is about:

SE fits don't seem to work for model objects from the speedglm package. Am I missing something or is this functionality not included/not possible?

Code below:

## load packages
library("prediction")
library("speedglm")

## run a simple model
n <- 1000
k <- 3
y <- rbinom(n, 1, 0.5)
x <- round(matrix(rnorm(n * k), n, k), digits = 3)
colnames(x) <- c("s1", "s2", "s3") 
dat <- data.frame(y, x)
m1 <- speedglm(y ~ s1 + s2 + s3, data=dat, model=TRUE)

## get predictions
preds <- prediction(m1)
head(preds)

## session info
sessionInfo()