我要评分
获取效率
正确性
完整性
易理解

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")