Learn R Programming

cfa (version 0.10-1)

print.scfa: Print an object of the class scfa

Description

Printing method for one of two possible objects returned by cfa()

Usage

# S3 method for scfa
print(x,...)

Value

Returns NULL

Arguments

x

An object of the class scfa

...

Additional arguments given to print

Author

Stefan Funke <s.funke@t-online.de>

Details

This function is usually called implicitely.

References

Krauth J., Lienert G. A. (1973, Reprint 1995) Die Konfigurationsfrequenzanalyse (KFA) und ihre Anwendung in in Psychologie und Medizin, Beltz Psychologie Verlagsunion

Lautsch, E., von Weber S. (1995) Methoden und Anwendungen der Konfigurationsfrequenzanalyse in Psychologie und Medizin, Beltz Psychologie Verlagsunion

Eye, A. von (1990) Introduction to configural frequency analysis. The search for types and anti-types in cross-classification. Cambride 1990

See Also

cfa, scfa

Examples

Run this code
# library(cfa) if not yet loaded
# Some random configurations:
configs<-cbind(c("A","B")[rbinom(250,1,0.3)+1],c("C","D")[rbinom(250,1,0.1)+1],
          c("E","F")[rbinom(250,1,0.3)+1],c("G","H")[rbinom(250,1,0.1)+1])
counts<-trunc(runif(250)*10)
result<-cfa(configs,counts) 
print(result)

Run the code above in your browser using DataLab