Learn R Programming

CDM (version 2.7-7)

print.din: Print Method for Objects of Class din

Description

S3 method to print objects of the class din.

Usage

## S3 method for class 'din':
print(x, highest=0.05, \dots)

Arguments

x
A required object of class din, obtained from a call to the function din.
highest
Print classes with probability higher than highest
...
Optional parameters to be passed to or from other methods will be ignored.

Value

  • If the argument x is of required type, print.din prints the itemwise guessing and slipping values with standard errors, as well as the skill probabilities. It invisibly returns x.

Details

The print method prints the main results obtained from a DINA or DINO model, which are the itemwise guessing and slipping values with standard errors, as well as the skill probabilities.

See Also

plot.din, the S3 method for plotting objects of the class din; summary.din, the S3 method for summarizing objects of the class din, which creates objects of the class summary.din; print.summary.din, the S3 method for printing objects of the class summary.din; din, the main function for DINA and DINO parameter estimation, which creates objects of the class din. See also CDM-package for general information about this package.

Examples

Run this code
##
## (1) examples based on dataset fractions.subtraction.data
##

## Parameter estimation of DINA model
# rule = "DINA" is default
fractions.dina <- din(data = fraction.subtraction.data,
  q.matrix = fraction.subtraction.qmatrix, rule = "DINA")
str(fractions.dina)

Run the code above in your browser using DataLab