
Frequently Asked Questions
Xiaotao Shen (https://www.shenxt.info/)
Created on 2021-12-24 and updated on 2022-03-21
faq.Rmd
Installation
During the installation, it will ask if you want to update some packages for few times, just enter
Enter
orReurn
key to skip it.When you install
tidymass
fromgithub
, and there is a error like below:
Error: Failed to install 'tidymass' from GitHub: HTTP error 403. API rate limit exceeded for 171.66.10.237. (But here's the good news: Authenticated requests get a higher rate limit. Check out the documentation for more details.)
Try to resolve it by:
In you R console, type this code:
usethis::create_github_token()
It will open a page in browser, and create a “New personal access token” and copy it.
Then type this code:
usethis::edit_r_environ()
and then add one line like below:
GITHUB_PAT=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
The
GITHUB_PAT
should be yours that is created in step 1.
And then restart R session and try again.
Session information
sessionInfo()
#> R version 4.1.2 (2021-11-01)
#> Platform: x86_64-apple-darwin17.0 (64-bit)
#> Running under: macOS Big Sur 10.16
#>
#> Matrix products: default
#> BLAS: /Library/Frameworks/R.framework/Versions/4.1/Resources/lib/libRblas.0.dylib
#> LAPACK: /Library/Frameworks/R.framework/Versions/4.1/Resources/lib/libRlapack.dylib
#>
#> locale:
#> [1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8
#>
#> attached base packages:
#> [1] stats graphics grDevices utils datasets methods base
#>
#> loaded via a namespace (and not attached):
#> [1] rstudioapi_0.13 knitr_1.37 magrittr_2.0.2 R6_2.5.1
#> [5] ragg_1.2.1 rlang_1.0.1 fastmap_1.1.0 highr_0.9
#> [9] stringr_1.4.0 tools_4.1.2 xfun_0.29 cli_3.2.0
#> [13] jquerylib_0.1.4 htmltools_0.5.2 systemfonts_1.0.3 yaml_2.3.4
#> [17] digest_0.6.29 rprojroot_2.0.2 pkgdown_2.0.2 crayon_1.5.0
#> [21] textshaping_0.3.6 purrr_0.3.4 codetools_0.2-18 sass_0.4.0
#> [25] fs_1.5.2 memoise_2.0.1 cachem_1.0.6 evaluate_0.15
#> [29] rmarkdown_2.11 stringi_1.7.6 compiler_4.1.2 bslib_0.3.1
#> [33] desc_1.4.0 jsonlite_1.7.3