Hi, I'm a new user of R. I want to install 'copula' packages. I downloaded the package and from the tab above in R-console i selected "install packages from Zipped file". After this when I 'm writing in a command prompt library(copula). It gives the error massage as Error in library(copula) : 'copula' is not a valid installed package. I'm not sure how to install the package. Any help will be appreciable. -- View this message in context: http://r.789695.n4.nabble.com/Installing-R-Packages-from-zipp-file-tp3723275p3723275.html Sent from the R help mailing list archive at Nabble.com.
Hi, 1) What happened when you installed copula? Did you get any error or warning messages? 2) Do you have all of the dependencies installed? At least for the most recent version of copula on CRAN they are: methods, mvtnorm, scatterplot3d, sn, pspline. 3) What version of R are you using? (you can report per the posting guide the results of sessionInfo() ) Josh On Sat, Aug 6, 2011 at 5:44 AM, poulomi <poulomizca at gmail.com> wrote:> Hi, > > I'm a new user of R. I want to install 'copula' packages. I downloaded the > package and from the tab above in R-console i selected "install packages > from Zipped file". After this when I 'm writing in a command prompt > library(copula). It gives the error massage as > Error in library(copula) : 'copula' is not a valid installed package. > > I'm not sure how to install the package. Any help will be appreciable. > > -- > View this message in context: http://r.789695.n4.nabble.com/Installing-R-Packages-from-zipp-file-tp3723275p3723275.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. >-- Joshua Wiley Ph.D. Student, Health Psychology Programmer Analyst II, ATS Statistical Consulting Group University of California, Los Angeles https://joshuawiley.com/
If you have an Internet connection try:> install.packages("copula", dep=TRUE)Good luck! Ken On Aug 6, 2554 BE, at 8:44 AM, poulomi <poulomizca at gmail.com> wrote:> Hi, > > I'm a new user of R. I want to install 'copula' packages. I downloaded the > package and from the tab above in R-console i selected "install packages > from Zipped file". After this when I 'm writing in a command prompt > library(copula). It gives the error massage as > Error in library(copula) : 'copula' is not a valid installed package. > > I'm not sure how to install the package. Any help will be appreciable. > > -- > View this message in context: http://r.789695.n4.nabble.com/Installing-R-Packages-from-zipp-file-tp3723275p3723275.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.