Learn R Programming

MLDS (version 0.1-5)

summary.mlds: Summary for a mlds fit

Description

Takes a fitted mlds object and produces a summary of it

Usage

## S3 method for class 'mlds':
summary(object, digits = max(3, getOption("digits") - 4), ...)

## S3 method for class 'summary.mlds':
print(x, digits = max(3, getOption("digits") - 4), ...)

Arguments

object
an object of class mlds typically produced by a call to mlds.
digits
The number of digits to display.
x
An object of class summary.mlds.
...
Addtional arguments passed to the default print method. Only effects the output of pscale.

Value

  • A list of 5 elements
  • pscaleA named vector indicating the difference scale. The names are the stimulus levels.
  • sigmaThe estimate of the scale parameter. For method = glm, this is always 1.
  • logLikThe logarithm of likelihood.
  • methodThe fitting method used, either glm or optim.
  • linkThe link used for the binomial family.
  • Normally, print.summary.mlds is not meant to be called directly by the user.

Details

Displays summary information from a mlds object.

See Also

mlds

Examples

Run this code
data(kk1)
kk1.mlds <- mlds(SwapOrder(kk1))
summary(kk1.mlds)

Run the code above in your browser using DataLab