getFixedEffects: Extract fixed effects of a supported model

View source: R/compatibility.R

getFixedEffectsR Documentation

Extract fixed effects of a supported model

Description

A wrapper to extract fixed effects of a supported model

Usage

getFixedEffects(object, ...)

## Default S3 method:
getFixedEffects(object, ...)

## S3 method for class 'MixMod'
getFixedEffects(object, ...)

Arguments

object

a fitted model

...

additional parameters

See Also

getObservedResponse, getSimulations, getRefit, getFitted

Examples

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))

DHARMa documentation built on Sept. 9, 2022, 1:06 a.m.