Learn R Programming

embryogrowth (version 7.1)

logLik.tsd: Return Log Likelihood of a fit generated by tsd

Description

Return Log Likelihood of a fit generated by tsd. The object has 3 attributes: nall, and nobs the number of observations, df, the number of fitted parameters.

Usage

# S3 method for tsd
logLik(object, ...)

Arguments

object

A result file generated by tsd

...

Not used

Value

The Log Likelihood value of the fitted model and data

Details

logLik.tsd Return Log Likelihood of a fit

Examples

Run this code
# NOT RUN {
library(embryogrowth)
m <- c(10, 14, 7, 4, 3, 0, 0)
f <- c(0, 1, 2, 4, 15, 10, 13)
t <- c(25, 26, 27, 28, 29, 30, 31)
result <- tsd(males=m, females=f, temperatures=t)
logLik(result)
AIC(result)
# }

Run the code above in your browser using DataLab