newAIC: Compute the AIC of a model given some data

Description Usage Arguments Value Functions Examples

Description

Given a statistical model and some data, this function computes the AIC of the model given the data, i.e., the AIC of the data under the model.

Usage

1
2
3
4
newAIC(model, x)

## S4 method for signature 'newmodel,matrix'
newAIC(model, x)

Arguments

model

an object that describes a statistical model.

x

an object that describes data.

Value

the AIC of the model.

Functions

Examples

1
2
3
m <- newmodel(n=5, J=10)
x <- newSim(m)
newAIC(m, x$counts)

NewWave documentation built on Dec. 26, 2020, 6 p.m.