Displaying 2 results from an estimated 2 matches for "ck3".
Did you mean:
c3
2013 Apr 23
1
assigning cluster id in cluster package-reg.
.... Please ask questions there, rather
than adressing individuals for basic help.
Here is one; does it answer your question ?
data(agriculture)
ag.ag <- agnes(agriculture)
class(ag.ag)
pltree(ag.ag) # the dendrogram, if you want to see it
## cut the dendrogram -> get cluster assignments:
(ck3 <- cutree(ag.ag, k = 3))
(ch6 <- cutree(as.hclust(ag.ag), h = 6))
stopifnot(identical(unname(ch6), ck3))
On Tue, Apr 23, 2013 at 6:37 PM, Ramesh krishnan Ramasamy <
ramesh.8v@gmail.com> wrote:
> Dear sir,
> I have large dataset of around 5,000 entries, so, i cant draw
>...
2010 Feb 18
1
an error about " return some vectors from some functions within a function"
Dear all,
When I try to return some vectors from some functions within a function, it indicate an error," Error in rbind(ck1, ck2, ck3) : object 'ck1' not found", in one of the iterations and stop. Since I am not experienced in programming, can anyone give me a suggestion to inspect this error?
The followings are the functions I created :
###################
# functions in the convg #
###################
check1 <...