On Jul 17, 2015, at 7:21 AM, Issoufou Ouedraogo wrote: > Dear Responsible, > > Hello! > > I am a PhD student at Université Catholique de Louvain, I contact you > because I have some difficulties to install "neuralnet" package in R for my > research. However, to install this package, we need two packages "MASS" and > "grid". The grid package is not available in my R version. I use R 3.1.1 > version for my research. > Please help me. I need to develop neural netwok in my research. > For example, I have write very well my script but, if I run, the problem > is grid package not availbable. > > install.packages("grid")
The grid package is part of the standard R installation. It is not available on CRAN as a separate package. Just do this: library(grid) # you should get a message help(pac=grid) -- David. > Installing package into ‘C:/Users/issoufou/Documents/R/win-library/3.2’ > (as ‘lib’ is unspecified) > Warning in install.packages : > package ‘grid’ is not available (for R version 3.2.0) > > Best regards > > *Issoufou Ouedraogo* > *PhD Student* > *Earth and Life Insitute/ Environmental Sciences* > *Université Catholique de Louvain**/Belgique* > *Croix du sud 2, bte 1, B-1348, Louvain la Neuve,Belgique* > *Tel: +32 (0) 10/47.37.19 <%2B32%20%280%29%2010%2F47.37.19>* > *Fax: +32 (0) 10/47.47.45 <%2B32%20%280%29%2010%2F47.47.45>* > > [[alternative HTML version deleted]] > > ______________________________________________ > R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see > 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. David Winsemius Alameda, CA, USA ______________________________________________ R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see 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.