[R] Plotting Dendrogram Help Getting Plot to Display Neatly

2008-02-28 Thread ngottlieb
I have done a cluster analysis doing: 1-clusNorth <-hclust(dist(Artorious)^2, method="ward") 2-clusNorth$labels <-Artorious$Name ## to show the case names and not numbers 3-dend1 <- as.dendrogram(clusNorth) 4-plot(dend1) My Dendrogram is now showing the names of my cases in the dataframe on the

Re: [R] Plotting Dendrogram Help Getting Plot to Display Neatly

2008-03-01 Thread Jim Lemon
[EMAIL PROTECTED] wrote: > I have done a cluster analysis doing: > > 1-clusNorth <-hclust(dist(Artorious)^2, method="ward") > 2-clusNorth$labels <-Artorious$Name ## to show the case names and not > numbers > 3-dend1 <- as.dendrogram(clusNorth) > 4-plot(dend1) > > My Dendrogram is now showing th