Programme

 

Programme des cours

Programme des présentations des doctorants

 

Pour les travaux pratiques, les participants sont priés d’utiliser leur ordinateur personnel et suivre les instructions ci-dessous:

 

The lectures on Spatial statistics (scheduled for Tuesday April 14, 2026) are applied to R.
If you have not installed R or are new to it, you will find an introduction to and more information on how
to use R in the following links:
* (i) https://rstudio-education.github.io/hopr/starting.html (install R and RStudio)
* (ii) https://slcladal.github.io/intror.html

To ensure the smooth execution of the scripts, please run the commands below to install the required packages.
The installation process might take some time, ranging from 1 to 5 minutes. 
Your patience is appreciated while the necessary libraries are being installed.

To start, you’ll need to launch RStudio. You’ll then see the R Console.
Type the commands below to install the packages required:

```{r include=FALSE, warning=FALSE}
install.packages("automap")
install.packages("geoR")
install.packages("fields")
install.packages("sf")
install.packages("stars")
install.packages("raster")
install.packages("dplyr")
install.packages("spData")
install.packages("tmap")
install.packages("leaflet")
install.packages("ggplot2")
install.packages("spDataLarge",
                 repos = "https://nowosad.github.io/drat/", type = "source")
install.packages("ggspatial")
install.packages("rnaturalearth")
install.packages("rnaturalearthdata")
install.packages("ggmap")
install.packages("gstat")
install.packages("scales")
install.packages("maps")
install.packages("here")
install.packages("rgeos")
install.packages("oz")
# cartography: https://riatelab.github.io/mapsf/
install.packages("cartography")
# install klippy for copy-to-clipboard button in code chunks
install.packages("klippy")
#or remotes::install_github("rlesur/klippy")
install.packages("gstat")
install.packages("viridis")
install.packages("mapview")
install.packages("classInt")
install.packages("RColorBrewer") 
install.packages("cowplot")
install.packages("s2")
install.packages("tidyverse")
install.packages("xts")
install.packages("fields")
install.packages("geoR")
install.packages("ggspatial")

 

Chargement... Chargement...