Re: [R] method default for hclust function

2013-12-13 Thread David Carlson
: Thursday, December 12, 2013 5:15 PM To: capricy gao; r-help@r-project.org Subject: Re: [R] method default for hclust function Absolute distance is the default distance in hclust. v-c(1,2,3,4,5,6) dist(v) 2 1 3 2 1 4 3 2 1 5 4 3 2 1 6 5 4 3 2 1 Eliza Date: Thu, 12 Dec 2013 15:09

[R] method default for hclust function

2013-12-12 Thread capricy gao
I could not figure out what was the default when I ran hclust() without specifying the method. For example: I just have a code like: hclust(dist(data)) Any input would be appreciated:) [[alternative HTML version deleted]] __

Re: [R] method default for hclust function

2013-12-12 Thread eliza botto
Absolute distance is the default distance in hclust. v-c(1,2,3,4,5,6) dist(v) 2 1 3 2 1 4 3 2 1 5 4 3 2 1 6 5 4 3 2 1 Eliza Date: Thu, 12 Dec 2013 15:09:19 -0800 From: capri...@yahoo.com To: r-help@r-project.org Subject: [R] method default for hclust function I could

Re: [R] method default for hclust function

2013-12-12 Thread Peter Langfelder
On Thu, Dec 12, 2013 at 3:09 PM, capricy gao capri...@yahoo.com wrote: I could not figure out what was the default when I ran hclust() without specifying the method. According to help(hclust), the default method is complete linkage. HTH, Peter __