search for: wartel

Displaying 4 results from an estimated 4 matches for "wartel".

Did you mean: martel
2004 Mar 09
1
Package cclust error
...rid of the problem I have looked inside the package very quickly and I found three files, I am not sure what to do to fix this (the problem is describe bellow) I would be very happy to have someone show me how to solve my problem.... Thanks a lot S?bastien Durand On Wed, 20 Feb 2002, David Wartel wrote: > > I have to solve a clustering problem. > My first step is to determinate the number of clusters, that's why I 'm using ...snip... >... number of clusters. > A function is already implemented in R to calculate this index : > > clustIndex(cl,x, index="...
2002 Oct 23
7
Counting NA?
Hi, how to do quickly equivalent of the following? counter = 0 for(i in 1:length(data$S2)) { if(!is.na(data$S2[i])) { counter = counter + 1 } } I have imagined something like length(x,na.rm=TRUE). How can I get values usually taken from tables like z-score, values of t distribution etc.? I could not find them among values mentioned in info file. Thanks, Matej -- Matej Cepl,
2011 Mar 28
1
Support not compiled in for passdb driver ldap
Hello, From repo, the lastest release 2.0.11-0~auto+32 does not have ldap support :/ auth: Fatal: Support not compiled in for passdb driver 'ldap' Regards, Stephane
2002 Feb 20
2
Clustering and Calinski's index
I have to solve a clustering problem. My first step is to determinate the number of clusters, that's why I 'm using the Calinski index ( [tr(b)/(k-1)]/[tr(w)/(k-1)] ) which i try to maximize to have the best number of clusters. A function is already implemented in R to calculate this index : clustIndex(cl,x, index="calinski") where cl is the result of a clustering method ,