Rate This Document
Findability
Accuracy
Completeness
Readability

Compilation and Installation

Procedure

  1. Use PuTTY to log in to the server as the root user.
  2. Go to the installation package directory.
    cd /path/to/absolute
  3. Install R.
    yum install R
  4. Add a cran image.
    1. Create a /root/.Rprofile file.
      vi /root/.Rprofile
    2. Press i to enter the edit mode and add the following content. If the file already exists, add it to the end of the file.
      options("repos" = c(CRAN="https://mirrors.tuna.tsinghua.edu.cn/CRAN/"))
    3. Press Esc, type :wq!, and press Enter to save the settings and exit.
  5. Start R.
    R
  6. Install numDeriv.
    install.packages("numDeriv")
  7. Install ABSOLUTE.
    install.packages("ABSOLUTE_1.0.6.tar.gz")