[R] Using clustering functions

2007-09-08 Thread uv

Hi. I need to use a few different clustering functions. I managed to run the
kmeans() one which is in my stats library, but I can't use any function,
such as agnes(), that is in my cluster library. Any idea how to access
other libraries? 
Thanks!
-- 
View this message in context: 
http://www.nabble.com/Using-clustering-functions-tf4401159.html#a12554686
Sent from the R help mailing list archive at Nabble.com.

__
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] Using clustering functions

2007-09-08 Thread Uwe Ligges


uv wrote:
 Hi. I need to use a few different clustering functions. I managed to run the
 kmeans() one which is in my stats library, but I can't use any function,
 such as agnes(), that is in my cluster library. Any idea how to access
 other libraries? 
 Thanks!


Both stats and cluster are packages, not libraries.
You need to call library(cluster) in order to load package cluster 
from your library before using agnes() and her friends.


Uwe Ligges

__
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.