forked from enterstudio/wp-static
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_redirects
1504 lines (1504 loc) · 142 KB
/
_redirects
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/feed /atom.xml 302!
/wp-admin/* https://owid.cloud/wp/wp-admin/:splat 301
/grapher/admin/* https://owid.cloud/grapher/admin/:splat 301
/wp-content/uploads/* /uploads/:splat 301
/app/uploads/* /uploads/:splat 301
/roser/* https://www.maxroser.com/roser/:splat 301
/uploads/nvd3/* https://www.maxroser.com/owidUploads/nvd3/:splat 301
/uploads/datamaps/* https://www.maxroser.com/owidUploads/datamaps/:splat 301
/slides/Max_PPT_presentations/* https://www.maxroser.com/slides/Max_PPT_presentations/:splat 301
/slides/Max_Interactive_Presentations/* https://www.maxroser.com/slides/Max_Interactive_Presentations/:splat 301
/entries/* /:splat 301
/entries /#entries 302
/data/food-agriculture/* /:splat 301
/data/political-regimes/* /:splat 301
/data/population-growth-vital-statistics/* /:splat 301
/data/growth-and-distribution-of-prosperity/* /:splat 301
/chart-builder/* /grapher/:splat 301
/grapher/public/* /grapher/:splat 301
/grapher/view/* /grapher/:splat 301
/slides/* https://slides.ourworldindata.org/:splat 301
/subscribe /#subscribe 301
/detect-country-redirect /detect-country.js?ABW 302! Country=aw
/detect-country-redirect /detect-country.js?AFG 302! Country=af
/detect-country-redirect /detect-country.js?AGO 302! Country=ao
/detect-country-redirect /detect-country.js?AIA 302! Country=ai
/detect-country-redirect /detect-country.js?ALB 302! Country=al
/detect-country-redirect /detect-country.js?AND 302! Country=ad
/detect-country-redirect /detect-country.js?ARE 302! Country=ae
/detect-country-redirect /detect-country.js?ARG 302! Country=ar
/detect-country-redirect /detect-country.js?ARM 302! Country=am
/detect-country-redirect /detect-country.js?ASM 302! Country=as
/detect-country-redirect /detect-country.js?ATG 302! Country=ag
/detect-country-redirect /detect-country.js?AUS 302! Country=au
/detect-country-redirect /detect-country.js?AUT 302! Country=at
/detect-country-redirect /detect-country.js?AZE 302! Country=az
/detect-country-redirect /detect-country.js?BDI 302! Country=bi
/detect-country-redirect /detect-country.js?BEL 302! Country=be
/detect-country-redirect /detect-country.js?BEN 302! Country=bj
/detect-country-redirect /detect-country.js?BFA 302! Country=bf
/detect-country-redirect /detect-country.js?BGD 302! Country=bd
/detect-country-redirect /detect-country.js?BGR 302! Country=bg
/detect-country-redirect /detect-country.js?BHR 302! Country=bh
/detect-country-redirect /detect-country.js?BHS 302! Country=bs
/detect-country-redirect /detect-country.js?BIH 302! Country=ba
/detect-country-redirect /detect-country.js?BLR 302! Country=by
/detect-country-redirect /detect-country.js?BLZ 302! Country=bz
/detect-country-redirect /detect-country.js?BMU 302! Country=bm
/detect-country-redirect /detect-country.js?BOL 302! Country=bo
/detect-country-redirect /detect-country.js?BRA 302! Country=br
/detect-country-redirect /detect-country.js?BRB 302! Country=bb
/detect-country-redirect /detect-country.js?BTN 302! Country=bt
/detect-country-redirect /detect-country.js?BWA 302! Country=bw
/detect-country-redirect /detect-country.js?CAF 302! Country=cf
/detect-country-redirect /detect-country.js?CAN 302! Country=ca
/detect-country-redirect /detect-country.js?CHE 302! Country=ch
/detect-country-redirect /detect-country.js?CHL 302! Country=cl
/detect-country-redirect /detect-country.js?CHN 302! Country=cn
/detect-country-redirect /detect-country.js?CIV 302! Country=ci
/detect-country-redirect /detect-country.js?CMR 302! Country=cm
/detect-country-redirect /detect-country.js?COG 302! Country=cg
/detect-country-redirect /detect-country.js?COL 302! Country=co
/detect-country-redirect /detect-country.js?COM 302! Country=km
/detect-country-redirect /detect-country.js?CPV 302! Country=cv
/detect-country-redirect /detect-country.js?CRI 302! Country=cr
/detect-country-redirect /detect-country.js?CUB 302! Country=cu
/detect-country-redirect /detect-country.js?CXR 302! Country=cx
/detect-country-redirect /detect-country.js?CYM 302! Country=ky
/detect-country-redirect /detect-country.js?CYP 302! Country=cy
/detect-country-redirect /detect-country.js?CZE 302! Country=cz
/detect-country-redirect /detect-country.js?DEU 302! Country=de
/detect-country-redirect /detect-country.js?DJI 302! Country=dj
/detect-country-redirect /detect-country.js?DMA 302! Country=dm
/detect-country-redirect /detect-country.js?DNK 302! Country=dk
/detect-country-redirect /detect-country.js?DOM 302! Country=do
/detect-country-redirect /detect-country.js?DZA 302! Country=dz
/detect-country-redirect /detect-country.js?ECU 302! Country=ec
/detect-country-redirect /detect-country.js?EGY 302! Country=eg
/detect-country-redirect /detect-country.js?ERI 302! Country=er
/detect-country-redirect /detect-country.js?ESP 302! Country=es
/detect-country-redirect /detect-country.js?EST 302! Country=ee
/detect-country-redirect /detect-country.js?ETH 302! Country=et
/detect-country-redirect /detect-country.js?FIN 302! Country=fi
/detect-country-redirect /detect-country.js?FJI 302! Country=fj
/detect-country-redirect /detect-country.js?FRA 302! Country=fr
/detect-country-redirect /detect-country.js?GAB 302! Country=ga
/detect-country-redirect /detect-country.js?GBR 302! Country=gb
/detect-country-redirect /detect-country.js?GEO 302! Country=ge
/detect-country-redirect /detect-country.js?GHA 302! Country=gh
/detect-country-redirect /detect-country.js?GIB 302! Country=gi
/detect-country-redirect /detect-country.js?GIN 302! Country=gn
/detect-country-redirect /detect-country.js?GMB 302! Country=gm
/detect-country-redirect /detect-country.js?GNB 302! Country=gw
/detect-country-redirect /detect-country.js?GNQ 302! Country=gq
/detect-country-redirect /detect-country.js?GRC 302! Country=gr
/detect-country-redirect /detect-country.js?GRD 302! Country=gd
/detect-country-redirect /detect-country.js?GRL 302! Country=gl
/detect-country-redirect /detect-country.js?GTM 302! Country=gt
/detect-country-redirect /detect-country.js?GUF 302! Country=gf
/detect-country-redirect /detect-country.js?GUM 302! Country=gu
/detect-country-redirect /detect-country.js?GUY 302! Country=gy
/detect-country-redirect /detect-country.js?HKG 302! Country=hk
/detect-country-redirect /detect-country.js?HND 302! Country=hn
/detect-country-redirect /detect-country.js?HRV 302! Country=hr
/detect-country-redirect /detect-country.js?HTI 302! Country=ht
/detect-country-redirect /detect-country.js?HUN 302! Country=hu
/detect-country-redirect /detect-country.js?IDN 302! Country=id
/detect-country-redirect /detect-country.js?IMN 302! Country=im
/detect-country-redirect /detect-country.js?IND 302! Country=in
/detect-country-redirect /detect-country.js?IRL 302! Country=ie
/detect-country-redirect /detect-country.js?IRQ 302! Country=iq
/detect-country-redirect /detect-country.js?ISL 302! Country=is
/detect-country-redirect /detect-country.js?ISR 302! Country=il
/detect-country-redirect /detect-country.js?ITA 302! Country=it
/detect-country-redirect /detect-country.js?JAM 302! Country=jm
/detect-country-redirect /detect-country.js?JEY 302! Country=je
/detect-country-redirect /detect-country.js?JOR 302! Country=jo
/detect-country-redirect /detect-country.js?JPN 302! Country=jp
/detect-country-redirect /detect-country.js?KAZ 302! Country=kz
/detect-country-redirect /detect-country.js?KEN 302! Country=ke
/detect-country-redirect /detect-country.js?KGZ 302! Country=kg
/detect-country-redirect /detect-country.js?KHM 302! Country=kh
/detect-country-redirect /detect-country.js?KIR 302! Country=ki
/detect-country-redirect /detect-country.js?KNA 302! Country=kn
/detect-country-redirect /detect-country.js?KWT 302! Country=kw
/detect-country-redirect /detect-country.js?LBN 302! Country=lb
/detect-country-redirect /detect-country.js?LBR 302! Country=lr
/detect-country-redirect /detect-country.js?LCA 302! Country=lc
/detect-country-redirect /detect-country.js?LIE 302! Country=li
/detect-country-redirect /detect-country.js?LKA 302! Country=lk
/detect-country-redirect /detect-country.js?LSO 302! Country=ls
/detect-country-redirect /detect-country.js?LTU 302! Country=lt
/detect-country-redirect /detect-country.js?LUX 302! Country=lu
/detect-country-redirect /detect-country.js?LVA 302! Country=lv
/detect-country-redirect /detect-country.js?MAC 302! Country=mo
/detect-country-redirect /detect-country.js?MAR 302! Country=ma
/detect-country-redirect /detect-country.js?MCO 302! Country=mc
/detect-country-redirect /detect-country.js?MDG 302! Country=mg
/detect-country-redirect /detect-country.js?MDV 302! Country=mv
/detect-country-redirect /detect-country.js?MEX 302! Country=mx
/detect-country-redirect /detect-country.js?MHL 302! Country=mh
/detect-country-redirect /detect-country.js?MKD 302! Country=mk
/detect-country-redirect /detect-country.js?MLI 302! Country=ml
/detect-country-redirect /detect-country.js?MLT 302! Country=mt
/detect-country-redirect /detect-country.js?MMR 302! Country=mm
/detect-country-redirect /detect-country.js?MNE 302! Country=me
/detect-country-redirect /detect-country.js?MNG 302! Country=mn
/detect-country-redirect /detect-country.js?MNP 302! Country=mp
/detect-country-redirect /detect-country.js?MOZ 302! Country=mz
/detect-country-redirect /detect-country.js?MRT 302! Country=mr
/detect-country-redirect /detect-country.js?MTQ 302! Country=mq
/detect-country-redirect /detect-country.js?MUS 302! Country=mu
/detect-country-redirect /detect-country.js?MWI 302! Country=mw
/detect-country-redirect /detect-country.js?MYS 302! Country=my
/detect-country-redirect /detect-country.js?MYT 302! Country=yt
/detect-country-redirect /detect-country.js?NAM 302! Country=na
/detect-country-redirect /detect-country.js?NCL 302! Country=nc
/detect-country-redirect /detect-country.js?NER 302! Country=ne
/detect-country-redirect /detect-country.js?NFK 302! Country=nf
/detect-country-redirect /detect-country.js?NGA 302! Country=ng
/detect-country-redirect /detect-country.js?NIC 302! Country=ni
/detect-country-redirect /detect-country.js?NIU 302! Country=nu
/detect-country-redirect /detect-country.js?NLD 302! Country=nl
/detect-country-redirect /detect-country.js?NOR 302! Country=no
/detect-country-redirect /detect-country.js?NPL 302! Country=np
/detect-country-redirect /detect-country.js?NRU 302! Country=nr
/detect-country-redirect /detect-country.js?NZL 302! Country=nz
/detect-country-redirect /detect-country.js?OMN 302! Country=om
/detect-country-redirect /detect-country.js?PAK 302! Country=pk
/detect-country-redirect /detect-country.js?PAN 302! Country=pa
/detect-country-redirect /detect-country.js?PCN 302! Country=pn
/detect-country-redirect /detect-country.js?PER 302! Country=pe
/detect-country-redirect /detect-country.js?PHL 302! Country=ph
/detect-country-redirect /detect-country.js?PLW 302! Country=pw
/detect-country-redirect /detect-country.js?PNG 302! Country=pg
/detect-country-redirect /detect-country.js?POL 302! Country=pl
/detect-country-redirect /detect-country.js?PRI 302! Country=pr
/detect-country-redirect /detect-country.js?PRT 302! Country=pt
/detect-country-redirect /detect-country.js?PRY 302! Country=py
/detect-country-redirect /detect-country.js?PYF 302! Country=pf
/detect-country-redirect /detect-country.js?QAT 302! Country=qa
/detect-country-redirect /detect-country.js?REU 302! Country=re
/detect-country-redirect /detect-country.js?ROU 302! Country=ro
/detect-country-redirect /detect-country.js?RWA 302! Country=rw
/detect-country-redirect /detect-country.js?SAU 302! Country=sa
/detect-country-redirect /detect-country.js?SDN 302! Country=sd
/detect-country-redirect /detect-country.js?SEN 302! Country=sn
/detect-country-redirect /detect-country.js?SGP 302! Country=sg
/detect-country-redirect /detect-country.js?SLB 302! Country=sb
/detect-country-redirect /detect-country.js?SLE 302! Country=sl
/detect-country-redirect /detect-country.js?SLV 302! Country=sv
/detect-country-redirect /detect-country.js?SMR 302! Country=sm
/detect-country-redirect /detect-country.js?SOM 302! Country=so
/detect-country-redirect /detect-country.js?SPM 302! Country=pm
/detect-country-redirect /detect-country.js?SRB 302! Country=rs
/detect-country-redirect /detect-country.js?SSD 302! Country=ss
/detect-country-redirect /detect-country.js?STP 302! Country=st
/detect-country-redirect /detect-country.js?SUR 302! Country=sr
/detect-country-redirect /detect-country.js?SVK 302! Country=sk
/detect-country-redirect /detect-country.js?SVN 302! Country=si
/detect-country-redirect /detect-country.js?SWE 302! Country=se
/detect-country-redirect /detect-country.js?SWZ 302! Country=sz
/detect-country-redirect /detect-country.js?SYC 302! Country=sc
/detect-country-redirect /detect-country.js?TCA 302! Country=tc
/detect-country-redirect /detect-country.js?TCD 302! Country=td
/detect-country-redirect /detect-country.js?TGO 302! Country=tg
/detect-country-redirect /detect-country.js?THA 302! Country=th
/detect-country-redirect /detect-country.js?TJK 302! Country=tj
/detect-country-redirect /detect-country.js?TKL 302! Country=tk
/detect-country-redirect /detect-country.js?TKM 302! Country=tm
/detect-country-redirect /detect-country.js?TON 302! Country=to
/detect-country-redirect /detect-country.js?TTO 302! Country=tt
/detect-country-redirect /detect-country.js?TUN 302! Country=tn
/detect-country-redirect /detect-country.js?TUR 302! Country=tr
/detect-country-redirect /detect-country.js?TUV 302! Country=tv
/detect-country-redirect /detect-country.js?TWN 302! Country=tw
/detect-country-redirect /detect-country.js?UGA 302! Country=ug
/detect-country-redirect /detect-country.js?UKR 302! Country=ua
/detect-country-redirect /detect-country.js?URY 302! Country=uy
/detect-country-redirect /detect-country.js?USA 302! Country=us
/detect-country-redirect /detect-country.js?UZB 302! Country=uz
/detect-country-redirect /detect-country.js?VCT 302! Country=vc
/detect-country-redirect /detect-country.js?VEN 302! Country=ve
/detect-country-redirect /detect-country.js?VNM 302! Country=vn
/detect-country-redirect /detect-country.js?VUT 302! Country=vu
/detect-country-redirect /detect-country.js?WSM 302! Country=ws
/detect-country-redirect /detect-country.js?YEM 302! Country=ye
/detect-country-redirect /detect-country.js?ZAF 302! Country=za
/detect-country-redirect /detect-country.js?ZMB 302! Country=zm
/detect-country-redirect /detect-country.js?ZWE 302! Country=zw
/fertility-rates/ https://ourworldindata.org/fertility-rate 301!
/inequality-between-world-citizens/ https://ourworldindata.org/global-economic-inequality 301!
/minorities-violence-racial-tolerance/ https://ourworldindata.org/treatment-of-minorities 301!
/how-to-embed-ourworldindata-visualisations-in-your-article/ /how-to-embed/ 301!
/VisualHistoryOf/Health.html /slides/global-health 301!
/VisualHistoryOf/Violence.html /slides/war-and-violence 301!
/VisualHistoryOf/Poverty.html /slides/world-poverty 301!
/VisualHistoryOf/Hunger.html /slides/hunger-and-food-provision 301!
/VisualHistoryOf/AfricaInData.html https://africaindata.org/ 302!
/primary-education-and-schools/ https://ourworldindata.org/primary-and-secondary-education 301!
/democratisation/ /democracy/ 301!
/infant-mortality/ https://ourworldindata.org/child-mortality/#infant-mortality 301!
/war-and-peace-long-run/ https://ourworldindata.org/war-and-peace/ 301!
/war-and-peace-after-1945/ https://ourworldindata.org/war-and-peace/ 301!
/child-mortality-globally-post https://ourworldindata.org/child-mortality-globally 301!
/global-child-mortality-it-is-hard-to-overestimate-both-the-immensity-of-the-tragedy-and-the-progress-the-world-has-made/ /child-mortality-globally 301!
/treatment-of-minorities /human-rights 301!
/cascade-of-rights/ /human-rights/ 301!
/social-spending/ /public-spending/ 301!
/age-structure-and-mortality-by-age/ https://ourworldindata.org/life-expectancy/ 301!
/yields/ https://ourworldindata.org/yields-and-land-use-in-agriculture/ 301!
/land-use-in-agriculture/ https://ourworldindata.org/yields-and-land-use-in-agriculture/ 301!
/gdp-data /economic-growth 302!
/international-research-community /science-and-research 302!
/about/owid-grapher /owid-grapher 301!
/fertility/ /fertility-rate/ 301!
/peak-children /peak-child 301!
/world-poverty/ https://ourworldindata.org/extreme-poverty 301!
/gdp-growth-over-the-last-centuries /economic-growth 301!
/forest-cover /forests 301!
/water-access-consumption-sanitation /water-access-resources-sanitation 301!
/sdgs https://sdg-tracker.org 301!
/skill-premium-income-by-education /returns-to-education 301!
/higher-education /tertiary-education 301!
/military-long-run-perspective/ /military-long-run-spending-perspective/ 301!
/the-past-and-future-of-global-change-max-slides-for-his-talk-at-the-un/ /max-un-slides/ 301!
/military-long-run-perspective/ /military-long-run-spending-perspective/ 301!
/entries/income-inequality /income-inequality 301!
/common-faqs-on-plastics/ /common-faqs-on-plastics 301!
/common-faqs-on-plastics /faqs-on-plastics 301!
/selection-of-GH-indicators /selection-of-gh-indicators 301!
/plastics /plastic-pollution 301!
/faqs-on-plastics /faqs-on-plastics2 301!
/faqs-on-plastics /faq-on-plastics 301!
/tebbens-et-al-2011-estimation-of-the-number-of-paralytic-polio-cases /estimating-total-global-paralytic-polio-cases 301!
/volatility-of-food-prices /food-prices#food-price-volatility 301!
/agricultural-employment /employment-in-agriculture 301!
/homelessness-in-rich-countries /homelessness-and-poverty-in-rich-countries 301!
/hunger-and-malnutrition /hunger-and-undernourishment 301!
/future-world-population-growth /future-population-growth 301!
/quality-of-education-drop-out-rates /quality-of-education 301!
/entries/eradication-of-diseases /eradication-of-diseases 301!
/the-world-is-much-better-the-world-is-awful-the-world-can-be-much-better /much-better-awful-can-be-better 301!
/education-in-ethiopia-YL /education-in-ethiopia-yl 301!
/international-trade https://ourworldindata.org/trade-and-globalization 301!
/water-access-resources-sanitation /water-use-sanitation 301!
/natural-catastrophes /natural-disasters 301!
/entries/land-cover /entries/land-use 301!
/public-spending /government-spending 301!
/about-coverage /about/coverage 301!
/renewables /renewable-energy 301!
/global-child-deaths-has-halved-since-1990 /global-child-deaths-have-halved-since-1990 301!
/what-are-PPPs /what-are-ppps 301!
/economic-convergence-between-countries /global-economic-inequality 301!
/designer-needed /jobs 301!
/researchers-join-us /researcher-job 301!
/entries/trashed/working-hours /working-hours 301!
/entries/trashed/maternal-mortality /maternal-mortality 301!
/donate-faq /donate/faq 301!
/support /donate 301!
/entries/trashed/trust /trust 301!
/entries/trashed/optimism-pessimism /optimism-pessimism 301!
/entries/trashed/life-expectancy /life-expectancy 301!
/entries/trashed/future-population-growth /future-population-growth 301!
/entries/trashed/food-per-person /food-per-person 301!
/entries/trashed/yields-and-land-use-in-agriculture /yields-and-land-use-in-agriculture 301!
/entries/trashed/employment-in-agriculture /employment-in-agriculture 301!
/entries/trashed/fertilizer-and-pesticides /fertilizer-and-pesticides 301!
/entries/trashed/food-prices /food-prices 301!
/entries/trashed/human-height /human-height 301!
/entries/trashed/health-meta /health-meta 301!
/entries/trashed/burden-of-disease /burden-of-disease 301!
/entries/trashed/malaria /malaria 301!
/entries/trashed/hiv-aids /hiv-aids 301!
/entries/trashed/cancer /cancer 301!
/entries/trashed/smoking /smoking 301!
/entries/trashed/suicide /suicide 301!
/entries/trashed/co2-and-other-greenhouse-gas-emissions /co2-and-other-greenhouse-gas-emissions 301!
/entries/trashed/indoor-air-pollution /indoor-air-pollution 301!
/entries/trashed/oil-spills /oil-spills 301!
/entries/trashed/technological-progress /technological-progress 301!
/entries/trashed/global-economic-inequality /global-economic-inequality 301!
/entries/trashed/economic-growth /economic-growth 301!
/entries/trashed/happiness-and-life-satisfaction /happiness-and-life-satisfaction 301!
/entries/trashed/human-development-index /human-development-index 301!
/entries/trashed/light /light 301!
/entries/trashed/financing-education /financing-education 301!
/entries/trashed/civil-wars /civil-wars 301!
/entries/trashed/genocides /genocides 301!
/entries/trashed/peacekeeping /peacekeeping 301!
/entries/trashed/military-spending /military-spending 301!
/entries/trashed/human-rights /human-rights 301!
/entries/trashed/homicides /homicides 301!
/entries/trashed/ethnographic-and-archaeological-evidence-on-violent-deaths /ethnographic-and-archaeological-evidence-on-violent-deaths 301!
/entries/trashed/quality-of-education /quality-of-education 301!
/entries/trashed/projections-of-future-education /projections-of-future-education 301!
/entries/trashed/tertiary-education /tertiary-education 301!
/entries/trashed/literacy /literacy 301!
/entries/trashed/books /books 301!
/about/audience-and-coverage /coverage 301!
/hiring-developer /jobs 301!
/we-are-hiring-do-you-want-to-join-our-team-as-a-web-developer /hiring-developer 301!
/about/why-are-we-working-on-our-world-in-data /motivation 301!
/about/coverage /coverage 301!
/about/media-coverage /coverage 301!
/about/owid-grapher /owid-grapher 301!
/media-coverage /coverage 301!
/yields-and-land-use-in-agriculture /crop-yields 301!
/water-use-sanitation /water-use-stress 301!
/about/how-to-use-our-world-in-data /how-to-use-our-world-in-data 301!
/about/how-we-chose-our-data-sources /how-we-chose-our-data-sources 301!
/about/list-of-all-data-entries /list-of-all-data-entries 301!
/donate/faq /donations-faq 301!
/donate/thank-you /thank-you 301!
/jobs/full-stack-developer /full-stack-developer 301!
/global-rise-of-education /global-education 301!
/meat-and-seafood-production-consumption /meat-production 301!
/meat-and-seafood-production-consumption /meat-production 301!
/grapher/life-expectancy-globally-since-1770 /grapher/life-expectancy?tab=chart&time=1770..2015&country=Africa+Asia+Europe+Latin%20America%20and%20the%20Caribbean+Northern%20America+OWID_WRL+Americas+Oceania 301!
/migration /grapher/international-migrant-stock 302!
/fertilizer-and-pesticides /fertilizer 301!
/how-many-children-did-a-woman-give-birth-to-that-died-before-their-5th-birthday /parents-losing-their-child 301!
/incomes-across-the-distribution /incomes-across-distribution 301!
/our-world-in-data-history /history-of-our-world-in-data 301!
/50-years-ago-the-average-woman-had-five-children-since-then-the-number-has-halved /global-fertility-has-halved 301!
/land-cover/ /land-use 301!
/null / 301!
/grapher/historys-hockey-stick-gross-domestic-product-per-capita-in-five-countries-10002015 /grapher/world-gdp-over-the-last-two-millennia 301!
/gdp-growth-over-the-very-long-run/#world-maps-of-gdp-per-capita-1-2008-max-roserref /grapher/world-gdp-over-the-last-two-millennia 301!
/grapher/prevalence-of-obesity-in-adults-by-region /grapher/share-of-adults-defined-as-obese 301!
/grapher/190 /grapher/the-price-for-lighting-per-million-lumen-hours-in-the-uk-in-british-pound?time=1301..2006 301!
/grapher/gdp-per-capita-TED?year=1963 /grapher/gdp-per-capita-in-us-dollar-world-bank?tab=chart&time=1960..2017 301!
/grapher/colonialism-and-imperialism /democracy 301!
/grapher/child-mortality-by-country /grapher/child-mortality-around-the-world?country=KEN 301!
/grapher/gdp-per-capita-over-the-long-run-MaddisonAndWorldBank /grapher/maddison-data-gdp-per-capita-in-2011us-single-benchmark 301!
/grapher/global-primary-energy-consumption-1800-2015 /grapher/global-primary-energy 301!
/worldpopulation-growth /world-population-growth 301!
/grapher/ / 301!
/grapher/population-of-women-in-the-reproductive-age-bracket-15-49 /uploads/2019/05/Population-momentum-1.png 301!
/grapher/population-of-women-in-the-reproductive-age-bracket-15-49 /uploads/2019/05/Population-momentum-1.png 301!
/grapher/adjusted-net-savings /grapher/adjusted-net-savings-per-person?time=1970..2015 301!
/data/war-peace/war-and-peace-before-1945/#global-war-deaths-between-1400-and-today-the-size-of-the-bubble-shows-the-percentage-of-world-population-killed-the-hague-centre-for-strategic-studiesref /uploads/2018/09/Bubble-and-lines-FINAL-03.png 301!
/grapher/foreign-direct-investment-net-inflows-of-gdp /grapher/foreign-direct-investment-net-inflows-as-share-of-gdp 301!
/grapher/historys-hockey-stick-gross-domestic-product-per-capita-in-five-countries-10002015-using-the-ratio-scale /grapher/maddison-data-gdp-per-capita-in-2011us-single-benchmark 301!
/grapher/79 /grapher/population-breakdown-by-highest-level-of-education-achieved-for-those-aged-15-in 301!
/grapher/31 /grapher/projections-of-the-rate-of-no-education-based-on-current-global-education-trends-1970-2050 301!
/data/violence-rights/homicides /homicides 301!
/auto-draft /diarrheal-diseases 301!
/grapher/political-regime-updated2016.csv /grapher/world-pop-by-political-regime 301!
/plastic-pollution. /plastic-pollution 301!
/colonialism/ /democracy 301!
/data/education-knowledge/literacy/ /literacy 301!
/urbanisation /urbanization 301!
/grapher /owid-grapher 301!
/data/media-communication/books/ /books 301!
/grapher/76 /grapher/correlation-between-oecd-pisa-reading-test-score-and-un-human-development-index-2012 301!
/grapher/74 /grapher/government-expenditure-on-primary-education-by-country 301!
/grapher/29 /grapher/oecd-pisa-test-scores-for-selected-countries-2000-2012 301!
/grapher/75 /grapher/pupil-teacher-ratio-for-primary-education-by-country 301!
/data/war-peace/war-and-peace-after-1945/ /war-and-peace 301!
/grapher/64 /grapher/life-expectancy 301!
/data/economic-development-work-standard-of-living/working-hours/ /grapher/work-hours-per-week?time=1870..2000 301!
/data/ /#entries 301!
/data/economic-development-work-standard-of-living/happiness-and-life-satisfaction/ /happiness-and-life-satisfaction 301!
/uploads/2016/12/World-as-100-people-2-centuries-1.png /uploads/2017/01/Two-centuries-World-as-100-people.png 301!
/colonialism#colonialism-in-africa /democracy 301!
/data/economic-development-work-standard-of-living/human-development-index/ /grapher/human-development-index 301!
/grapher/share-of-population-suffering-from-cancer-types /grapher/share-of-population-with-cancer-types 301!
/grapher/the-productivity-of-labour-in-producing-light-lumen-hours-per-hour-of-labour-100000-ago-to-the-present /grapher/the-price-for-lighting-per-million-lumen-hours-in-the-uk-in-british-pound?time=1301..2006 301!
/land-cover /land-use 301!
/colonialism /democracy 301!
/data/war-peace/war-and-peace-before-1945/ /war-and-peace 301!
/grapher/154 /grapher/political-regime 301!
/uploads/2017/12/Deaths-by-catastrophe-type.png /uploads/2019/11/Annual-deaths-by-natural-disaster.png 301!
/hdi /human-development-index 301!
/uploads/2019/11/How-much-of-GHGs-come-from-food-1.png /uploads/2019/11/How-much-of-GHGs-come-from-food.png 301!
/weve-just-updated-our-sustainable-development-goals-tracker /update-sdg-tracker-2019 301!
/antiretroviral-therapy-has-saved-millions-of-lives-from-aids-and-could-save-more /art-lives-saved 301!
/substance-use /drug-use 301!
/energy-production-and-changing-energy-sources /energy 301!
/economic-growth-does-not-matter-for-its-own-sake-but-it-matters-a-lot /maxexemplar 301!
/food-per-person /food-supply 301!
/fertilizer /fertilizers 301!
/grapher/land-use-per-gram-of-protein-by-food-type /grapher/land-use-protein-poore 301!
/grapher/greenhouse-gas-emissions-per-gram-of-protein-by-food-type /grapher/ghg-per-protein-poore 301!
/grapher/greenhouse-gas-emissions-per-kilocalorie-of-food-production /grapher/ghg-kcal-poore 301!
/uploads/2020/02/Carbon-footprint-of-protein-foods.png /uploads/2020/02/Carbon-footprint-of-protein-foods-2.png 301!
/what-is-the-safest-form-of-energy /safest-sources-of-energy 301!
/uploads/2020/02/Safest-sources-of-energy.png /uploads/2020/02/Safest-source-of-energy.png 301!
/the-spanish-flu-1918-20-the-global-impact-of-the-largest-influenza-pandemic-in-history /spanish-flu-largest-influenza-pandemic-in-history 301!
/coronavirus-disease-covid-19 /coronavirus 301!
/war-in-the-ukraine /ukraine-war 301!
/genocides /war-and-peace 301!
/covid-testing-10march /covid-testing 301!
/coronavirus-disease-covid-19-statistics-and-research /coronavirus-data 301!
/covid-testing-20march /covid-testing 301!
/coronavirus-testing-source-data /covid-testing 301!
/covid-testing /coronavirus-testing 301!
/coronavirus-country /coronavirus-country-by-country 301!
/coronavirus-pandemic-covid-19-in-new-zealand /coronavirus-new-zealand 301!
/coronavirus-pandemic-covid-19-in-sweden /coronavirus-sweden 301!
/coronavirus-pandemic-covid-19-in-mexico /coronavirus-mexico 301!
/comparison /coronavirus-country-comparisons 301!
/coronavirus-usa /coronavirus/country/united-states 301!
/coronavirus-uk /coronavirus/country/united-kingdom 301!
/the-coronavirus-pandemic-data-explorer /coronavirus-data-explorer 301!
/coronavirus-germany /coronavirus/country/germany 301!
/coronavirus-india /coronavirus/country/india 301!
/coronavirus-spain /coronavirus/country/spain 301!
/coronavirus-france /coronavirus/country/france 301!
/coronavirus-brazil /coronavirus/country/brazil 301!
/coronavirus-canada /coronavirus/country/canada 301!
/coronavirus-australia /coronavirus/country/australia 301!
/coronavirus-new-zealand /coronavirus/country/new-zealand 301!
/coronavirus-sweden /coronavirus/country/sweden 301!
/coronavirus-mexico /coronavirus/country/mexico 301!
/coronavirus-country-by-country /coronavirus#coronavirus-country-profiles 301!
/is-the-world-making-progress-against-the-pandemic-we-built-the-chart-to-answer-this-question /epi-curve-covid-19 301!
/coronavirus-max-version /coronavirus 301!
/coronavirus-country-comparisons /coronavirus#coronavirus-country-profiles 301!
/coronavirus/country-by-country /coronavirus#coronavirus-country-profiles 301!
/forests /forests-and-deforestation 301!
/exemplars-in-global-health-learning-from-the-most-successful-countries-in-the-world /exemplars-in-global-health 301!
/covid-vaccination /covid-vaccinations 301!
/covid /coronavirus 301!
/ghg-emissions /greenhouse-gas-emissions 301!
/local-data-on-the-covid-pandemic-in-the-uk /local-covid-uk 301!
/we-teamed-up-with-kurzgesagt-to-make-a-video-about-climate-change-is-it-too-late-to-stop-climate-change-well-its-complicated /kurzgesagt-climate-video 301!
/why-is-life-expectancy-in-the-us-lower-than-in-other-rich-countries /us-life-expectancy-low 301!
/supporters /funding 301!
/the-worlds-energy-problem-without-cheap-safe-low-carbon-energy-sources-at-a-large-scale-we-are-stuck-between-the-alternatives-of-high-greenhouse-gas-emissions-and-energy-poverty /worlds-energy-problem 301!
/deforestation#do-rich-countries-export-deforestation-to-other-countries /deforestation#do-rich-countries-import-deforestation-from-overseas 301!
/how-to-use-our-world-in-data /faqs 301!
/how-much-economic-growth-is-necessary-to-reduce-global-poverty-substantially /poverty-growth-needed-2 301!
/poverty-growth-needed-2 /poverty-minimum-growth-needed 301!
/our-organization /organization 301!
/motivation /why-are-we-working-on-our-world-in-data 301!
/biodiversity-across-the-world /biodiversity-and-wildlife 301!
/biodiversity-launch /biodiversity 301!
/coral-reefs-published /coral-reefs 301!
/covid-government-stringency-index /covid-stringency-index 301!
/yields-data-explorer /crop-yields 301!
/covid-vaccines-per-capita-gdp /covid-vaccinations-vs-gdp-per-capita 301!
/ops-officer-job /jobs 301!
/data-appendix-the-fight-against-global-poverty-200-years-of-progress-and-still-a-very-long-way-to-go /history-of-poverty-data-appendix-2 301!
/history-of-poverty-data-appendix-2 /history-of-poverty-data-appendix 301!
/covid-overview /coronavirus 301!
/climate-explorer-launch /explorers/climate-change 301!
/climate-change /explorers/climate-change 301!
/grapher/greenhouse-gas-emissions-by-sector /grapher/ghg-emissions-by-sector 301!
/grapher/ghg-emissions-by-sector-land-use-excluded /grapher/ghg-emissions-by-sector 301!
/fish /fish-and-overfishing 301!
/seafood-production /fish-and-overfishing 301!
/overfishing-launch /fish-and-overfishing 301!
/access-to-basic-education-almost-60-million-children-in-primary-school-age-are-not-in-school /children-not-in-school 301!
/co2-data-update-2021 /explorers/co2 301!
/fossil-fuel-subsidies-if-we-want-to-reduce-greenhouse-gas-emissions-we-should-not-pay-people-to-burn-fossil-fuels /fossil-fuel-subsidies 301!
/grapher/coal-exit /grapher/coal-phase-out-timeline 301!
/natural-disasters-explorer-launch /explorers/natural-disasters 301!
/a-number-of-countries-have-decoupled-economic-growth-from-energy-use-even-if-we-take-offshored-production-into-account /energy-gdp-decoupling 301!
/per-capita-energy-2 /per-capita-energy 301!
/causes-of-death-globally-what-do-people-die-from /causes-of-death-treemap 301!
/global-food-explorer-launch /explorers/global-food 301!
/explorers/ / 301!
/coronavirus/country/czechia /coronavirus/country/czech-republic 301!
/co2-by-fuel /emissions-by-fuel 301!
/co2 /co2-and-other-greenhouse-gas-emissions 301!
/cov /coronavirus 301!
/grapher/case-fatality-rate-of-covid-19-vs-total-covid-19-tests-per-million-people /explorers/coronavirus-data-explorer?zoomToSelection=true&time=2020-03-01..latest&facet=none&pickerSort=asc&pickerMetric=location&Metric=Case+fatality+rate&Interval=7-day+rolling+average&Relative+to+Population=true&Color+by+test+positivity=false&country=JPN~USA~GBR~ITA~DEU~FRA~CAN 301!
/coronavirus/country/cote-d'ivoire /coronavirus/country/cote-divoire 301!
/migration-flows-launch /explorers/migration-flows 301!
/fossil-fuels-explorer-launch /explorers/natural-resources 301!
/coronavirus/country /coronavirus#coronavirus-country-profiles 301!
/uploads/2018/09/Population-cartogram_World-2.png /world-population-cartogram 301!
/co2/country/ /co2-and-other-greenhouse-gas-emissions#co2-and-greenhouse-gas-emissions-country-profiles 301!
/how-to-our-world-in-data-guide /about 301!
/what-is-the-covid-19-stringency-index /metrics-explained-covid19-stringency-index 301!
/the-covid-19-pandemic-slide-deck /explorers/coronavirus-data-explorer 301!
/coronavirus-data /explorers/coronavirus-data-explorer 301!
/covid-19-project-charts /explorers/coronavirus-data-explorer 301!
/country-by-country / 301!
/energy/country/ /energy#country-profiles 301!
/grapher/rate-of-daily-new-confirmed-cases-of-covid-19-positive-rate /explorers/coronavirus-data-explorer?facet=none&Metric=Confirmed+cases&Interval=7-day+rolling+average&Relative+to+Population=false&Color+by+test+positivity=true&country=USA~ITA~CAN~DEU~GBR~FRA~JPN 301!
/grapher/covid-daily-deaths-trajectory-per-million /explorers/coronavirus-data-explorer?facet=none&Interval=7-day+rolling+average&Relative+to+Population=true&Color+by+test+positivity=false&country=USA~ITA~CAN~DEU~GBR~FRA~JPN&Metric=Confirmed+deaths 301!
/coronavirus/country/usa /coronavirus/country/united-states 301!
/global-food /explorers/global-food 301!
/grapher/covid-confirmed-daily-cases-epidemiological-trajectory /explorers/coronavirus-data-explorer?zoomToSelection=true&facet=none&pickerSort=asc&pickerMetric=location&hideControls=true&Metric=Confirmed+cases&Interval=7-day+rolling+average&Relative+to+Population=false&Color+by+test+positivity=false&country=GBR~USA~ESP~ITA~BRA~IND~KOR 301!
/grapher/daily-new-confirmed-cases-of-covid-19-positive-rate /explorers/coronavirus-data-explorer?facet=none&Interval=7-day+rolling+average&Relative+to+Population=false&Color+by+test+positivity=true&country=USA~ITA~CAN~DEU~GBR~FRA~JPN&Metric=Confirmed+cases 301!
/omicron /explorers/coronavirus-data-explorer?facet=none&Metric=Omicron+variant+%28share%29&Interval=7-day+rolling+average&Relative+to+Population=true&Color+by+test+positivity=false&country=USA~ITA~CAN~DEU~GBR~FRA~JPN 301!
/grapher/covid-daily-cases-trajectory-per-million /explorers/coronavirus-data-explorer?zoomToSelection=true&facet=none&pickerSort=asc&pickerMetric=location&hideControls=true&Interval=7-day+rolling+average&Relative+to+Population=true&Color+by+test+positivity=false&country=GBR~USA~ESP~ITA~BRA~IND~KOR&Metric=Confirmed+cases 301!
/data/owid-covid-data.json https://github.com/owid/covid-19-data/tree/master/public/data 301!
/us-states-cases /us-states-vaccinations 301!
/grapher/greenhouse-gas-emissions-by-gas /explorers/co2?facet=none&country=CHN~USA~IND~GBR~OWID_WRL&Gas=All+GHGs+%28CO%E2%82%82eq%29&Accounting=Production-based&Fuel=Total&Count=Per+capita 301!
/what-is-childhood-wasting /wasting-definition 301!
/homelessness-rise-england /homelessness 301!
/new-literacy-dataset /literacy 301!
/the-new-oecd-global-revenue-statistics-database /taxation 301!
/mental-health-new-entry-now-online /mental-health 301!
/poverty-home-production-and-consumption /extreme-history-methods 301!
/what-is-obesity-and-how-is-it-measured /obesity-definition 301!
/grapher/number-of-tests-per-confirmed-case-vs-case-fatality-rate /explorers/coronavirus-data-explorer?zoomToSelection=true&time=2020-03-01..latest&facet=none&pickerSort=asc&pickerMetric=location&Metric=Case+fatality+rate&Interval=7-day+rolling+average&Relative+to+Population=true&Color+by+test+positivity=false&country=JPN~USA~GBR~ITA~DEU~FRA~CAN 301!
/grapher/case-fatality-rate-of-covid-19-vs-median-age /explorers/coronavirus-data-explorer?zoomToSelection=true&time=2020-03-01..latest&facet=none&pickerSort=asc&pickerMetric=location&Metric=Case+fatality+rate&Interval=7-day+rolling+average&Relative+to+Population=true&Color+by+test+positivity=false&country=JPN~USA~GBR~ITA~DEU~FRA~CAN 301!
/grapher/case-fatality-rate-vs-tests-per-confirmed-case /explorers/coronavirus-data-explorer?zoomToSelection=true&time=2020-03-01..latest&facet=none&pickerSort=asc&pickerMetric=location&Metric=Case+fatality+rate&Interval=7-day+rolling+average&Relative+to+Population=true&Color+by+test+positivity=false&country=JPN~USA~GBR~ITA~DEU~FRA~CAN 301!
/grapher/deaths-covid-19-vs-case-fatality-rate /explorers/coronavirus-data-explorer?zoomToSelection=true&time=2020-03-01..latest&facet=none&pickerSort=asc&pickerMetric=location&Metric=Case+fatality+rate&Interval=7-day+rolling+average&Relative+to+Population=true&Color+by+test+positivity=false&country=JPN~USA~GBR~ITA~DEU~FRA~CAN 301!
/grapher/cfr-vs-covid-cases-per-capita /explorers/coronavirus-data-explorer?zoomToSelection=true&time=2020-03-01..latest&facet=none&pickerSort=asc&pickerMetric=location&Metric=Case+fatality+rate&Interval=7-day+rolling+average&Relative+to+Population=true&Color+by+test+positivity=false&country=JPN~USA~GBR~ITA~DEU~FRA~CAN 301!
/migration /explorers/migration 301!
/migration-data-explorer-launch /explorers/migration 301!
/grapher/share-of-a-countrys-population-that-is-not-born-within-the-country /explorers/migration?facet=none&Metric=Number+of+emigrants&Period=Total&Sub-metric=Per+capita+%2F+Share+of+population 301!
/grapher/international-migrant-stock-total /explorers/migration?facet=none&Metric=Number+of+international+immigrants&Period=Total&Sub-metric=Total 301!
/grapher/international-migrant-stock /explorers/migration?facet=none&Metric=Number+of+international+immigrants&Period=Total&Sub-metric=Total 301!
/grapher/net-migration /explorers/migration?facet=none&Metric=Net+migration+number&Period=Total&Sub-metric=Total 301!
/grapher/personal-remittances-received-of-gdp /explorers/migration?facet=none&Metric=Remittances+received+%28%25+of+GDP%29&Period=Total&Sub-metric=Total 301!
/grapher/personal-remittances-received /explorers/migration?facet=none&Metric=Remittances+received+%28%25+of+GDP%29&Period=Total&Sub-metric=Total 301!
/grapher/personal-remittances-paid /explorers/migration?facet=none&Metric=Remittances+received+%28%25+of+GDP%29&Period=Total&Sub-metric=Total 301!
/migration-sources /migration-definition 301!
/fossil-fuels-explorer-launch /explorers/natural-resources 301!
/how-long-before-we-run-out-of-fossil-fuels /fossil-fuels 301!
/educational-mobility-inequality /global-education#what-has-been-the-evolution-of-gender-inequalities-in-education 301!
/covid-testing-us-uk-korea-italy /coronavirus-testing 301!
/grapher/covid-19-death-rate-vs-population-density /covid-deaths 301!
/civil-wars /war-and-peace 301!
/grapher/covid-tests-cases-deaths /explorers/coronavirus-data-explorer?zoomToSelection=true&time=2020-03-01..latest&uniformYAxis=0&pickerSort=asc&pickerMetric=location&Metric=Vaccine+doses%2C+cases%2C+ICU+patients%2C+and+deaths&Interval=7-day+rolling+average&Relative+to+Population=true&Color+by+test+positivity=false&country=USA~GBR~CAN~DEU~ITA~IND 301!
/grapher/daily-covid-cases-per-million-three-day-avg /explorers/coronavirus-data-explorer?zoomToSelection=true&time=2020-03-01..latest&facet=none&pickerSort=asc&pickerMetric=location&Metric=Confirmed+cases&Interval=7-day+rolling+average&Relative+to+Population=true&Color+by+test+positivity=false&country=USA~GBR~CAN~DEU~ITA~IND 301!
/daily-per-capita-caloric-supply /grapher/daily-per-capita-caloric-supply 301!
/covid-mortality-risk /mortality-risk-covid 301!
/vaccination-israel-impact /explorers/coronavirus-data-explorer?zoomToSelection%3Dtrue%26time%3D2020-03-01..latest%26uniformYAxis%3D0%26pickerSort%3Dasc%26pickerMetric%3Dlocation%26Metric%3DVaccine%2Bdoses%252C%2Bpeople%2Bvaccinated%252C%2Band%2Bbooster%2Bdoses%26Interval%3D7-day%2Brolling%2Baverage%26Relative%2Bto%2BPopulation%3Dtrue%26Color%2Bby%2Btest%2Bpositivity%3Dfalse%26country%3D~ISR&sa=D&source=editors&ust=1647448629401250&usg=AOvVaw3vY3cmOR795-5Y7WlEmQ0C 301!
/returns-to-education /financing-education#why-do-governments-finance-education 301!
/grapher/main-religion-of-the-country-in / 301!
/materialism-and-post-materialism / 301!
/measuring-poverty-globally /extreme-poverty 301!
/projections-of-future-education /global-education 301!
/pertussis /health-meta 301!
/technological-progress /technological-change 301!
/covid-vaccinations) /covid-vaccinations 301!
/migration-flows /explorers/migration-flows 301!
/list-of-all-data-entries / 301!
/grapher/map-of-genocides-and-politicides-around-the-world /war-and-peace 301!
/human-development-index/country-by-country-perspective-over-the-last-three-decades /human-development-index#country-by-country-perspective-over-the-last-three-decades 301!
/grapher/weekly-death-growth-rate-vs-daily-death-rate /coronavirus 301!
/grapher/co2-concentration-long-term /explorers/climate-change?facet=none&country=~OWID_WRL&Metric=CO%E2%82%82+concentrations&Long-run+series%3F=true 301!
/grapher/global-co-concentration-ppm /explorers/climate-change?time=1..2018&facet=none&country=~OWID_WRL&Metric=CO%E2%82%82+concentrations&Long-run+series%3F=true&hideControls=true 301!
/grapher/n2o-concentration-long /explorers/climate-change?facet=none&country=~OWID_WRL&Metric=N%E2%82%82O+concentrations&Long-run+series%3F=true 301!
/grapher/ch4-concentration-long /explorers/climate-change?facet=none&country=~OWID_WRL&Metric=CH₄+concentrations&Long-run+series%3F=true 301!
/grapher/monthly-atm-n2o /explorers/climate-change?facet=none&country=~OWID_WRL&Metric=N₂O+concentrations&Long-run+series%3F=false 301!
/grapher/monthly-atm-co2 /explorers/climate-change?facet=none&country=~OWID_WRL&Metric=CO₂+concentrations&Long-run+series%3F=false 301!
/grapher/monthly-atm-ch4 /explorers/climate-change?facet=none&country=~OWID_WRL&Metric=CH₄+concentrations&Long-run+series%3F=false 301!
/grapher/snow-cover /explorers/climate-change?facet=none&Metric=Snow+cover&Long-run+series%3F=false&country=OWID_WRL~ATA~Gulkana+Glacier~Lemon+Creek+Glacier~North+America~South+Cascade+Glacier~Wolverine+Glacier 301!
/grapher/annual-sea-surface-temp-anomaly /explorers/climate-change?facet=none&Metric=Sea+surface+temperature+anomaly&Long-run+series%3F=false&country=OWID_WRL~ATA~Gulkana+Glacier~Lemon+Creek+Glacier~North+America~South+Cascade+Glacier~Wolverine+Glacier 301!
/grapher/ocean-heat-2000m /explorers/climate-change?facet=none&Metric=Ocean+heat+content+%28top+2000m%29&Long-run+series%3F=false&country=OWID_WRL~ATA~Gulkana+Glacier~Lemon+Creek+Glacier~North+America~South+Cascade+Glacier~Wolverine+Glacier 301!
/grapher/arctic-minimum-sea-ice-extent /explorers/climate-change?facet=none&Metric=Arctic+sea+ice+minimum&Long-run+series%3F=false&country=OWID_WRL~ATA~Gulkana+Glacier~Lemon+Creek+Glacier~North+America~South+Cascade+Glacier~Wolverine+Glacier 301!
/grapher/cumulative-change-land-ice /explorers/climate-change?facet=none&Metric=Mass+balance+of+ice+sheets&Long-run+series%3F=false&country=OWID_WRL~ATA~Gulkana+Glacier~Lemon+Creek+Glacier~North+America~South+Cascade+Glacier~Wolverine+Glacier 301!
/grapher/mean-seawater-ph /explorers/climate-change?facet=none&Metric=Ocean+pH&Long-run+series%3F=false&country=OWID_WRL~ATA~Gulkana+Glacier~Lemon+Creek+Glacier~North+America~South+Cascade+Glacier~Wolverine+Glacier 301!
/grapher/global-monthly-temperature-anomaly /explorers/climate-change?facet=none&Metric=Temperature+anomaly&Long-run+series%3F=false&country=OWID_WRL~ATA~Gulkana+Glacier~Lemon+Creek+Glacier~North+America~South+Cascade+Glacier~Wolverine+Glacier 301!
/grapher/sea-level-rise /explorers/climate-change?facet=none&Metric=Sea+level+rise&Long-run+series%3F=false&country=OWID_WRL~ATA~Gulkana+Glacier~Lemon+Creek+Glacier~North+America~South+Cascade+Glacier~Wolverine+Glacier 301!
/grapher/antarctic-sea-ice-extent /explorers/climate-change?facet=none&Metric=Antarctic+sea+ice+extent&Long-run+series%3F=false&country=OWID_WRL~ATA~Gulkana+Glacier~Lemon+Creek+Glacier~North+America~South+Cascade+Glacier~Wolverine+Glacier 301!
/grapher/ocean-heat-700m /explorers/climate-change?facet=none&Metric=Ocean+heat+content+%28top+700m%29&Long-run+series%3F=false&country=OWID_WRL~ATA~Gulkana+Glacier~Lemon+Creek+Glacier~North+America~South+Cascade+Glacier~Wolverine+Glacier 301!
/grapher/mass-balance-us-glaciers /explorers/climate-change?facet=none&Metric=Mass+balance+of+U.S.+Glaciers&Long-run+series%3F=false&country=OWID_WRL~ATA~Gulkana+Glacier~Lemon+Creek+Glacier~North+America~South+Cascade+Glacier~Wolverine+Glacier 301!
/primary-secondary-final-and-useful-energy-why-are-there-different-ways-of-measuring-energy /energy-definitions 301!
/grapher/various-measures-of-health-expenditure-as-share-of-gdp /financing-healthcare 301!
/the-expansion-of-healthcare-evidence-from-a-newly-assembled-dataset /financing-healthcare#history-of-healthcare-spending 301!
/electricity-update-2021 /explorers/energy?facet=none&country=USA~GBR~CHN~OWID_WRL~IND~BRA~ZAF&Total+or+Breakdown=Select+a+source&Energy+or+Electricity=Electricity+only&Metric=Annual+generation 301!
/ipcc-scenarios /explorers/ipcc-scenarios 301!
/grapher/covid-stringency-index /explorers/coronavirus-data-explorer?uniformYAxis=0&hideControls=true&Metric=Stringency+index&Interval=7-day+rolling+average&Relative+to+Population=true&Color+by+test+positivity=false&country=USA~ITA~CAN~DEU~GBR~FRA 301!
/polio-update-2022 /polio 301!
/grapher/confirmed-covid-19-deaths-total-vs-daily /explorers/coronavirus-data-explorer?facet=none&Metric=Confirmed+deaths&Interval=7-day+rolling+average&Relative+to+Population=true&Color+by+test+positivity=false&country=USA~ITA~CAN~DEU~GBR~FRA~JPN 301!
/data-analyst /data-scientist 301!
/monkeypox-data-launch /explorers/monkeypox 301!
/peak-agricultural-land-2 /peak-agriculture-land 301!
/health-inequality /health-meta 301!
/roush-and-murphy-2007-data /vaccination#progress-against-vaccine-preventable-diseases-in-the-us 301!
/shrink-emissions-not-the-economy-2 /shrink-emissions-not-the-economy 301!
/grapher/economic-freedom / 301!
/head-of-product /head-of-product-and-design 301!
/grapher/correlation-between-internet-usage-and-mean-years-of-schooling-2014 /grapher/correlation-between-internet-usage-and-mean-years-of-schooling 302!
/grapher/correlation-between-child-mortality-and-mean-years-of-schooling-for-those-aged-15-and-older-2000 /grapher/correlation-between-child-mortality-and-mean-years-of-schooling-for-those-aged-15-and-older 302!
/grapher/public-expenditure-on-education-as-share-of-national-gdp /grapher/public-education-expenditure-as-share-of-gdp 302!
/grapher/education-expenditure-as-share-of-gdp /grapher/public-education-expenditure-as-share-of-gdp 302!
/grapher/us-education-expenditure-as-share-of-gdp-public-and-private /grapher/us-education-expenditure-as-share-of-gdp-public-and-private-institutions 302!
/grapher/revenues-for-public-schools-by-source-us /grapher/revenues-for-public-schools-by-source-gdp-us 302!
/grapher/real-gdp-per-capita-in-2005-us- /grapher/real-gdp-per-capita-PWT 302!
/grapher/sum-of-exports-and-imports-as-share-of-gdp-1950-2011 /grapher/trade-openness 302!
/grapher/share-manufacture-exports_ERROR /grapher/share-manufacture-exports 302!
/grapher/breakdown-of-united-nations-peacekeeping-forces-around-the-world-1992-2014 /grapher/breakdown-of-united-nations-peacekeeping-forces 302!
/grapher/child-mortality-by-cause /grapher/global-child-deaths-by-cause 302!
/grapher/global-child-mortality-by-cause /grapher/global-child-deaths-by-cause 302!
/grapher/total-number-of-people-experiencing-rough-sleeping /grapher/number-of-unsheltered-homeless-people 302!
/grapher/people-experiencing-rough-sleeping-per-100000 /grapher/number-of-unsheltered-homeless-people-per-100000-population 302!
/grapher/total-number-of-unsheltered-homeless-people-per-100000 /grapher/number-of-unsheltered-homeless-people-per-100000-population 302!
/grapher/people-experiencing-homelessness-per-100000-oecd-circa-2013 /grapher/number-of-homeless-people-per-100000-population-circa-2013 302!
/grapher/total-number-of-unsheltered-homeless-people /grapher/number-of-unsheltered-homeless-people 302!
/grapher/number-of-unsheltered-homeless-people-per-100000 /grapher/number-of-unsheltered-homeless-people-per-100000-population 302!
/grapher/number-of-homeless-people-per-100000-circa-2013 /grapher/number-of-homeless-people-per-100000-population-circa-2013 302!
/grapher/extreme-poverty-rate-vs-extreme-poverty-gap /grapher/poverty-headcount-rate-vs-poverty-gap 302!
/grapher/poverty-headcount-rate-vs-poverty-gap-index /grapher/poverty-headcount-rate-vs-poverty-gap 302!
/grapher/poverty-headcount-rate-vs-poverty-gap-index-2013 /grapher/poverty-headcount-rate-vs-poverty-gap 302!
/grapher/price-level-ratio-of-ppp-conversion-factor-gdp-to-market-exchange-rate /grapher/gdp-price-levels-relative-to-the-us 302!
/grapher/gdp-per-capita-ppp-adjusted-vs-us-market-exchange /grapher/gdp-per-capita-in-international-and-market-dollars 302!
/grapher/gdp-per-capita-ppp-int--and-the-price-level-ratio-of-ppp-conversion-factor-gdp-to-market-exchange-rate /grapher/gdp-per-capita-in-international-dollars-vs-price-levels-relative-to-us 302!
/grapher/population-living-in-extreme-poverty-by-world-region /grapher/total-population-living-in-extreme-poverty-by-world-region 302!
/grapher/share-of-the-world-population-living-in-absolute-poverty /grapher/share-of-the-world-population-living-in-extreme-poverty 302!
/grapher/labor-productivity-per-hour-TED /grapher/labor-productivity-per-hour-PennWorldTable 302!
/grapher/so2-emissions-million-tonnes-by-country /grapher/so-emissions-tonnes-per-year 302!
/grapher/weekly-hours-dedicated-to-home-production-in-the-usa-by-gender-and-demographic-group /grapher/weekly-hours-dedicated-to-home-production-in-the-usa-by-women 302!
/grapher/weekly-hours-dedicated-to-home-production-in-the-usa-by-employment-and-marital-status /grapher/weekly-hours-dedicated-to-home-production-in-the-usa-by-women 302!
/grapher/death-rate-vs-gdp /grapher/outdoor-pollution-rate-vs-gdp 302!
/grapher/disability-adjusted-life-years-daly-number-from-ambient-pm25-air-pollution /grapher/dalys-particulate-matter 302!
/grapher/weekly-hours-dedicated-to-home-production-in-the-usa-by-demographic-group /grapher/weekly-hours-dedicated-to-home-production-in-the-usa-by-women 302!
/grapher/weekly-hours-dedicated-to-home-production-in-the-usa-by-men /grapher/weekly-hours-dedicated-to-home-production-in-the-usa-by-gender 302!
/grapher/productivity-vs-work-hours /grapher/productivity-vs-annual-hours-worked 302!
/grapher/disability-adjusted-life-years-dalys-lost-from-ambient-pm25-air-pollution /grapher/dalys-particulate-matter 302!
/grapher/age-standardised-death-rate-from-ambient-pm25-air-pollution-per-100000 /grapher/death-rates-from-ambient-particulate-air-pollution 302!
/grapher/age-standardized-death-rate-from-pm25-pollution-per-100000-vs-gdp-per-capita-int- /grapher/outdoor-pollution-rate-vs-gdp 302!
/grapher/death-rate-from-particulate-pollution-per-100000-vs-gdp-per-capita-int- /grapher/outdoor-pollution-rate-vs-gdp 302!
/grapher/tax-reduction-in-inequality /grapher/tax-reduction-in-income-inequality 302!
/grapher/co2-emissions-by-source-million-tonnes /grapher/CO2-by-source 302!
/grapher/co2-emissions-million-tonnes-co2 /grapher/annual-co2-emissions-per-country 302!
/grapher/co2-emissions-per-capita-tonnes-per-year /grapher/co-emissions-per-capita 302!
/grapher/solar-pv-prices-2016-int--per-watt /grapher/solar-pv-prices 302!
/grapher/solar-pv-cumulative-capacity-mw /grapher/solar-pv-cumulative-capacity 302!
/grapher/co2-intensity-of-economies-kgco2-per-unit-gdp /grapher/co2-intensity 302!
/grapher/cumulative-co2-million-tonnes /grapher/cumulative-co-emissions 302!
/grapher/co2-emissions-per-year-gtco2year /grapher/annual-co-emissions-by-region 302!
/grapher/average-meat-consumption-per-person-kgyear /grapher/meat-supply-per-person 302!
/grapher/per-capita-energy-use-vs-share-of-population-in-extreme-poverty /grapher/energy-use-per-capita-vs-share-of-population-in-extreme-poverty 302!
/grapher/co2-emissions-per-capita-vs-the-share-of-people-living-in-poverty /grapher/co-emissions-per-capita-vs-the-share-of-people-living-in-extreme-poverty 302!
/grapher/installed-renewable-energy-capacity-by-technology /grapher/installed-global-renewable-energy-capacity-by-technology 302!
/grapher/annual-co2-emissions /grapher/annual-co2-emissions-per-country 302!
/grapher/co2-emissions-per-capita-vs-gdp-per-capita-ppp-international- /grapher/co2-emissions-vs-gdp 302!
/grapher/carbon-intensity-of-economies /grapher/co2-intensity 302!
/grapher/annual-co2-emissions-per-countryy /grapher/annual-co2-emissions-per-country 302!
/grapher/annual-co2-emissions-by-region /grapher/annual-co-emissions-by-region 302!
/grapher/cumulative-co2-emissions /grapher/cumulative-co-emissions 302!
/grapher/co2-emissions-per-capita /grapher/co-emissions-per-capita 302!
/grapher/so2-emissions-per-capita-tonnes-per-year /grapher/so-emissions-per-capita-tonnes-per-year 302!
/grapher/so2-emissions-million-tonnes-per-year /grapher/so-emissions-tonnes-per-year 302!
/grapher/so2-emissions-by-world-region-in-million-tonnes /grapher/so-emissions-by-world-region-in-million-tonnes 302!
/grapher/happiness-vs-child-mortality /grapher/life-satisfaction-vs-child-mortality 302!
/grapher/co2-emissions-per-capita-vs-the-share-of-people-living-in-extreme-poverty /grapher/co-emissions-per-capita-vs-the-share-of-people-living-in-extreme-poverty 302!
/grapher/global-co2-emissions-if-everyone-lived-like-the-average-citizen-in /grapher/global-co-emissions-if-everyone-lived-like-the-average-citizen-in 302!
/grapher/fish-and-seafood-consumption-vs-gdp-per-capita-ppp-int- /grapher/fish-consumption-vs-gdp-per-capita 302!
/grapher/co-emissions-per-capita-vs-gdp-per-capita-ppp-international- /grapher/co2-emissions-vs-gdp 302!
/grapher/social-expenditure-gdp-comparing-different-original-series /grapher/various-measures-of-social-expenditure-as-share-of-gdp 302!
/grapher/nuclear-and-renewables-as-share-electricity-production /grapher/nuclear-renewables-electricity 302!
/grapher/world-region /grapher/continents-according-to-our-world-in-data 302!
/grapher/solar-pv-through-time /grapher/solar-pv-prices-vs-cumulative-capacity 302!
/grapher/healthcare-expenditure-per-capita /grapher/annual-healthcare-expenditure-per-capita 302!
/grapher/labor-productivity-in-agriculture-gdpworker /grapher/agriculture-value-added-per-worker-wdi 302!
/grapher/the-health-burden-due-to-communicable-diseases-vs-gdp-per-capita /grapher/disease-burden-to-communicable-diseases-vs-gdp 302!
/grapher/life-expectancy-vs-health-expenditure-over-time /grapher/life-expectancy-vs-health-expenditure 302!
/grapher/renewable-electricity-electricity-production /grapher/share-of-electricity-production-from-renewable-sources 302!
/grapher/the-decline-of-child-mortality-by-HAQ-endpoints /grapher/HAQ-by-level-of-healthcare-spending-endpoints 302!
/grapher/global-carbon-budget-for-a-2c-world /grapher/global-carbon-budget-for-a-two-degree-world 302!
/grapher/population-growth-rate-by-world-regions-1955-2015-and-projections-through-2100 /grapher/population-growth-rate-by-level-of-development 302!
/grapher/population-growth-rate-by-world-region-1955-2015-projections-2020-2100 /grapher/population-growth-rate-by-level-of-development 302!
/grapher/population-growth-rate-by-world-region-1955-2015-and-projection-for-2020-2100 /grapher/population-growth-rate-by-level-of-development 302!
/grapher/population-growth-rate-by-world-region-1955-2015-and-projections-for-2020-2100 /grapher/population-growth-rate-by-level-of-development 302!
/grapher/the-decline-of-child-mortality-vs-share-of-vaccinated-children /grapher/child-mortality-vs-share-of-children-immunized-against-diphtheria-pertussis-and-tetanus 302!
/grapher/child-mortality-vs-share-of-vaccinated-children /grapher/child-mortality-vs-share-of-children-immunized-against-diphtheria-pertussis-and-tetanus 302!
/grapher/co2-emissions-embedded-in-trade-as-a-share-of-domestic-emissions /grapher/share-co2-embedded-in-trade 302!
/grapher/co-emissions-embedded-in-trade-as-a-share-of-domestic-emissions /grapher/share-co2-embedded-in-trade 302!
/grapher/the-decline-of-child-mortality-by-level-of-prosperity-regression /grapher/child-mortality-byvs-level-of-prosperity-regression 302!
/grapher/fertilizer-vs-crop-yield /grapher/cereal-crop-yield-vs-fertilizer-application 302!
/grapher/number-of-human-genome-base-pairs-sequenced-per-million-us /grapher/number-of-human-genome-base-pairs-sequenced-per-us 302!
/grapher/fertility-vs-level-of-prosperity /grapher/children-per-woman-fertility-rate-vs-level-of-prosperity 302!
/grapher/children-per-woman-fertility-vs-level-of-prosperity-1955-2010 /grapher/children-per-woman-fertility-rate-vs-level-of-prosperity 302!
/grapher/cost-per-megabase-pairs-mb-of-human-genome-dna-sequencing /grapher/cost-per-megabase-mb-of-human-genome-dna-sequencing 302!
/grapher/fisheries-and-aquaculture-production /grapher/capture-fisheries-vs-aquaculture 302!
/grapher/wild-fisheries-vs-aquaculture-farmed-fish-production /grapher/capture-fisheries-vs-aquaculture 302!
/grapher/number-of-deaths-from-natural-catastrophes /grapher/number-of-deaths-from-natural-disasters 302!
/grapher/public-support-for-continued-nuclear-energy-builds /grapher/public-opposition-to-nuclear-energy-production 302!
/grapher/public-opposition-continued-nuclear-energy-builds /grapher/public-opposition-to-nuclear-energy-production 302!
/grapher/how-many-deaths-does-it-take-to-receive-news-coverage /grapher/how-many-deaths-does-it-take-for-a-disaster-to-receive-news-coverage 302!
/grapher/cereal-production--test-only /grapher/index-of-cereal-production-yield-and-land-use 302!
/grapher/daily-per-capita-protein-availability-1961-2013 /grapher/daily-per-capita-protein-supply 302!
/grapher/share-of-men-who-are-underweight-healthy-overweight-and-obese-1975-2014 /grapher/men-weight-categories 302!
/grapher/global-share-of-women-defined-as-underweight-healthy-overweight-or-obese-1975-2014 /grapher/share-of-women-defined-as-underweight-healthy-overweight-or-obese 302!
/grapher/global-share-of-men-defined-as-underweight-healthy-overweight-and-obese-1975-2014 /grapher/men-weight-categories 302!
/grapher/tax-revenue-and-public-health-spending-in-developing-countries-per-capita-ppp-in /grapher/tax-revenue-per-capita-and-public-health-spending-per-capita-in-developing-countries-in 302!
/grapher/access-to-electricity-of-population /grapher/share-of-the-population-with-access-to-electricity 302!
/grapher/cereal-yield-vs-land-under-cereal-production /grapher/change-of-cereal-yield-vs-land-used 302!
/grapher/index-of-cereal-yield-vs-land-used-for-cereal-production-1961-2014 /grapher/change-of-cereal-yield-vs-land-used 302!
/grapher/prevalence-of-night-blindness-in-children /grapher/prevalence-of-night-blindness-in-pre-school-children 302!
/grapher/share-of-land-area-used-for-permanent-meadows-and-pastures-1961-2014 /grapher/area-meadows-and-pastures 302!
/grapher/incidence-of-hiv-among-uninfected-population-ages-15-49 /grapher/incidence-of-hiv-the-share-of-new-infections-among-the-previously-uninfected-population-ages-15-49 302!
/grapher/global-hunger-index-vs /grapher/global-hunger-index-vs-extreme-poverty 302!
/grapher/continents-according-to-our-worldin-data /grapher/continents-according-to-our-world-in-data 302!
/grapher/global-share-of-men-defined-as-underweight-healthy-overweight-and-obese /grapher/men-weight-categories 302!
/grapher/global-share-of-women-defined-as-underweight-healthy-overweight-or-obese /grapher/share-of-women-defined-as-underweight-healthy-overweight-or-obese 302!
/grapher/dietary-land-use-vs-per-capita-beef-consumption /grapher/dietary-land-use-vs-beef-consumption 302!
/grapher/number-of-airliner-hijackings-and-fatalities-1942-2014 /grapher/number-of-airliner-hijackings-and-fatalities 302!
/grapher/global-map-of-tomato-yields /grapher/tomato-yields 302!
/grapher/global-map-of-cocoa-bean-yields /grapher/cocoa-bean-yields 302!
/grapher/global-map-of-maize-yields /grapher/maize-yields 302!
/grapher/global-map-of-rapeseed-yields /grapher/rapeseed-yields 302!
/grapher/global-map-of-sugar-cane-yields /grapher/sugar-cane-yields 302!
/grapher/global-map-of-soybean-yields /grapher/soybean-yields 302!
/grapher/global-map-of-potato-yields /grapher/potato-yields 302!
/grapher/global-map-of-wheat-yields /grapher/wheat-yields 302!
/grapher/global-map-of-rice-yields /grapher/rice-yields 302!
/grapher/government-expenditure-on-primary-education-by-country-1974-2014 /grapher/government-expenditure-on-primary-education-by-country 302!
/grapher/pupil-teacher-ratio-for-primary-education-by-country-1970-2014 /grapher/pupil-teacher-ratio-for-primary-education-by-country 302!
/grapher/population-breakdown-by-highest-level-of-education-achieved-for-those-aged-15-in-1970-2050 /grapher/population-breakdown-by-highest-level-of-education-achieved-for-those-aged-15-in 302!
/grapher/projections-of-the-share-of-the-population-aged-15-educated-to-degree-level-by-country-1970-2050 /grapher/projections-of-the-share-of-the-population-aged-15-educated-to-degree-level-by-country 302!
/grapher/number-of-nuclear-warheads-in-the-inventory-of-the-nuclear-powers-1945-2014 /grapher/nuclear-warhead-stockpiles 302!
/grapher/reported-cases-of-measles-1980-2014 /grapher/reported-cases-of-measles 302!
/grapher/wages-in-the-manufacturing-sector-vs-several-food-prices-usa-1901-2002 /grapher/wages-in-the-manufacturing-sector-vs-several-food-prices-usa 302!
/grapher/future-population-projections-by-country-1970-2100 /grapher/future-population-projections-by-country 302!
/grapher/the-price-for-lighting-per-million-lumen-hours-in-the-uk-in-british-pound-1300-2006 /grapher/the-price-for-lighting-per-million-lumen-hours-in-the-uk-in-british-pound 302!
/grapher/global-land-spared-from-cereal-yield-improvements /grapher/cereal-land-spared 302!
/grapher/child-mortality-by-world-region /grapher/child-mortality-around-the-world 302!
/grapher/long-term-crop-yields-in-the-united-kingdom /grapher/cereal-yields-uk 302!
/grapher/yields-change-vs-land-use-change /grapher/land-use-vs-yield-change-in-cereal-production 302!
/grapher/human-height-over-the-long-run-europe /grapher/human-heights-over-the-long-run 302!
/grapher/world-population-and-projected-growth-to-2100-by-age-group /grapher/world-population-and-projected-growth-to-2100-total-population-and-under-age-5 302!
/grapher/child-mortality-by-gender /grapher/child-mortality-by-sex 302!
/grapher/child-mortality-line-chart-by-gender /grapher/child-mortality-line-chart-by-sex 302!
/grapher/daily-per-capita-caloric-supply-1961-2013 /grapher/daily-per-capita-caloric-supply 302!
/grapher/daily-per-capita-protein-supply-1961-2013 /grapher/daily-per-capita-protein-supply 302!
/grapher/mean-versus-median-monthly-per-capita-expenditure-in-2011-ppp-int- /grapher/mean-versus-median-monthly-per-capita-expenditure-or-income 302!
/grapher/mean-versus-median-monthly-per-capita-expenditure-or-income-in-international-dollar /grapher/mean-versus-median-monthly-per-capita-expenditure-or-income 302!
/grapher/share-of-habitable-land-needed-for-agriculture-vs-gdp-per-capita /grapher/dietary-land-use-vs-gdp-per-capita 302!
/grapher/aquaculture-production-by-region-1960-2015 /grapher/aquaculture-farmed-fish-production 302!
/grapher/total-fertility-rate /grapher/children-born-per-woman 302!
/grapher/public-health-insurance-coverage2 /grapher/public-health-insurance-coverage 302!
/grapher/correlation-between-internet-users-as-a-share-of-the-population-and-gdp-per-capita-2014 /grapher/correlation-between-internet-users-as-a-share-of-the-population-and-gdp-per-capita 302!
/grapher/child-mortality-rate-vs-population-growth-1970-2015 /grapher/child-mortality-rate-vs-population-growth 302!
/grapher/oil-gas-employees-vs-rig-count-in-the-united-states-1975-2017 /grapher/oil-gas-employees-vs-rig-count-in-the-united-states 302!
/grapher/children-per-woman-fertility-rate-vs-level-of-prosperity-1955-2010 /grapher/children-per-woman-fertility-rate-vs-level-of-prosperity 302!
/grapher/domestic-cereal-allocation-distribution-to-food-feed-and-other-uses-tonnes-per-year /grapher/cereal-distribution-to-uses 302!
/grapher/vegetable-consumption-per-capita-kgyear /grapher/vegetable-consumption-per-capita 302!
/grapher/fruit-consumption-per-capita-kgyear /grapher/fruit-consumption-per-capita 302!
/grapher/land-cover-distribution-thousand-hectares /grapher/land-use 302!
/grapher/annual-food-expenditure-per-person-vs-gdp-per-capita-2015 /grapher/annual-food-expenditure-per-person-vs-gdp-per-capita 302!
/grapher/fertility-vs-human-development-index /grapher/children-per-woman-vs-human-development-index 302!
/grapher/output-of-key-service-sectors-in-england-and-the-uk /grapher/output-of-key-service-and-industrial-sectors-in-england-and-the-uk 302!
/grapher/polio-vaccine-coverage /grapher/polio-vaccine-coverage-of-one-year-olds 302!
/grapher/pesticide-breakdown-by-country /grapher/pesticide-breakdown-by-type 302!
/grapher/global-demand-for-education-world-population-and-projected-growth-to-2100-by-age-group-by-WittgensteinCentre /grapher/global-demand-for-education-growth-to-2100-of-under-15-by-WittgensteinCentre 302!
/grapher/phosphate-fertilizer-production-by-region /grapher/phosphate-fertilizer-production 302!
/grapher/phosphate-fertilizer-consumption-by-region /grapher/phosphate-fertilizer-consumption 302!
/grapher/global-nitrogen-fertilizer-production-by-region /grapher/nitrogen-fertilizer-production 302!
/grapher/share-of-consumer-expenditure-spent-on-food-vs-gdp-per-capita-2015 /grapher/share-of-consumer-expenditure-spent-on-food-vs-gdp-per-capita 302!
/grapher/food-expenditure-per-person-per-year-2015 /grapher/food-expenditure-per-person-per-year 302!
/grapher/share-of-consumer-expenditure-spent-on-food-2015 /grapher/share-of-consumer-expenditure-spent-on-food 302!
/grapher/daily-per-capita-fat-supply-1961-2013 /grapher/daily-per-capita-fat-supply 302!
/grapher/the-demographic-transition-in-england-and-wales /grapher/the-demographic-transition 302!
/grapher/government-revenues-national-income-us /grapher/government-revenues-national-income 302!
/grapher/so-emissions /grapher/so2-emissions 302!
/grapher/domestic-cereal-distribution-to-food-animal-feed-and-other-uses-tonnes-per-year /grapher/cereal-distribution-to-uses 302!
/grapher/global-warming-potential-of-greenhouse-gases-over-100-year-timescale /grapher/global-warming-potential-of-greenhouse-gases-over-100-year-timescale-gwp 302!
/grapher/last-recorded-case-of-polio /grapher/the-decade-of-the-last-recorded-case-of-paralytic-polio-by-country 302!
/grapher/demand-for-education-in-africa-population-younger-than-15-until-2100-according-to-wittgenstein-centres-with-different-educational-scenarios-based-on-ssp2 /grapher/projections-of-the-population-younger-than-15-in-africa-by-education-scenario 302!
/grapher/total-fertility-rate-by-region-1955-2015-and-projections-through-2100 /grapher/total-fertility-rate-by-development-level-including-UN-projections-through-2100 302!
/grapher/average-weekly-hours-worked-women-15 /grapher/average-usual-weekly-hours-worked-women-15-years-and-older 302!
/grapher/number-of-polio-cases-who-2017 /grapher/the-number-of-reported-paralytic-polio-cases 302!
/grapher/female-labor-force-participation-by-national-per-capita-income-levels /grapher/female-labor-force-participation-rates-by-national-per-capita-income 302!
/grapher/crop-production-over-the-long-term /grapher/crop-production-in-england-over-the-long-term-million-tonnes 302!
/grapher/crop-production-over-the-long-term-england /grapher/crop-production-in-england-over-the-long-term-million-tonnes 302!
/grapher/female-labor-force-participation-by-national-per-capita-income /grapher/female-labor-force-participation-rates-by-national-per-capita-income 302!
/grapher/female-labor-force-participation-2015-vs-1980 /grapher/female-labor-force-participation-rates-latest-vs-1980 302!
/grapher/female-labor-force-participation-rates-2015-vs-1980 /grapher/female-labor-force-participation-rates-latest-vs-1980 302!
/grapher/long-term-energy-transitions-in-europe-and-the-americas /grapher/long-term-energy-transitions 302!
/grapher/family-benefits-public-spending-vs-female-labor-force-participation-rate /grapher/female-labor-force-participation-rates-by-family-benefits-public-spending 302!
/grapher/child-dependency-ratio-the-ration-between-under-19-year-olds-and-20-to-69-year-olds /grapher/child-dependency-ratio-the-ratio-between-under-19-year-olds-and-20-to-69-year-olds 302!
/grapher/women-can-do-the-same-job-as-men-1yes-0no /grapher/are-non-pregnant-and-non-nursing-women-allowed-to-do-the-same-jobs-as-men 302!
/grapher/can-non-pregnant-and-non-nursing-women-do-the-same-jobs-as-men /grapher/are-non-pregnant-and-non-nursing-women-allowed-to-do-the-same-jobs-as-men 302!
/grapher/total-alcohol-consumption-per-capita-liters-of-pure-alcohol-projected-estimates-15-years-of-age /grapher/total-alcohol-consumption-per-capita-litres-of-pure-alcohol 302!
/grapher/number-of-people-who-are-undernourished /grapher/global-population-defined-as-undernourished 302!
/grapher/children-out-of-school-vs-hours-worked-by-children /grapher/working-children-out-of-school-ages-7-14-vs-hours-worked-by-children-ages-7-14 302!
/grapher/number-of-people-who-are-undernourished-world /grapher/global-population-defined-as-undernourished 302!
/grapher/number-of-people-undernourished-and-with-adquate-caloric-intake /grapher/number-of-people-defined-as-undernourished 302!
/grapher/book-titles-per-capita /grapher/new-books-per-million 302!
/grapher/children-in-employment-vs-weekly-hours-worked-by-children /grapher/children-in-employment-ages-7-14-vs-weekly-hours-worked-by-children-ages-7-14 302!
/grapher/children-in-employment-vs-weekly-hours-worked-by-children-7-14 /grapher/children-in-employment-ages-7-14-vs-weekly-hours-worked-by-children-ages-7-14 302!
/grapher/working-children-out-of-school-vs-hours-worked-by-children /grapher/working-children-out-of-school-ages-7-14-vs-hours-worked-by-children-ages-7-14 302!
/grapher/the-gender-parity-index-gpi-for-the-youth-literacy-rate /grapher/ratio-of-the-literacy-rate-between-young-women-and-men 302!
/grapher/ratio-of-female-youth-literacy-rate-to-male-youth-literacy-rate /grapher/ratio-of-the-literacy-rate-between-young-women-and-men 302!
/grapher/incidence-of-violent-discipline-vs-gdp-per-capita /grapher/children-who-experience-violent-discipline-vs-gdp-per-capita 302!
/grapher/sexual-violence-prevalence-among-girls-15-to-19 /grapher/percentage-of-girls-15-to-19-who-report-having-been-victims-of-sexual-abuse 302!
/grapher/share-of-girls-15-19-who-have-ever-been-been-victims-of-sexual-abuse /grapher/percentage-of-girls-15-to-19-who-report-having-been-victims-of-sexual-abuse 302!
/grapher/percentage-of-girls-15-to-19-who-ever-experienced-sexual-abuse /grapher/percentage-of-girls-15-to-19-who-report-having-been-victims-of-sexual-abuse 302!
/grapher/percentage-of-girls-15-to-19-who-have-ever-experienced-sexual-abuse /grapher/percentage-of-girls-15-to-19-who-report-having-been-victims-of-sexual-abuse 302!
/grapher/egg-yield-per-bird-100-milligrams-per-animal /grapher/egg-yield-per-bird 302!
/grapher/average-usual-weekly-hours-worked-women-15 /grapher/average-usual-weekly-hours-worked-women-15-years-and-older 302!
/grapher/absolute-difference-in-population-estimates-un-vsus-census-bureau /grapher/absolute-difference-in-global-population-estimates-un-vs-us-census-bureau 302!
/grapher/absolute-difference-in-population-estimates-un-vs-us-census-bureau /grapher/absolute-difference-in-global-population-estimates-un-vs-us-census-bureau 302!
/grapher/employment-in-the-coal-industry-in-the-united-kingdom-1853-2016 /grapher/employment-in-the-coal-industry-in-the-united-kingdom 302!
/grapher/coal-production-per-worker-in-the-united-kingdom-1873-2016 /grapher/coal-output-per-worker-in-the-united-kingdom 302!
/grapher/approve-of-wife-working-if-husband-can-support /grapher/what-percentage-of-the-us-public-approves-of-working-wives 302!
/grapher/does-the-us-public-approve-of-working-wives /grapher/what-percentage-of-the-us-public-approves-of-working-wives 302!
/grapher/what-percentage-of-the-us-public-approve-of-working-wives /grapher/what-percentage-of-the-us-public-approves-of-working-wives 302!
/grapher/world-region-according-to-the-world-bank /grapher/world-regions-according-to-the-world-bank 302!
/grapher/government-expenditure-on-tertiary-education-by-country-1983-2014 /grapher/government-expenditure-on-tertiary-education-by-country 302!
/grapher/share-of-population-age-15-with-completed-tertiary-education /grapher/share-of-the-population-with-completed-tertiary-education 302!
/grapher/share-of-the-population-with-secondary-education /grapher/share-of-the-population-with-secondary-education-but-no-tertiary-education 302!
/grapher/surface-temperature-anomaly /grapher/surface-temperature-anomaly-gistemp 302!
/grapher/prevalence-of-polio-in-the-united-states-1910-2010 /grapher/reported-paralytic-polio-cases-and-deaths-in-the-united-states-since-1910 302!
/grapher/global-land-cover /grapher/global-land-use-by-total-surface-area 302!
/grapher/sum-of-exports-and-imports-as-share-of-gdp-for-seven-largest-european-economies-1815-1993 /grapher/trade-openness-in-europe 302!
/grapher/share-enrolled-in-private-institutions-at-the-primary-education-level /grapher/share-enrolled-in-private-institutions-at-the-pre-primary-education-level 302!
/grapher/global-number-of-parties-in-multilateral-environmental-agreements /grapher/number-of-parties-env-agreements 302!
/grapher/number-of-parties-in-multilateral-environmental-agreements /grapher/number-of-parties-env-agreements 302!
/grapher/food-waste-in-supply-chains-united-kingdom /grapher/food-waste-in-supply-chains 302!
/grapher/coal-consumption-1965-2016 /grapher/coal-consumption-by-region 302!
/grapher/global-fossil-fuel-consumption-1800-2015 /grapher/global-fossil-fuel-consumption 302!
/grapher/crude-oil-prices-1861-2015 /grapher/crude-oil-prices 302!
/grapher/contraceptive-prevalence-modern-methods-of-women-ages-15-49 /grapher/share-of-women-using-modern-contraceptive-methods 302!
/grapher/coal-consumption-terrawatt-hours-twh /grapher/coal-consumption-by-region 302!
/grapher/coal-production-terrawatt-hours-twh /grapher/coal-production-by-region 302!
/grapher/coal-production-by-region-terrawatt-hours-twh /grapher/coal-production-by-region 302!
/grapher/oil-production-terrawatt-hours-twh /grapher/oil-production-by-region 302!
/grapher/oil-consumption-terrawatt-hours-twh /grapher/oil-consumption-by-region-terawatt-hours-twh 302!
/grapher/natural-gas-production-terrawatt-hours-twh /grapher/natural-gas-production-by-region-terawatt-hours-twh 302!
/grapher/gas-consumption-terra-watt-hours-twh /grapher/natural-gas-consumption-by-region 302!
/grapher/natural-gas-consumption-by-region-terrawatt-hours-twh /grapher/natural-gas-consumption-by-region 302!
/grapher/coal-consumption-per-capita-megawatt-hours-per-person /grapher/coal-consumption-per-capita 302!
/grapher/coal-consumption-per-capita-megawatt-hours-per-year /grapher/coal-consumption-per-capita 302!
/grapher/oil-consumption-per-capita-megawatt-hours-per-year /grapher/oil-consumption-per-capita 302!
/grapher/biofuels-production-by-region-terrawatt-hours-per-year /grapher/biofuels-production-by-region 302!
/grapher/solar-energy-consumption-vs-solar-energy-capacity /grapher/solar-pv-energy-consumption-vs-solar-pv-capacity 302!
/grapher/the-number-of-reported-polio-cases-by-world-region /grapher/the-number-of-reported-paralytic-polio-cases-by-world-region 302!
/grapher/the-number-of-reported-polio-cases /grapher/the-number-of-reported-paralytic-polio-cases 302!
/grapher/reported-polio-cases-per-1-million-population /grapher/reported-paralytic-polio-cases-per-1-million-people 302!
/grapher/polio-cases-and-deaths-due-to-polio-in-the-united-states-since-1910 /grapher/reported-paralytic-polio-cases-and-deaths-in-the-united-states-since-1910 302!
/grapher/the-decade-of-the-last-recorded-case-of-polio-by-country /grapher/the-decade-of-the-last-recorded-case-of-paralytic-polio-by-country 302!
/grapher/percentage-of-women-20-24-who-married-before-18 /grapher/percentage-of-women-20-24-who-were-married-or-in-union-before-18 302!
/grapher/death-rate-by-source-from-air-pollution-per-100000 /grapher/death-rate-by-source-from-air-pollution 302!
/grapher/death-rate-by-source-from-indoor-air-pollution-per-100000 /grapher/death-rate-by-source-from-indoor-air-pollution 302!
/grapher/pm25-air-pollution-mean-annual-exposure-micrograms-per-cubic-meter /grapher/PM25-air-pollution 302!
/grapher/PM2.5-air-pollution /grapher/PM25-air-pollution 302!
/grapher/percentage-of-children-214-who-experience-violent-discipline /grapher/percentage-of-children-214-who-experience-violent-discipline-at-home 302!
/grapher/total-alcohol-consumption-per-capita-liters-of-pure-alcohol /grapher/total-alcohol-consumption-per-capita-litres-of-pure-alcohol 302!
/grapher/world-population-with-and-without-haber-bosch-nitrogen /grapher/world-population-with-and-without-fertilizer 302!
/grapher/age-standardized-death-rate-from-cardiovascular-diseases /grapher/age-standardized-death-rate-cardiovascular-disease 302!
/grapher/incidence-of-managerial-or-professional-jobs-and-collective-bargaining-by-gender-blau-kahn-2017 /grapher/the-shrinking-gender-gap-in-high-level-jobs-and-collective-barganing-coverage 302!
/grapher/unadjusted-female-male-hourly-wage-ratios-by-percentile-blau-kahn-2017 /grapher/the-gender-wage-ratio-in-different-income-percentiles 302!
/grapher/women-are-overrepresented-in-low-wage-occupations /grapher/us-women-are-overrepresented-in-low-wage-occupations 302!
/grapher/total-damage-costs-from-global-natural-disasters /grapher/damage-costs-from-natural-disasters 302!
/grapher/students-who-cant-read-a-single-word /grapher/students-in-grade-2-who-cant-read-a-single-word-ca-2015 302!
/grapher/annual-freshwater-withdrawals-total-of-internal-resources /grapher/freshwater-withdrawals-as-a-share-of-internal-resources 302!
/grapher/students-in-grade-2-who-cant-read-a-single-word /grapher/students-in-grade-2-who-cant-read-a-single-word-ca-2015 302!
/grapher/global-demand-for-education-world-population-and-projected-growth-to-2100-by-age-group-in-thousands-of-people /grapher/global-demand-for-education-world-population-and-projected-growth-to-2100-by-age-group 302!
/grapher/number-of-teachers /grapher/number-of-teachers-across-education-levels 302!
/grapher/total-number-of-teachers-across-education-levels /grapher/number-of-teachers-across-education-levels 302!
/grapher/wealth-per-capita-by-asset-type---world-bank-2017 /grapher/total-wealth-per-capita-by-asset 302!
/grapher/total-wealth /grapher/total-wealth-per-capita-by-income-groups-in-2014-us-dollars 302!
/grapher/measures-of-national-savinginvestment-compared-to-gdp /grapher/various-measures-of-national-savinginvestment-compared-to-gdp-per-capita-in-international-dollars 302!
/grapher/various-measures-of-national-savinginvestment-compared-to-gdp /grapher/various-measures-of-national-savinginvestment-compared-to-gdp-per-capita-in-international-dollars 302!
/grapher/genuine-saving-1900-2000 /grapher/genuine-savings-per-capita-in-international-dollars-1900-2000 302!
/grapher/genuine-saving-in-per-capita-1990-international-dollars-1900-2000 /grapher/genuine-savings-per-capita-in-international-dollars-1900-2000 302!
/grapher/various-measures-of-national-savinginvestment-compared-to-gdp-in-per-capita-international-dollars /grapher/various-measures-of-national-savinginvestment-compared-to-gdp-per-capita-in-international-dollars 302!
/grapher/genuine-saving-in-per-capita-international-dollars-1900-2000 /grapher/genuine-savings-per-capita-in-international-dollars-1900-2000 302!
/grapher/genuine-saving-per-capita-in-international-dollars-1900-2000 /grapher/genuine-savings-per-capita-in-international-dollars-1900-2000 302!
/grapher/total-wealth-per-capita-by-income /grapher/total-wealth-per-capita-by-income-groups-in-2014-us-dollars 302!
/grapher/total-wealth-per-capita-by-income-in-2014-us-dollars /grapher/total-wealth-per-capita-by-income-groups-in-2014-us-dollars 302!
/grapher/wealth-per-capita-by-asset-group-with-natural-capital-disaggregated /grapher/wealth-per-capita-by-asset-group-with-natural-capital-disaggregated-in-2014-us-dollars 302!
/grapher/total-wealth-by-asset-group-in-billions-2014-us-dollars /grapher/total-wealth-by-asset-group-in-millions-2014-us-dollars 302!
/grapher/time-required-to-start-a-business-days /grapher/time-required-to-start-business 302!
/grapher/share-of-individuals-using-the-internet-1990-2015 /grapher/share-of-individuals-using-the-internet 302!
/grapher/percentage-of-firms-with-a-top-female-manager /grapher/share-firms-top-female-manager 302!
/grapher/proportion-of-seats-held-by-women-in-national-parliaments /grapher/seats-held-by-women-in-national-parliaments 302!
/grapher/evolution-of-happiness-inequality-within-countries /grapher/evolution-of-happiness-inequality-within-countries-during-periods-of-uninterrupted-economic-growth 302!
/grapher/evolution-of-happiness-inequality-within-countries-with-uninterrupted-economic-growth /grapher/evolution-of-happiness-inequality-within-countries-during-periods-of-uninterrupted-economic-growth 302!
/grapher/revenue-excluding-grants-of-gdp /grapher/total-government-revenue-of-gdp 302!
/grapher/tax-revenue-of-gdp /grapher/proportion-of-domestic-budget-funded-by-domestic-taxes-of-gdp 302!
/grapher/proportion-of-women-aged-1549-years-who-make-their-own-informed-decisions-for-their-own-health-care /grapher/proportion-of-women-who-make-their-own-informed-health-care-decisions 302!
/grapher/world-bank-gender-statistics---gender /grapher/law-mandate-nondiscrimination-hiring 302!
/grapher/legislation-explicitly-criminalises-marital-rape-1yes-0no /grapher/does-legislation-explicitly-criminalize-marital-rape 302!
/grapher/law-mandates-paid-or-unpaid-maternity-leave-1yes-0no /grapher/does-law-mandate-paid-or-unpaid-maternity-leave 302!
/grapher/share-of-children-ages-13-15-who-report-being-bullied-last-month /grapher/share-of-children-ages-13-15-who-report-being-bullied 302!
/grapher/children-ages-13-15-who-report-being-in-a-school-fight-last-year /grapher/share-of-children-ages-13-15-who-report-being-in-a-school-fight-last-year 302!
/grapher/deaths-from-road-accidents-per-100000 /grapher/death-rates-road-incidents 302!
/grapher/staff-compensation-as-share-of-total-expenditure-in-primary-public-education /grapher/gdp-per-capita-vs-staff-compensation-as-share-of-total-expenditure-in-primary-public-education 302!
/grapher/all-staff-compensation-as-of-total-expenditure-in-primary-public-institutions /grapher/staff-compensation-share-primary-spending 302!
/grapher/sdg-4-indicators-by-available-sources /grapher/data-availability-for-indicators-in-the-sdg-4 302!
/grapher/sdg-4-indicators-by-sources-available /grapher/data-availability-for-indicators-in-the-sdg-4 302!
/grapher/exports-of-goods-and-services-of-gdp-vs-poverty-headcount-at-190-a-day-2011-ppp-world-bank-wdi-2015 /grapher/poverty-headcount-ratio-at-190-by-exports-share-in-gdp 302!
/grapher/poverty-headcount-at-190-a-day-2011-ppp-world-bank-wdi-2015-vs-exports-of-goods-and-services-of-gdp /grapher/poverty-headcount-ratio-at-190-by-exports-share-in-gdp 302!
/grapher/poverty-headcount-ratio-at-190-a-day-2011-ppp-by-country-income-group-and-region-world-bank-wdi-2017-vs-exports-of-goods-and-services-of-gdp /grapher/poverty-headcount-ratio-at-190-by-exports-share-in-gdp 302!
/grapher/law-mandates-nondiscrimination-based-on-gender-in-hiring-1yes-0no /grapher/law-mandate-nondiscrimination-hiring 302!
/grapher/married-men-and-married-women-have-equal-ownership-rights-to-property-1yes-0no /grapher/gender-rights-to-property 302!
/grapher/married-women-are-required-by-law-to-obey-their-husbands-1yes-0no /grapher/women-required-to-obey-husband 302!
/grapher/nondiscrimination-clause-mentions-gender-in-the-constitution-1yes-0no /grapher/nondiscrimination-clause-gender 302!
/grapher/womans-testimony-carries-the-same-evidentiary-weight-in-court-as-a-mans-1yes-0no /grapher/testimony-weight-gender 302!
/grapher/percentage-of-students-achieving-minimum-proficiency-in-reading /grapher/share-of-students-at-end-of-lower-secondary-education-achieving-minimum-reading-proficiency-2010-2015 302!
/grapher/share-of-students-in-early-primary-education-achieving-minimum-maths-proficiency-2010-2015 /grapher/share-of-students-in-early-primary-education-achieving-minimum-reading-proficiency-2010-2015 302!
/grapher/world-population-and-projected-growth-to-2100-by-age-group-in-thousands-of-people /grapher/world-population-and-projected-growth-to-2100-total-population-and-under-age-5 302!
/grapher/diarrheal-disease-death-rates-by-age-per-100000 /grapher/diarrheal-disease-death-rates-by-age 302!
/grapher/annual-meat-consumption-per-person /grapher/meat-supply-per-person 302!
/grapher/deaths-from-hivaids-by-age-group /grapher/deaths-from-hiv-by-age 302!
/grapher/number-of-patents-filed-for-renewable-energy-technologies /grapher/patents-filed-for-renewables 302!
/grapher/parents-who-favor-spanking-to-discipline-a-child /grapher/parents-who-agree-with-spanking-to-discipline-a-child 302!
/grapher/all-staff-compensation-as-share-of-total-expenditure-in-public-institutions /grapher/staff-compensation-as-share-of-total-expenditure-in-public-education-all-levels 302!
/grapher/fish-and-seafood-consumption-vs-gdp-per-capita-int- /grapher/fish-consumption-vs-gdp-per-capita 302!
/grapher/number-of-fatal-airliner-accidents-and-hijacking-incidents /grapher/fatal-airliner-accidents 302!
/grapher/the-change-of-cereal-yield-vs-the-change-of-land-used-for-cereal-production-1961-2014 /grapher/change-of-cereal-yield-vs-land-used 302!
/grapher/gender-gap-in-average-wages /grapher/gender-gap-in-average-wages-ilo 302!
/grapher/the-gender-wage-gap /grapher/gender-wage-gap-oecd 302!
/grapher/domestic-cereal-distribution-to-food-animal-feed-and-other-uses /grapher/cereal-distribution-to-uses 302!
/grapher/number-of-people-severely-food-insecure-by-region /grapher/number-of-severely-food-insecure-people-by-region 302!
/grapher/number-of-people-requiring-treatment-for-neglected-tropical-diseases /grapher/number-of-people-requiring-interventions-for-neglected-tropical-diseases 302!
/grapher/historical-real-gdp-per-capita-in-2011us /grapher/maddison-data-gdp-per-capita-in-2011us 302!
/grapher/share-of-out-of-pocket-expenditure-on-healthcare-by-country /grapher/share-of-out-of-pocket-expenditure-on-healthcare 302!
/grapher/share-of-women-ages-15-49-using-modern-contraceptive-methods /grapher/share-of-women-using-modern-contraceptive-methods 302!
/grapher/fire-deaths-by-age-group /grapher/fire-deaths-by-age 302!
/grapher/have-countries-completed-a-population-census-in-last-10-years /grapher/completeness-population-census 302!
/grapher/deaths-from-mental-and-substance-abuse-disorders /grapher/deaths-from-substance-use-disorders 302!
/grapher/annual-deaths-from-mental-and-substance-abuse-disorders /grapher/annual-deaths-from-mental-and-substance-use-disorders 302!
/grapher/disability-adjusted-life-years-depressive-disorders /grapher/depression-daly-rates-by-age 302!
/grapher/disability-adjusted-life-years-depressive-disorders-age-std-rate /grapher/dalys-depression-age-std-rate 302!
/grapher/deaths-from-smallpox-in-sweden-1774-1843 /grapher/deaths-from-smallpox-per-1000-population 302!
/grapher/deaths-from-smallpox-per-1-million-population /grapher/deaths-from-smallpox-per-1000-population 302!
/grapher/annual-number-of-reported-cases-of-guinea-worm-disease /grapher/global-number-of-reported-guinea-worm-cases 302!
/grapher/countries-that-adopt-and-implement-guarantees-for-public-access-to-information /grapher/countries-that-adopt-guarantees-for-public-access-to-information 302!
/grapher/countries-with-national-human-rights-institutions-in-compliance-with-the-paris-principles /grapher/countries-in-compliance-with-paris-principles 302!
/grapher/progress-in-multistakeholder-monitoring-frameoworks /grapher/progress-in-multistakeholder-monitoring-frameworks 302!
/grapher/annual-number-of-deaths-by-cause-percent /grapher/share-of-deaths-by-cause 302!
/grapher/annual-deaths-by-cause-percent-2016 /grapher/share-of-deaths-by-cause 302!
/grapher/share-suffering-from-depressive-disorders /grapher/share-with-depression 302!
/grapher/disease-burden-from-non-communicable-diseases /grapher/disease-burden-from-ncds 302!
/grapher/health-burden-due-to-communicable-diseases-vs-gdp-per-capita /grapher/disease-burden-to-communicable-diseases-vs-gdp 302!
/grapher/smoking-consumption-per-person-per-day /grapher/consumption-per-smoker-per-day-bounds 302!
/grapher/daily-smoking-prevalence-for-men-and-women-of-all-age /grapher/daily-smoking-prevalence 302!
/grapher/daily-smoking-prevalence-for-both-women-and-men-of-all-ages /grapher/daily-smoking-prevalence-bounds 302!
/grapher/number-of-daily-smokers /grapher/number-of-daily-smokers-gender 302!
/grapher/number-suffering-from-depression-by-country /grapher/number-with-depression-by-country 302!
/grapher/share-suffering-from-depression /grapher/share-with-depression 302!
/grapher/number-suffering-from-an-eating-disorder-country /grapher/number-with-eating-disorder-country 302!
/grapher/number-suffering-from-alcohol-use-disorders-country /grapher/number-with-alcohol-use-disorders-country 302!
/grapher/number-suffering-from-anorexia-and-bulimia-nervosa /grapher/number-with-anorexia-and-bulimia-nervosa 302!
/grapher/number-of-people-suffering-from-depression /grapher/number-of-people-with-depression 302!
/grapher/number-suffering-from-drug-disorders-by-substance /grapher/number-with-drug-disorders-by-substance 302!
/grapher/number-suffering-from-schizophrenia /grapher/number-with-schizophrenia 302!
/grapher/number-suffering-from-bipolar-disorder-country /grapher/number-with-bipolar-disorder-country 302!
/grapher/number-suffering-from-anxiety-disorders-country /grapher/number-with-anxiety-disorders-country 302!
/grapher/number-suffering-from-anxiety-disorders /grapher/number-with-anxiety-disorders 302!
/grapher/number-suffering-from-drug-use-disorders-country /grapher/number-with-drug-use-disorders-country 302!
/grapher/number-suffering-from-drug-use-disorders /grapher/number-with-drug-use-disorders 302!
/grapher/share-of-population-suffering-from-schizophrenia /grapher/share-with-schizophrenia 302!
/grapher/number-suffering-from-alcohol-use-disorders /grapher/number-with-alcohol-use-disorders 302!
/grapher/share-suffering-from-bipolar-disorder /grapher/share-with-bipolar-disorder 302!
/grapher/share-suffering-from-anxiety-disorders /grapher/share-with-anxiety-disorders 302!
/grapher/share-suffering-from-drug-use-disorders /grapher/share-with-drug-use-disorders 302!
/grapher/share-suffering-from-alcohol-use-disorders /grapher/share-with-alcohol-use-disorders 302!
/grapher/number-suffering-from-alcohol-disorders-by-region /grapher/number-with-alcohol-disorders-by-region 302!
/grapher/number-suffering-from-mental-and-substance-use-disorders /grapher/number-with-mental-and-substance-use-disorders 302!
/grapher/number-suffering-from-mental-and-substance-disorders-by-type /grapher/number-with-mental-and-neurodevelopmental-disorders-by-type 302!
/grapher/share-suffering-from-mental-and-substance-disorders /grapher/share-with-mental-and-substance-disorders 302!
/grapher/share-suffering-from-mental-or-substance-disorders-males-vs-females /grapher/share-with-mental-or-substance-disorders-by-sex 302!
/grapher/number-with-mental-and-substance-disorders-by-type /grapher/number-with-mental-and-neurodevelopmental-disorders-by-type 302!
/grapher/drinking-water-services-coverage /grapher/drinking-water-services-coverage-urban 302!
/grapher/drinking-water-service-coverage-in-urban-areas /grapher/drinking-water-service-coverage 302!
/grapher/deaths-from-mental-and-substance-use-disorders /grapher/deaths-from-substance-use-disorders 302!
/grapher/age-standardized-prevalence-of-autism /grapher/prevalence-of-autistic-spectrum 302!
/grapher/number-of-reported-road-accidents /grapher/number-of-reported-road-incidents 302!
/grapher/road-accident-deaths-by-age /grapher/road-incident-deaths-by-age 302!
/grapher/death-rates-road-accidents /grapher/death-rates-road-incidents 302!
/grapher/econimpact15vs2c-felixpretis /grapher/econimpact2vs15c 302!
/grapher/participation-of-women-in-purchase-decisions-daily-vs-major-household-purchases /grapher/participation-of-women-in-purchase-decisions 302!
/grapher/econimpact2c-felixpretis /grapher/econimpact2c 302!
/grapher/econimpact2vs15c-felixpretis /grapher/econimpact2vs15c 302!