-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjson.Rmd
103 lines (69 loc) · 1.71 KB
/
json.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
---
title: "Le JSON"
author: "Hubert LEVIEL"
date: "06/02/2023"
output: html_document
---
```{r, warning=FALSE}
library(tidyverse)
library(jsonlite)
```
# Le JSON (JavaScript Object Notation)
- Format de fichier textuel conçu pour l'échange de données structurées
- Les données sont présentées sous forme de paires clé/valeur.\
`"key":"value"`
- Les éléments de données sont séparés par des virgules\
`"prenom":"Hubert", "nom":"LEVIEL"`
- Les accolades {} désignent les objets\
`"personne":{"prenom":"Hubert", "nom":"LEVIEL"}`
- Les crochets \[\] désignent des tableaux\
`{`
`"students":[`
`{"firstName":"Tom", "lastName":"Jackson"},`
`{"firstName":"Linda", "lastName":"Garner"},`
`{"firstName":"Adam", "lastName":"Cooper"}`
`]`
`}`
# Naviguer dans la structure
## Charger et parser un JSON
```{r cars}
json <- fromJSON("https://www.ispf.pf/content/api/datasets/1070")
class(json)
```
## Descendre dans la hiérarchie
```{r}
donnees <- json$data
names(donnees)
```
```{r}
attributs <- donnees$attributes
names(attributs)
```
## Récupérer une valeur
```{r}
nom <- attributs$nom
nom
```
```{r}
explication <- attributs$explication
explication
```
```{r}
date_publication <- attributs$publishedAt
date_publication
```
## Récupérer un data.frame
```{r}
evolution_df <- attributs$data
head(evolution_df)
```
## Directement exploitable
```{r}
evolution_df %>%
mutate(Periode = as.Date(Periode)) %>%
ggplot(aes(x=Periode, y=Valeur)) +
geom_line()+
labs(title = nom,
subtitle = as.Date(date_publication),
caption = explication)
```