Learn R Programming

ConjointChecks (version 0.0.6)

plot.checks: Plot checks produced by ConjointChecks.

Description

Takes output from ConjointChecks and produces a matplot showing the percentage of reported violations at each cell.

Usage

## S3 method for class 'checks':
plot(x,items=NULL,item.labels=TRUE,...)

Arguments

x
Object returned by ConjointChecks of class checks.
items
Vector of item numbers to include in a single plot. Defaults to all, but this is less helpful for diagnostic purposes.
item.labels
Should item numbers be included? Defaults to TRUE. If length of items is unity (perhaps if the small multiple format of Tufte, 2001 is going to be used), then the item number gets printed below the x-axis. If the leng
...
further arguments passed to or from other methods

References

Tufte, E. R. (2001). The visual display of quantitative information (2nd ed.). Chesire, CT: Graphics Press.

Examples

Run this code
par(mfrow=c(3,2))
plot(rasch5000)
plot(rasch5000,items=c(5,10,15))
for (i in c(3,9,13,18)) plot(rasch5000,items=i)

Run the code above in your browser using DataLab