Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mooc-rr
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
d7227cde42eb97d8aac791d907b6bbae
mooc-rr
Commits
bd3fb38c
You need to sign in or sign up before continuing.
Commit
bd3fb38c
authored
Aug 21, 2024
by
d7227cde42eb97d8aac791d907b6bbae
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update exercice_fr.Rmd
parent
e25fd15b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
exercice_fr.Rmd
module2/exo4/exercice_fr.Rmd
+2
-3
No files found.
module2/exo4/exercice_fr.Rmd
View file @
bd3fb38c
...
@@ -42,14 +42,13 @@ rr_grouped <- rr_20eme %>%
...
@@ -42,14 +42,13 @@ rr_grouped <- rr_20eme %>%
head(rr_grouped)
head(rr_grouped)
```
```
Très bien, essayons maintenant de voir s'il pourrait exister un lien
de corrélation
entre l'altitude d'un site et la pluviométrie qu'il a reçu.
Très bien, essayons maintenant de voir s'il pourrait exister un lien entre l'altitude d'un site et la pluviométrie qu'il a reçu.
```{r corr, warning=F, prompt=F}
```{r corr, warning=F, prompt=F}
library(tidyverse)
library(tidyverse)
ggplot(rr_grouped) +
ggplot(rr_grouped) +
aes(x = ALTI, y = RR_YCUM, color = ANNEE) +
aes(x = ALTI, y = RR_YCUM, color = ANNEE) +
geom_point(alpha = .45) +
geom_point(alpha = .45) +
geom_smooth(method = "lm") +
scale_color_gradient(low="blue", high="red")
scale_color_gradient(low="blue", high="red")
labs(x = "Altitude", y = "Pluviométrie annuelle cumulée")
labs(x = "Altitude", y = "Pluviométrie annuelle cumulée")
```
```
Bon, il va falloir que je retravaille ça... En plus la répartition temporelle est très hétérogène.
Bon, la répartition temporelle est très hétérogène, mais il semblerait qu'il y ait quelque chose à creuser. Je verrai ça demain... ;)
\ No newline at end of file
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment