Tagged Questions
0
votes
1answer
57 views
Access & Re-use model formula (R)
I want to automate the following procedure.
Fit a (lm /glm) model using step().
Extract the variables in the outcome model of (1), e.g., (X1+X2) as in Y~X1+X2
Re-use the model from (1) in a new ...
3
votes
2answers
1k views
How to extract a p-value when performing anova() between two glm models in R
So, I'm trying to compare two models, fit1 and fit2.
Initially, I was just doing anova(fit1,fit2), and this yielded output that I understood (including a p-value).
However, when I switched my models ...
0
votes
2answers
833 views
Using the ns() function from the splines package inside glm()
I'm trying to use the ns() function from the splines package with a poisson GLM I am using to test for significance of particulate matter concentration (pm.lag0) on health outcomes (Freq):
> ...