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.
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