在 R 中安装秤

Install scale in R

我尝试通过以下方式在 R 中安装比例尺:

devtools::install_github("scale",username="hadley/scale")

但是

Downloading github repo hadley/scale/scale@master
Error in download(dest, src, auth) : client error: (404) Not Found
In addition: Warning message:
Username parameter is deprecated. Please use hadley/scale/scale
  1. install_github函数的一般语法是:

    install_github(repo)

    其中 repo 的格式为 用户名/存储库

  2. 应该检查用户名存储库的语法,以避免消息

    Error in download(dest, src, auth) : client error: (404) Not Found

  3. 比较 GitHub 和 CRAN 上可用的版本也是一个好习惯。在可用的相同版本的情况下,最简单的是:

    install.packages(pkg, dependencies = TRUE)

    其中 dependencies 参数确保安装 pkg 依赖的所有软件包 on/links to/imports/suggests.