-
Notifications
You must be signed in to change notification settings - Fork 7
Description
The installation process fails.
There is a way to install this but this requires installing dependencies first, installing RcppEigen version = "0.3.3.9.4", and then selecting "None" to any dependency update during the flipRegression installation process. Please see below:
Currently the installation instruction says:
require(devtools)
install_github("Displayr/flipRegression", dependencies = NA)
However, the installation process should follow these steps in order:
require(devtools)
install_github("Displayr/flipTime", dependencies = NA, force = TRUE)
install_github("Displayr/flipFormat", dependencies = NA, force = TRUE)
install_github("Displayr/flipStatistics", dependencies = NA, force = TRUE)
install_version("RcppEigen", version = "0.3.3.9.4", repos = "http://cran.us.r-project.org/")
install_github("Displayr/flipRegression", dependencies = NA)
I must emphasize that when the flipRegression installation starts, you must select "None" to the question what dependencies you would like to update. Otherwise RcppEigen with a higher version will be installed and the flipRegression installation process will fail.