Displaying 20 results from an estimated 200 matches similar to: "Clustering and Calinski's index"
2004 Mar 09
1
Package cclust error
Hello, here is my problem,
After looking at the mail archives, I found a
description of the error I get when I use this
package.
At first I even tought that they were showing how to solve it.
But the thing is that by saying "the programmer
forgot drop=FALSE" doesn't show me how I should
get rid of the problem
I have looked inside the package very quickly and
I found three
2003 Nov 27
1
cclust - cindex - binary data
Hi,
I'm trying to debug a function I wrote to calculate the cindex for a
hierarchical tree.
For this it is useful to compare my calculations with those in output from
the clustindex function, in the cclust library.
There's no way, however, to have the cindex value for a given output of the
cclust function, as a NA value is always returned.
This happens almost surely because the cindex in
2008 Oct 21
4
subscripting a one column matrix drops dimension
Hi all,
Why subscripting a one column matrix drops one dimension?
> x<- matrix(rnorm(100), ncol=1)
> str(x)
num [1:100, 1] -0.413 -0.845 -1.625 -1.393 0.507 ...
> str(x[20:30,])
num [1:11] -0.315 -0.693 -0.771 0.448 0.204 ...
> str(x[20:30])
num [1:11] -0.315 -0.693 -0.771 0.448 0.204 ...
This breaks:
> cov(x)
[,1]
[1,] 0.9600812
>
2000 Apr 26
1
cluster indices
Hi-
I'd like to apply some of the cluter indices, using 'clustindex' in the
cclust package, but using output from hierarchical clustering using
'hclust' in the mva package.
The two packages use a different format for storing the results of
clustering; has anyone coerced one into the other?
Thanks!
-John Barnett
2003 Apr 24
1
estimating number of clusters ("Null or more")
Hi all,
once more about the old subj :-)
My data has too much various distribution families and for every
particular experiment
I need just to decide whether the data is "quite homogeneous" or it has
two or more
clusters. I've revisited the following libraries:
amap, clust, cclust, mclust, multiv, normix, survey.
And I didn't find any ready-to-use general
2003 May 15
2
AW: error-prone feature?
> Well, that is in all good texts on R, together with the
> solution: drop=FALSE. See ?"[" for the on-line details.
OK. Thank you a lot. Now patched cclust and clustIndex
work fine for 1D case. BTW, why not to apply the "drop=F"
to these functions? I guess other users need 1D case as
well.
kind regards,
Valery A.Khamenya
2009 Jun 26
1
50993 point distance matrix, too big to as.matrix, looking for another way to calculate point-level summary
Hello, Im working on a 50933 point count bird abundance dataset. I've
succeeded in calculating a distance matrix for this entire set, but I don't
have sufficient memory to convert this to a matrix, as below...
abun.dist <- dist(abun.mat[1:50993,1:235)
test <- rowMeans(as.matrix(abun.dist))
Error in matrix(0, size, size) : too many elements specified
ive been able to run a hclust()
2006 Apr 07
2
cclust causes R to crash when using manhattan kmeans
Dear R users,
When I run the following code, R crashes:
require(cclust)
x <- matrix(c(0,0,0,1.5,1,-1), ncol=2, byrow=TRUE)
cclust(x, centers=x[2:3,], dist="manhattan", method="kmeans")
While this works:
cclust(x, centers=x[2:3,], dist="euclidean", method="kmeans")
I'm posting this here because I am not sure if it is a bug.
I've been searching
2004 Aug 06
1
imput data in cclust
I would like to see an example of a data matrix for cclust and how to
import it to cclust.
In fact, i don't know how to give my imput for cclust program!
i test this file
1 0.23 1.52
2 0.52 1.25
3 0.13 1.89
4 0.78 1.11
i do
>library(cclust)
>x<-scan("test.matrice.phyl")
>cclust(x,2,method="kmeans")
i have this error message:
Error in sample(length(x),
2003 Mar 05
2
problem with cclust[er] package
I have checked that section already.
Sorry, I should have mentioned that.
Memory limit increase does not work.
Installtion of msvcrt.dll does not work
either.
Thank you.
-----Original Message-----
From: ripley at stats.ox.ac.uk [mailto:ripley at stats.ox.ac.uk]
Sent: Wednesday, March 05, 2003 2:44 PM
To: Igor Oleinik
Cc: r-help at stat.math.ethz.ch
Subject: Re: [R] problem with cclust[er]
2004 Dec 08
2
Clustering in R
Is there a command to get cluster criterion for the cluster methods? SAS has its criterion, but I prefer to do it in R. If there is not a command is there code to produce criteria to choose the number of clusters?
Adrian Katschke
Statistics Grad Student
University of Nebraska-Lincoln
[[alternative HTML version deleted]]
2008 Nov 21
1
Help with CCLUS
Hi,
I am using the following syntax to enter data and perform a cluster analysis:
x <- read.table ("clstrdbt.csv", header=TRUE, sep = ",",fill = TRUE)
cl<-cclust(x,4,20,verbose=TRUE,method="kmeans")
This is the result I receive:
Error in cclust(x, 4, 20, verbose = TRUE, method = "kmeans") :
(list) object cannot be coerced to type 'double'
2003 Mar 05
1
problem with ccluster package
Hello,
I am calling cclust function in cclust package
repeatedly until some ceratain conditions
for a cluster are met. Unfortunately,
the system crashes on the second call (after debugging).
# kmeans res1 is a well defined matrix
cl <- cclust(res1, as.numeric(ncntrs), iter.max = 20, verbose = FALSE,
dist="manhattan", method="kmeans")
RGui has generated errors and will
2002 Oct 11
1
Problems with cclust
To Whom It May Concern,
I am currently trying to use R to perform a "kmeans" clustering of a
three dimensional data set. In the directory
R-1.5.1/library/cclust/data/ I have created a file that
has the following format (only the first few lines are shown for
brevity):
B X.Vtl X.Vtu
1 -0.529043 1.307031 1.625169
2 -0.752502 1.132813 1.480548
3
2003 May 15
1
error-prone feature?
Hi All,
while looking why the cclust(cclust) doesn't work for 1-dimensional data,
I've found unpleasant behavior in semantics of R. Indeed:
is.matrix(matrix(cbind(c(1,2,3,4)),ncol=2)[1:2,]) == TRUE
but:
is.matrix(matrix(c(1,2))[1:2,]) == FALSE
kind regards,
Valery A.Khamenya
---------------------------------------------------------------------------
Bioinformatics
2004 Apr 27
1
beginners k means clustering question
Hi all,
I am wandering.. is it possible to cluster data which is in a single
column ?
for example.. I have some data as follows:
4013
7362
7585
9304
11879
14785
21795
30500
30669
30924
33988
36975
40422
42911
50501
51593
53729
54338
55497
57337
61993
62601
66229
69815
69933
70760
71340
75921
83972
90134
91061
.
.
.
is it possible to cluster this data since it is in a single column ?
I have
2009 Dec 16
2
Flexclust barchart issue when mcol=NULL (PR#14150)
Full_Name: Chris Hane
Version: 2.10.1
OS: Windows
Submission from: (NULL) (198.203.181.181)
When using barchart in the flexcust package, setting mcol=NULL to avoid the
lollipops causes an error. Each panel shows the text message "Error using
packet n replacement has length zero." where n is the panel number.
> data(iris)
> cl <- cclust(iris[,-5], k=3)
> barplot(cl,
2008 Apr 13
0
Calinsky and Harabasz Index for Cluster Determination with Diana in R
Hello all,
I have a set of data points, which I have pair distances for. I
managed to create dendrogram for this data set using diana() in R,
however this only gives me the tree and not the clusters themselves. I
am trying to determine clusters using Calinsky and Harabasz Index (CH
Index). I, however, cannot find how to accomplish this using R. Is
there anyone who could help me with this? I
2001 Oct 11
2
Where's MVA?
Hi All:
Package TSERIES is stated to depend on MVA. However, there is no MVA package to be found under the list of package sources.
Best wishes,
ANDREW
tseries: Package for time series analysis
Package for time series analysis with emphasis on non-linear and non-stationary modelling Version: 0.7-6
Depends: ts, mva, quadprog
Date: 2001-08-27
Author: Compiled by Adrian
2011 Sep 01
3
CentOS 6 Partitioning Help
*Re-sending as it appears my original e-mail did not go through*.
Good Evening All,
I have a question regarding CentOS 6 server partitioning. Now I know
there are a lot of different ways to partition the system and different
opinions depending on the use of the server. I currently have a quad
core intel system running 8GB of RAM with 1 TB hard drive (single). In
the past as a FreeBSD user, I