I have to install the "bivpois" package in the software R using Windows. Browsing on the Internet on StackOverflow site, I found different solution to my problem, but I cannot to solve that.
The R version is the 3.1.2.
I tried to install this package, as suggested by some on the Internet, running the following lines:
Using a zip file;
Using the code file
The last 3 way give an error as output, while running "Install package from local zip file" by the menu allows to install properly (apparently) the package. When I want to call the package after installed, using
R gives the following error:
and updating by running
does not help to call the package.
How can I install and use this package in you opinion?
Yhanks in advance for the help!
The R version is the 3.1.2.
I tried to install this package, as suggested by some on the Internet, running the following lines:
Using a zip file;
Code:
install.packages('FILE_LOCATION',repos=NULL,type="source")
Code:
install.packages('FILE_LOCATION',repos=NULL,type="source")[CODE]
Using the link of the website where one can download the package:
[CODE]install.packages("bivpois", repos = "http://stat-athens.aueb.gr/~jbn/papers/paper14.htm",type = "source")
Code:
library()
Code:
Error: package ‘bivpois’ was built before R 3.0.0: please re-install it
Code:
update.packages(checkBuilt = TRUE, ask = FALSE)
How can I install and use this package in you opinion?
Yhanks in advance for the help!