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
______________________________________________
[email protected] 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.