Reputation: 1
I am trying to install the AED
package in my console, but I get this warning:
install.packages("AED")
Warning in install.packages :
package ‘AED’ is not available (for R version 3.1.0)
I've been searching for solutions in different forums, but I can't find the proper solution. Could anyone help me with this basic problem, please?
Upvotes: 0
Views: 5852
Reputation: 41
You may not get the AED package installed. But see https://rdrr.io/github/romunov/AED/ and apply the following commands:
install.packages("remotes")
remotes::install_github("romunov/AED")
Unfortunately, it did not work for me.
Aternatively, you can:
setwd("C:/Users/Mora/Downloads/RChapter5/RChapter5")
Now, you can access the datasets and run all functions for the corresponding chapter.
Upvotes: 0
Reputation: 46
This package has been discontinued, but in the official book page (Zuur et al 2009), the authors have a link to download all the databases that were in AED.
Look at:
http://www.highstat.com/book2.htm
Upvotes: 1