ICLUST
, create a rgraphic directly using Rgraphviz. To create dot code to describe the ICLUST
output with more precision, use ICLUST.graph
. As an option, dot code is also generated and saved in a file. To use the dot code, use either ICLUST.rgraph(ic.results, out.file = NULL, min.size = 1, short = FALSE, labels = NULL, size = c(8, 6), node.font = c("Helvetica", 14), edge.font = c("Helvetica", 10), rank.direction = "RL", digits = 2, title = "ICLUST", ...)
ICLUST.rgraph is a version of ICLUST.graph
that uses Rgraphviz to draw on the screen as well.
Additional output is drawn to main graphics screen.
ICLUST
results and processes it to provide a pretty picture of the results. Original variables shown as rectangles and ordered on the left hand side (if rank direction is RL) of the graph. Clusters are drawn as ellipses and include the alpha, beta, and size of the cluster. Edges show the cluster intercorrelations.It is possible to trim the output to not show all cluster information. Clusters < min.size are shown as small ovals without alpha, beta, and size information.
VSS.plot
, ICLUST
test.data <- Harman74.cor$cov
ic.out <- ICLUST(test.data)
if(require(Rgraphviz) ) {ICLUST.rgraph(ic.out) }
Run the code above in your browser using DataLab