-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprestations.red
44 lines (36 loc) · 1.01 KB
/
prestations.red
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
Red [
Title: "prestations.red"
]
ligne-titres: [
text right ""
text right "1981"
text right "2018"
text right "delta"
text right "delta%"
]
ligne-PIB: [
text "PIB (Milliards)"
pib-1981: field right "511"
pib-2018: field right "2300"
delta: field right react [face/data: to-integer pib-2018/data - to-integer pib-1981/data]
delta-pc: field right react [face/data: to-percent round/to (to-float delta/data / to-float pib-1981/data) 0.01]
]
ligne-Population: [
text "Population (Millions)"
pop-1981: field right "55.4"
pop-2018: field right "67.2"
delta-pop: field right react [face/data: to-integer pop-2018/data - to-integer pop-1981/data]
delta-pc-pop: field right react [face/data: to-percent round/to (to-float delta-pop/data / to-float pop-1981/data) 0.01]
]
Title: "Prestations Sociales"
win: layout compose [
title (Title)
panel ligne-titres
return
panel ligne-PIB
return
panel ligne-Population
do [
]
]
view win