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
Is there an easy way to access a value of R2 from an lgcp() model fit with inlabru?
I am trying to assess the relative contribution of multiple covariates and was planning to do this by assessing changes in R2 after dropping covariates.
Also curious if there are more suitable approaches using this kind of model.
Cheers,
Harri
The text was updated successfully, but these errors were encountered:
R2 squared isn't defined for continuous domain LGCP models, so you'll need to define a different measure to use for this. You could perhaps consider assessing an R2-like measure based on discretised point counts? We have a brief discussion/example of assessing the contributions of spatial covariates and spatial random fields in the context of point process data in this paper: https://projecteuclid.org/euclid.aoas/1514430286
The approach used there can be computed with the help of calls to predict for models with and without the covariate one wants to assess the contribution of.
Ideally, the measure I would use would be somewhat analogous to the output of various SDM methods, perhaps something like a mean % contribution of each covariate to the linear predictor.
What I've come up with so far using predict() feels simple but I think it is something like what I want?
Hello inlabru,
Is there an easy way to access a value of R2 from an lgcp() model fit with inlabru?
I am trying to assess the relative contribution of multiple covariates and was planning to do this by assessing changes in R2 after dropping covariates.
Also curious if there are more suitable approaches using this kind of model.
Cheers,
Harri
The text was updated successfully, but these errors were encountered: