Learn R Programming

CDM (version 1.0-0)

print.summary.din: Print Method for Objects of Class summary.din

Description

S3 method to print objects of the class summary.din.

Usage

## S3 method for class 'summary.din':
print(x, \dots)

Arguments

x
a required object of class summary.din, obtained from a call to the function summary.din (through generic function summary).
...
Optional parameters to be passed to or from other methods will be ignored.

Value

  • If the argument x is of required type, print.summary.din prints the afore mentioned summary information in Details, and invisibly returns x.

Details

The print method prints the summary information about objects of the class din computed by summary.din, which are the diagnostic accuracies of the items, a summary of the corresponding skill pattern distribution and the model information criteria AIC and BIC. Specific summary information details such as individual items with their diagnostic accuracy can be accessed through assignment (see Examples).

References

Rupp, A. A., Templin, J. L. and Henson, R. A. (2010) Diagnostic Measurement: Theory, Methods, and Applications. New York: The Guilford Press.

See Also

plot.din, the S3 method for plotting objects of the class din; print.din, the S3 method for printing 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; 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
##

## In particular, accessing detailed summary through assignment
detailed.summary.fs <- summary(din(data =
  fraction.subtraction.data, q.matrix = 
  fraction.subtraction.qmatrix, rule = "DINA"))
str(detailed.summary.fs)

Run the code above in your browser using DataLab