Support for mgcv::gam?
rokapre opened this issue · 0 comments
rokapre commented
Please specify whether your issue is about:
- a possible bug
- [xx ] a question about package functionality
- [xx ] a suggested code or documentation change, improvement to the code, or feature request
Hi,
I was wondering is it possible at all to use margins with models from mgcv::gam() ? This is a common situation where I fit a penalized spline model and I would like to get the AME.
Below, I get the error "Error in J %*% vcov : non-conformable arguments"
Best,
Rohan
library(mgcv)
library(margins)
x=rnorm(1000,0,0.1)
y = log(x+1) + rnorm(1000,0,0.2)
df = data.frame(x=x,y=y)
mod = gam(y~s(x),data=df)
margins(mod)