getPearsonResiduals | R Documentation |
Wrapper to get the Pearson residuals of a fitted model.
getPearsonResiduals(object, ...)
## Default S3 method:
getPearsonResiduals(object, ...)
## S3 method for class 'gam'
getPearsonResiduals(object, ...)
object |
a fitted model. |
... |
additional parameters to be passed on, usually to the residual function of the respective model class. |
The purpose of this wrapper is to extract the Pearson residuals of a fitted model.
This needed to be adopted because for some reason, mgcv uses the argument "scaled.pearson" for what most packags define as "pearson". See comments in ?residuals.gam.
Florian Hartig
getObservedResponse, getSimulations, getRefit, getFixedEffects, getFitted
testData = createData(sampleSize = 400, family = gaussian())
fittedModel <- lm(observedResponse ~ Environment1 , data = testData)
# response that was used to fit the model
getObservedResponse(fittedModel)
# predictions of the model for these points
getFitted(fittedModel)
# extract simulations from the model as matrix
getSimulations(fittedModel, nsim = 2)
# extract simulations from the model for refit (often requires different structure)
x = getSimulations(fittedModel, nsim = 2, type = "refit")
getRefit(fittedModel, x[[1]])
getRefit(fittedModel, getObservedResponse(fittedModel))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.