R version 2.9.2 (2009-08-24) - for windows> library(SOM)Error in library(SOM) : there is no package called 'SOM' Where can I get the SOM library from? Thanks in advance -- View this message in context: http://old.nabble.com/SOM-library---where-do-I-find-it-tp26415633p26415633.html Sent from the R help mailing list archive at Nabble.com.
Hi, On Nov 18, 2009, at 3:58 PM, tdm wrote:> R version 2.9.2 (2009-08-24) - for windows > >> library(SOM) > Error in library(SOM) : there is no package called 'SOM'I think you want "som", right?> Where can I get the SOM library from?Where you get just about every R package from, CRAN: http://cran.r-project.org/web/packages/som/index.html Or, from within R: R> install.packages('som') -steve -- Steve Lianoglou Graduate Student: Computational Systems Biology | Memorial Sloan-Kettering Cancer Center | Weill Medical College of Cornell University Contact Info: http://cbio.mskcc.org/~lianos/contact
Hi tdm, tdm wrote:> R version 2.9.2 (2009-08-24) - for windows > >> library(SOM) > Error in library(SOM) : there is no package called 'SOM' > > Where can I get the SOM library from? > > Thanks in advanceR is case-sensitive, so install.packages("som") library("som") ?som http://cran.r-project.org/web/packages/som/index.html HTH, Tobias
You have to download it from CRAN and install it. From the GUI, do Packages->Install package(s). Pretty basic stuff...you should check the documentation before posting. Julian> > > R version 2.9.2 (2009-08-24) - for windows > >> library(SOM) > Error in library(SOM) : there is no package called 'SOM' > > Where can I get the SOM library from? > > Thanks in advance > -- > View this message in context: > http://old.nabble.com/SOM-library---where-do-I-find-it-tp26415633p26415633.html > Sent from the R help mailing list archive at Nabble.com. > > ______________________________________________ > R-help at r-project.org 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. >