forked from MTES-MCT/parcours_r_module_datavisualisation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path04-les-formes-geometriques.Rmd
39 lines (31 loc) · 1.35 KB
/
04-les-formes-geometriques.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Les formes géométriques
Pour spécifier le type de représentation que l'on souhaite, il faut utiliser les fonctions de la forme **geom_XX**
Le tableau ci-dessous présente quelques représentations graphiques classiques.
Il en existe un grand nombre que l'on peut retrouver grâce à l'aide
```{r fg4_1, echo=T,eval=F,warning = FALSE,message = FALSE}
help.search("^geom_", package = "ggplot2")
```
GEOM | DESCRIPTION | AESTHETICS
----------| --------
geom_point() | Nuage de points | x, y, shape, fill
geom_line() | Ligne | x, y, linetype
geom_bar() | Diagramme en barres | x, fill, linetype, weight
geom_histogram() | Histogramme | x, fill, linetype, weight
geom_boxplot() | Boîte à moustaches | x, y, fill, weight
geom_density() | Courbe de densité | x, y, fill, linetype
```{r fg4_2, echo=T,eval=T,fig.height=3.5,warning = FALSE,message = FALSE}
ggplot(data = graphique1) +
geom_bar(aes(Continent))
```
```{r fg4_3, echo=T,eval=T,fig.height=3.5,warning = FALSE,message = FALSE}
ggplot(graphique1) +
geom_histogram(aes(x=log(Gross_Domestic_Product_GDP)))
```
```{r fg4_4, echo=T,eval=T,fig.height=3.5,warning = FALSE,message = FALSE}
ggplot(graphique1) +
geom_density(aes(x=log(Gross_Domestic_Product_GDP)))
```
```{r fg4_5, echo=T,eval=T,fig.height=3.5,warning = FALSE,message = FALSE}
ggplot(graphique2) +
geom_line(aes(x=Year,y=Value))
```