plot.kunfolding {ConsRankClass} | R Documentation |
Plot Kemeny equivalent augmented unfolding solution
Description
Plot the Kemeny equivalent augmented unfolding coming from kunfolding
Usage
## S3 method for class 'kunfolding'
plot(
x,
labs = NULL,
labsrow = NULL,
main = NULL,
cols = NULL,
cexind = 1,
cexitems = 1,
pchcol = 15,
...
)
Arguments
x |
An object of the class "kunfolding" |
labs |
The labels of the items. Defalut is NULL. If not provided, a sequence "o1,...,on" is printed, with n=number of items |
labsrow |
The labels of the individuals. Defalut is NULL. If not provided, a sequence "1,...,m" is printed, with m=number of individuals |
main |
Main title of the plot. Default NULL |
cols |
Color of the individuals. It must be numeric. Default is NULL (dark gray). |
cexind |
cex of the individuals. Default 1 |
cexitems |
cex of the items. defaul 1 |
pchcol |
pch parameter for items points. Default 15 |
... |
System reserved (No specific usage) |
Value
the plot of unfolding solution
Author(s)
Antonio D'Ambrosio antdambr@unina.it
See Also
Examples
data("breakfast", package="smacof")
unfout <- kunfolding(breakfast)
itemsl <- colnames(breakfast)
plot(unfout,labs=itemsl,cexitems=0.8)
[Package ConsRankClass version 1.0.2 Index]