newloglik {NewWave}R Documentation

Compute the log-likelihood of a model given some data

Description

Given a statistical model and some data, this function computes the log-likelihood of the model given the data, i.e., the log-probability of the data under the model.

Usage

newloglik(model, x, ...)

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

Arguments

model

an object that describes a statistical model.

x

an object that describes data.

...

additional arguments.

Value

The log-likelihood of the model given the data.

Methods (by class)

Examples

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

[Package NewWave version 1.4.0 Index]