search for: mcquitty

Displaying 7 results from an estimated 7 matches for "mcquitty".

2003 Sep 26
1
a. crossing branches with hclust, b. plot.dendrogram
Hello, a. when I use hclust with the methods media, centroid, and mcquitty, and plot the results, the dendrograms have lines that are crossing each other. Is this ok? b. My next question refers to plot.dendrogram: How can I use parameters as "hang" or "cex" here? E.g. for st <- as.dendrogram(subtreeshc[[x]]) I would like to have something like t...
2004 Oct 11
2
hclust title and paste - messed up
...quot;maximum", "manhattan", "canberra", "binary" ) clustMeth <- c("ward", "single", "complete", "average", "mcquitty", "median", "centroid" ) par(ask=TRUE) for (d in distMeth){ print(d) dt <- dist(dataTranspose,method=d) for (m in clustMeth){ print(m) hc <- hclust(dt,method=m) plot(hc, main=paste(c( &quot...
2001 Jun 12
1
cophenetic matrix
...ethodo <- c("euclidean", "maximum", "manhattan", "canberra" ,"binary") dis1 <- dist(fichier , method = methodo[[methode]]) } methode2 <- ask(message ="The agglomeration method to be used = ward:1 single:2 complete:3 average:4 mcquitty:5 median:6 centroid:7") methodo2 <- c("ward", "single", "complete", "average","mcquitty", "median","centroid") hc <- hclust(dis1 , method = methodo2[[methode2]]) merge <- hc$merge height <- hc$height no...
2006 Mar 09
1
HCLUST subroutine question -- FORTRAN DO loops
...(IOPT.EQ.3) THEN DISS(IND1)=MAX(DISS(IND1),DISS(IND2)) ENDIF C C AVERAGE LINK (OR GROUP AVERAGE) METHOD - IOPT=4. C IF (IOPT.EQ.4) THEN DISS(IND1)=(MEMBR(I2)*DISS(IND1)+MEMBR(J2)*DISS(IND2))/ X (MEMBR(I2)+MEMBR(J2)) ENDIF C C MCQUITTY'S METHOD - IOPT=5. C IF (IOPT.EQ.5) THEN DISS(IND1)=0.5*DISS(IND1)+0.5*DISS(IND2) ENDIF C C MEDIAN (GOWER'S) METHOD - IOPT=6. C IF (IOPT.EQ.6) THEN DISS(IND1)=0.5*DISS(IND1)+0.5*DISS(IND2)-0.25*D12 ENDIF C C CENTROID METHOD - IOP...
2012 Jan 23
2
How to build a "Amalgamation Schedule"? help!
Dear all, I need to process large amounts of data (two or three variables for 6,000 cases) cluster analysis. In the end I need to fill the source data to the obtained clusters. I need to trace the sequence of data fusion. In this case, I can fill in a cluster (with any level of linkage distance) by data. This procedure is implemented in the package Statistica, but this package can not work with
2009 May 13
2
plotting multiple data sources
hi, Excuse me asking three questions in a row for a day, but I had collected those questions as I'm still experimenting with R. This one is how do you compose plots with alot of data in one graph. First what I currently do is after i generated all the data I need to plot.. let say 5-6 arrays I do a plot() and then I created a function to scale the other data to approx fit the initial range so
2006 Mar 27
2
Clustering question \ dist(datmat)
Hello everybody. I am trying to cluster circular data (data points which are angles), thus i can not use the "dist" function in "mclust" to generate my distance matrix, I am using the function " Dij = 0.5*( 1 - cos(theta_i - theta_j)). The thing is "hclust" will not accept this distance matrix, i tried to put it in a data frame, but again i get an error message