View source: R/sensitivity_stats.R
| group_partial_r2 | R Documentation | 
This function computes the partial R2 of a group of covariates in a linear regression model.
group_partial_r2(...)
## S3 method for class 'lm'
group_partial_r2(model, covariates, ...)
## S3 method for class 'fixest'
group_partial_r2(model, covariates, ...)
## S3 method for class 'numeric'
group_partial_r2(F.stats, p, dof, ...)
| ... | arguments passed to other methods. First argument should either be an  | 
| model | an  | 
| covariates | model covariates for which their grouped partial R2 will be computed. | 
| F.stats | F-statistics for the group of covariates. | 
| p | number of parameters in the model. | 
| dof | residual degrees of freedom of the model. | 
A numeric vector with the computed partial R2.
data("darfur")
model <- lm(peacefactor ~ directlyharmed + age + farmer_dar + herder_dar +
             pastvoted + hhsize_darfur + female + village, data = darfur)
group_partial_r2(model, covariates = c("female", "pastvoted"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.