Last active
November 19, 2021 17:52
-
-
Save Pakillo/d243bcc42a34d3abaf1f1f993563e1b3 to your computer and use it in GitHub Desktop.
R-GIS-install.R
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install R latest version: https://cloud.r-project.org/ | |
# For installing R on Linux, check out https://docs.rstudio.com/resources/install-r/ | |
# Instructions: https://moderndive.netlify.app/1-getting-started.html | |
# Install RStudio latest version: https://www.rstudio.com/products/rstudio/download/#download | |
# Open RStudio and install some R packages using the code below: | |
install.packages(c( | |
"tidyverse", | |
"sf", | |
"mapview", | |
"leaflet", | |
"terra", | |
"ggspatial", | |
"tmap", | |
"cowplot", | |
"ggthemes", | |
"maptiles", | |
"geodata" | |
)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment