This file contains hidden or 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
library(readr) | |
library(dplyr) | |
raw_df <- read_delim("5262_FH CAPE TOWN_3.TXT", | |
delim = ",", | |
col_names = FALSE) | |
code3 <- raw_df %>% | |
filter(X1 == 3) %>% | |
mutate(ID = 1:nrow(.)) %>% |
This file contains hidden or 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
<!-- $theme: gaia --> | |
<!-- template: gaia --> | |
--- | |
# Histoire de la Cartographie | |
## ==Nouvelles sources et==<br/> représentations graphiques associées | |
### Robin Cura | |
#### Doctorant, UMR Géographie-cités | |
--- |

This file contains hidden or 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
#!/bin/bash | |
cd /home/robin/gama17git/headless | |
experimentPath="/home/robin/sensitivity/simFEODAL_analyse_sensibilite_" | |
outputPath="/home/robin/myOutputs/sim" | |
xml=".xml" | |
# Cluster got 24 cores | |
# We launch each simulation on 2 cores, so, 8 simulations | |
# Each with 4Go of RAM (64 Go Total) | |
# Server |
This file contains hidden or 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
library(tidyverse) # tidyverse charge les packages les plus utiles issus de la logique "tidy", | |
# c'est-à-dire : dplyr, tidyr, readr et ggplot2 (entre autre) | |
# Si tidyverse n'est pas disponible, décommenter les ligne suivante | |
# library(dplyr) | |
# library(tidyr) | |
# library(readr) | |
# library(ggplot2) | |
This file contains hidden or 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
expr | time | |
---|---|---|
heat_1M | 91798898.0 | |
heat_10k | 2434459.0 | |
heat_250k | 24478987.0 | |
webgl_2M | 352987427.0 | |
webgl_10k | 2810198.0 | |
heat_500k | 49994687.0 | |
webgl_2M | 281330926.0 | |
webgl_500k | 46751394.0 | |
heat_10k | 2875177.0 |
This file contains hidden or 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
--- | |
title: "WebGLHeatmap-big" | |
output: | |
html_notebook: default | |
--- | |
## Data preparation | |
```{r data loading} | |
library(tibble) |
This file contains hidden or 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
--- | |
title: "WebGLHeatmap-small" | |
output: | |
html_notebook: default | |
--- | |
## Data preparation | |
```{r data loading} | |
library(tibble) |
This file contains hidden or 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
--- | |
title: "WebGLHeatmap-small" | |
output: | |
html_notebook: default | |
--- | |
## Data preparation | |
```{r data loading} | |
library(tibble) |
This file contains hidden or 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
--- | |
title: "Leaflet.heat" | |
output: html_notebook | |
--- | |
## Data preparation | |
```{r data loading} | |
library(tibble) | |
library(dplyr) |