R Analytics
R language data analysis and visualization toolkit.
Quick Reference
Run R Code
# Run inline code
Rscript -e 'print("Hello R")'
# Run script file
Rscript script.R
# Run with arguments
Rscript script.R arg1 arg2
Package Management
# Update all packages
Rscript -e 'options(repos = c(CRAN = "https://cloud.r-project.org")); update.packages(ask = FALSE, checkBuilt = TRUE)'
# Install package
Rscript -e 'install.packages("tidyverse", repos = "https:/
[Description truncada. Veja o README completo no GitHub.]