newBIC: Compute the BIC of a model given some data

newBICR Documentation

Compute the BIC of a model given some data

Description

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

Usage

newBIC(model, x)

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

Arguments

model

an object that describes a statistical model.

x

an object that describes data.

Value

the BIC of the model.

Functions

  • newBIC,newmodel,matrix-method: returns the BIC of the NB model.

Examples

m <- newmodel(n=5, J=10)
x <- newSim(m)
newBIC(m, x$counts)

fedeago/NewWave documentation built on March 28, 2022, 5:46 a.m.