plot.bcfa {cfa} | R Documentation |
Plots an object of the class bcfa
plot.bcfa(x,...)
x |
An object of the class bcfa which is returned by the function
boot.cfa() |
... |
Any arguments to be given to plot |
Plots the number of cases considered significant vs. the number of cases considered to be a type (n > expected).
This is like the other plots in some way of plot of quality versus quantity.
Configurations can be identified by left-clicking on them until the right mouse button is pressed. The labels of the configurations selected will be displayed in the text window.
Returns a vector of the configurations selected with their name set to the labels
This function is usually invoked plotting an object returned by
boot.cfa
Stefan Funke <funke@attglobal.net>
None - plots have been rarely used with the CFA
# 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) plot(boot.cfa(configs,counts,runs=25))