-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIndiaEcoData.csv
We can't make this file beautiful and searchable because it's too large.
1576 lines (1576 loc) · 615 KB
/
IndiaEcoData.csv
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
Country_Name,Indicator_Name,Indicator_Code,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017
India,GDP deflator: linked series (base year varies by country),NY.GDP.DEFL.ZS.AD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24.6375013,28.02560587,30.53814414,33.5497496,36.89802963,40.24198819,43.29032615,46.0939251,49.78612572,51.31376097,53.18413225,54.89432972,56.93402943,59.13612273,62.52190618,65.17091664,69.35657372,73.34890697,79.70434429,84.53747968,92.13217431,99.99999886,107.9343862,114.6117514,118.1090159,120.2181946,124.5602214,
India,GDP deflator (base year varies by country),NY.GDP.DEFL.ZS,2.572712841,2.627908534,2.743684112,2.972881163,3.227112357,3.494974604,3.958782427,4.299879226,4.403737802,4.550970802,4.622068047,4.868185824,5.395877825,6.357947498,7.417659398,7.295365816,7.731764338,8.167621625,8.368568176,9.684780194,10.79933577,11.9686427,12.93760763,14.04414305,15.1568932,16.24724758,17.35033828,18.96875932,20.53036535,22.26247303,24.6375013,28.02560587,30.53814414,33.5497496,36.89802963,40.24198819,43.29032615,46.0939251,49.78612572,51.31376097,53.18413225,54.89432972,56.93402943,59.13612273,62.52190618,65.17091664,69.35657372,73.34890697,79.70434429,84.53747968,92.13217431,99.99999886,107.9343862,114.6117514,118.1090159,120.2181946,124.5602214,
India,"Inflation, GDP deflator: linked series (annual %)",NY.GDP.DEFL.KD.ZG.AD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.66830385,13.75181894,8.965152361,9.861782853,9.980044775,9.062702221,7.575018289,6.476271263,8.010167524,3.06839552,3.644970161,3.215616018,3.715683776,3.867798086,5.72540656,4.236931692,6.422584341,5.756243466,8.664665347,6.063829304,8.983819558,8.539714396,7.934387478,6.186504001,3.051401319,1.785789761,3.611788437,
India,"Inflation, GDP deflator (annual %)",NY.GDP.DEFL.KD.ZG,,2.145427651,4.405616738,8.353623885,8.551676945,8.300369429,13.27070654,8.616204724,2.415383574,3.343364348,1.562243485,5.324841054,10.83960269,17.82971564,16.66751573,-1.648681546,5.981859337,5.637229334,2.460282323,15.72804321,11.50832081,10.82758198,8.095863095,8.552859606,7.923232849,7.193785443,6.789400455,9.327893304,8.232515365,8.436808873,10.66830385,13.75181894,8.965152361,9.861782853,9.980044775,9.062702221,7.575018289,6.476271263,8.010167524,3.06839552,3.644970161,3.215616018,3.715683776,3.867798086,5.72540656,4.236931692,6.422584341,5.756243466,8.664665347,6.063829304,8.983819558,8.539714396,7.934387478,6.186504001,3.051401319,1.785789761,3.611788437,
India,Coal rents (% of GDP),NY.GDP.COAL.RT.ZS,,,,,,,,,,,,0.211281442,0.230733236,0.242067638,0.461858476,1.154862733,1.200317061,1.042675185,0.818438733,0.742623977,0.904011549,1.412081081,1.534820917,0.959783664,0.863028034,0.86361202,0.663303541,0.407327615,0.516623001,0.680267395,0.753043472,0.953913502,0.821449063,0.586248269,0.541924718,0.822445858,0.729345451,0.62900142,0.487147725,0.336967254,0.471296806,0.818368634,0.562661845,0.597765949,1.372470345,1.097801389,1.081677474,1.169776879,2.809879113,1.31032873,1.512823219,1.915055974,1.397263059,1.145608187,0.939666388,0.743115198,,
India,Exports as a capacity to import (constant LCU),NY.EXP.CAPM.KN,3.21E+11,3.20E+11,3.18E+11,3.45E+11,3.23E+11,2.78E+11,3.50E+11,3.67E+11,3.79E+11,3.71E+11,4.63E+11,5.14E+11,5.97E+11,5.30E+11,4.16E+11,4.46E+11,5.85E+11,6.95E+11,6.54E+11,6.73E+11,6.18E+11,7.09E+11,7.79E+11,9.61E+11,9.01E+11,8.67E+11,1.09E+12,1.17E+12,1.28E+12,1.39E+12,1.40E+12,1.67E+12,1.87E+12,2.42E+12,2.88E+12,3.42E+12,3.33E+12,3.76E+12,4.40E+12,4.65E+12,5.30E+12,5.46E+12,6.12E+12,7.11E+12,8.27E+12,1.06E+13,1.27E+13,1.35E+13,1.63E+13,1.53E+13,1.87E+13,2.14E+13,2.26E+13,2.37E+13,2.36E+13,2.25E+13,2.39E+13,
India,"Adjusted net savings, excluding particulate emission damage (% of GNI)",NY.ADJ.SVNX.GN.ZS,,,,,,,,,,,,,,,,10.47994487,12.4225747,11.39146967,12.88597771,12.55590171,8.830956377,12.05314664,11.96213541,10.27113756,11.20891645,11.90965263,12.85379479,12.36993989,13.16441321,13.19276175,13.785206,12.2168383,13.20326001,11.08742021,13.63363035,15.12516606,11.47994707,14.43040548,13.42144793,17.19029766,14.36643801,15.68282544,14.81459843,16.73352057,21.89027651,22.53744776,23.51560434,29.37287826,23.19792622,26.64804819,26.30492618,23.22141154,21.78490258,21.34171442,21.44549623,19.8327947,,
India,"Adjusted net savings, excluding particulate emission damage (current US$)",NY.ADJ.SVNX.CD,,,,,,,,,,,,,,,,10469991595,12951527926,14050922179,17978258387,19570130646,16781466402,23736141138,24352156412,22717085784,24063413921,28037942414,32383979134,34871726434,39320127601,39287384850,44444055551,33074890676,38138144675,31082806450,44833920747,54839465838,45472299936,60550991508,57065580738,79643680496,67756862590,76806010258,77112947742,1.03E+11,1.57E+11,1.87E+11,2.21E+11,3.51E+11,2.74E+11,3.51E+11,4.31E+11,4.20E+11,3.94E+11,3.91E+11,4.31E+11,4.09E+11,,
India,"Adjusted net savings, including particulate emission damage (% of GNI)",NY.ADJ.SVNG.GN.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.69337551,9.183490253,10.33424466,8.351452326,11.0668684,12.7310242,9.220233688,12.21904468,11.29311868,15.18211579,12.38457993,13.77294911,12.9788393,15.03040493,20.33489743,21.12255534,22.21088827,28.14081376,21.95460687,25.42040465,25.10087755,22.00351031,20.54138423,20.10728592,20.23495301,18.65459406,,
India,"Adjusted net savings, including particulate emission damage (current US$)",NY.ADJ.SVNG.CD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34475870394,24862646832,29850879066,23412711994,36393175402,46159001746,36521530043,51271966818,48016307861,70339653360,58409765867,67452467368,67557454335,92264140653,1.46E+11,1.75E+11,2.09E+11,3.37E+11,2.59E+11,3.35E+11,4.11E+11,3.98E+11,3.71E+11,3.69E+11,4.07E+11,3.85E+11,,
India,Adjusted net national income per capita (annual % growth),NY.ADJ.NNTY.PC.KD.ZG,,,,,,,,,,,,-0.302722776,-2.752722071,0.525024874,-3.478157738,4.782564787,0.165723881,5.053721863,2.408237558,-8.532183604,3.607304445,3.991470793,0.198700819,6.816730591,-0.181058044,2.853276426,4.46879199,1.267756625,7.372505386,2.453787505,2.441862716,-0.620254751,3.877927725,4.090729632,5.60290714,4.44065147,4.640000418,3.894718771,5.543992544,5.5950828,0.449641413,2.843382239,0.970519659,7.029911147,5.396838784,7.331315763,7.098146499,4.827822499,1.82633963,8.965881388,7.432547152,5.047020287,3.961668516,4.311842327,6.333409227,6.673207959,,
India,Adjusted net national income per capita (constant 2010 US$),NY.ADJ.NNTY.PC.KD,,,,,,,,,,,348.3878673,347.3332178,337.7720997,339.5454872,327.7355596,343.4097251,343.978837,361.3625707,370.0650398,338.4904112,350.7007908,364.6989105,365.4235702,390.3335105,389.6267803,400.7439093,418.6523211,423.9598136,455.2162737,466.3863137,477.7748272,474.8114062,493.2242493,513.4007199,542.1660854,566.2417917,592.5154132,615.5922222,649.7206091,686.0730152,689.1578836,708.7532764,715.6318663,765.9401506,807.2767058,866.4607101,927.9633607,972.7637846,990.5297551,1079.339478,1159.561894,1218.085218,1266.341716,1320.944374,1404.605187,1498.337412,,
India,Adjusted net national income per capita (current US$),NY.ADJ.NNTY.PC.CD,,,,,,,,,,,106.2095706,111.7893995,115.762123,135.7141466,153.4066701,146.4723336,149.6655972,171.512249,189.298928,205.3648194,245.4703831,247.1466899,247.4918438,263.6297389,248.9801709,265.8304113,279.9829325,307.0370508,319.4937772,309.4292787,328.1244761,269.4986348,282.2020432,268.3107604,309.4660962,333.0475476,357.03486,371.6038974,372.0026275,398.1924665,394.7825074,402.0657514,419.3662887,486.7476901,563.8250944,639.2064349,712.9995497,888.3477482,851.040288,955.933943,1159.561894,1259.781573,1248.902192,1254.625039,1364.829685,1379.144432,,
India,Adjusted net national income (annual % growth),NY.ADJ.NNTY.KD.ZG,,,,,,,,,,,,1.97482512,-0.487948875,2.892783368,-1.201033507,7.242501245,2.498566975,7.484919136,4.772458784,-6.413722028,6.02171598,6.429315831,2.552205091,9.316555643,2.130320297,5.197884102,6.809618853,3.4993617,9.698831446,4.636800806,4.589028062,1.426584856,5.979481241,6.162926842,7.676712413,6.466776118,6.645727721,5.859498477,7.508908143,7.524650677,2.247053634,4.643000017,2.697773839,8.819368872,7.11928509,9.045254736,8.769887955,6.424945595,3.333920561,10.52445988,8.911013821,6.434186498,5.281141954,5.591627808,7.605612803,7.925945337,,
India,Adjusted net national income (constant 2010 US$),NY.ADJ.NNTY.KD,,,,,,,,,,,1.93E+11,1.97E+11,1.96E+11,2.01E+11,1.99E+11,2.13E+11,2.19E+11,2.35E+11,2.46E+11,2.30E+11,2.44E+11,2.60E+11,2.67E+11,2.92E+11,2.98E+11,3.13E+11,3.35E+11,3.46E+11,3.80E+11,3.97E+11,4.16E+11,4.22E+11,4.47E+11,4.74E+11,5.11E+11,5.44E+11,5.80E+11,6.14E+11,6.60E+11,7.10E+11,7.26E+11,7.59E+11,7.80E+11,8.49E+11,9.09E+11,9.91E+11,1.08E+12,1.15E+12,1.19E+12,1.31E+12,1.43E+12,1.52E+12,1.60E+12,1.69E+12,1.82E+12,1.96E+12,,
India,Adjusted net national income (current US$),NY.ADJ.NNTY.CD,,,,,,,,,,,58795336142,63297931728,67073906835,80486486025,93125558186,91003512788,95153156221,1.12E+11,1.26E+11,1.40E+11,1.71E+11,1.76E+11,1.81E+11,1.97E+11,1.90E+11,2.08E+11,2.24E+11,2.51E+11,2.67E+11,2.64E+11,2.86E+11,2.39E+11,2.56E+11,2.48E+11,2.92E+11,3.20E+11,3.49E+11,3.71E+11,3.78E+11,4.12E+11,4.16E+11,4.31E+11,4.57E+11,5.39E+11,6.35E+11,7.31E+11,8.28E+11,1.05E+12,1.02E+12,1.16E+12,1.43E+12,1.57E+12,1.58E+12,1.60E+12,1.77E+12,1.81E+12,,
India,Adjusted savings: net national savings (% of GNI),NY.ADJ.NNAT.GN.ZS,,,,,,,,,,,,,,,,10.16606208,11.83645699,11.82537559,13.05491968,12.3633109,8.433474888,12.10833408,11.94854523,10.12432868,11.73738958,12.22991763,12.40366652,12.0422219,12.98577968,13.19092275,13.90535721,12.6718103,13.64526051,11.85668367,14.17116798,15.89583957,12.52364961,15.45760393,13.48504164,16.90335655,14.88610776,16.29517767,15.64722652,17.54862325,23.04465549,23.98119872,25.41177162,31.40282614,26.56495529,28.33644494,28.09191657,25.18085249,23.57954698,23.11839769,22.82360806,21.07789701,,
India,Adjusted savings: net national savings (current US$),NY.ADJ.NNAT.CD,,,,,,,,,,,,,,,,10156406912,12340453323,14586127770,18213962840,19269950906,16026132330,23844821219,24324489918,22392382724,25197945320,28791916686,31249921471,33947866485,38786576046,39281908393,44831427860,34306645471,39414880793,33239382698,46601602487,57633704496,49606426572,64861188109,57335969748,78314265094,70207796592,79804980852,81446943493,1.08E+11,1.65E+11,1.99E+11,2.39E+11,3.76E+11,3.13E+11,3.73E+11,4.60E+11,4.55E+11,4.26E+11,4.24E+11,4.59E+11,4.35E+11,,
India,Adjusted savings: gross savings (% of GNI),NY.ADJ.ICTR.GN.ZS,,,,,,,,,,,,,,,,17.8589549,19.48417693,19.15439433,20.79475208,20.97660282,16.94267088,20.79899774,21.09971801,19.06634309,20.97987805,21.92477101,22.28112628,21.75975497,22.5604313,22.93647454,23.41626348,22.69060714,23.77321336,22.13092833,24.40908072,26.37132132,23.0312203,25.96274326,23.65687419,26.94195046,25.26238845,27.07286107,26.59318333,28.46279646,32.97973961,33.90148965,35.23726113,41.16178198,36.71605909,38.40730662,38.64074041,35.77236749,34.3575861,33.8839883,33.62718924,32.71908168,,
India,Adjusted savings: natural resources depletion (% of GNI),NY.ADJ.DRES.GN.ZS,,,,,,,,,,,0.430839314,0.422872107,0.40469207,0.506442317,0.590038354,1.217082093,1.085304278,2.221273181,1.964382583,1.669921704,1.48410955,1.812773725,2.117636843,2.024879604,2.122805108,2.042067977,1.309239732,1.322016743,1.162730611,1.697824178,1.931827925,1.580265551,1.356423986,1.286041762,1.09489087,1.297294772,1.257816423,1.164538414,0.937941085,1.046941725,1.477571992,1.25747469,1.251744318,1.225580887,1.460573497,1.788820606,2.203119166,2.616962475,3.489706497,1.718031914,2.340926329,2.453345137,1.909132476,1.774747425,1.315432938,0.907850533,,
India,Adjusted savings: particulate emission damage (% of GNI),NY.ADJ.DPEM.GN.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3.091830485,3.033348051,2.869015353,2.735967888,2.566761952,2.394141863,2.25971338,2.211360795,2.128329251,2.008181879,1.981858081,1.909876322,1.835759127,1.70311564,1.555379082,1.414892415,1.304716076,1.232064503,1.243319352,1.227643536,1.20404863,1.217901238,1.243518345,1.2344285,1.210543225,1.178200641,,
India,Adjusted savings: particulate emission damage (current US$),NY.ADJ.DPEM.CD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9968185157,8212243845,8287265609,7670094456,8440745345,8680464093,8950769893,9279024690,9049272877,9304027136,9347096722,9353542890,9555493407,10454575356,11145924271,11719780255,12287450682,14735245045,14668060061,16154438524,19729661251,22006988205,22466148534,22640900001,24324897672,24323245314,,
India,Adjusted savings: energy depletion (% of GNI),NY.ADJ.DNGY.GN.ZS,,,,,,,,,,,0.0176287,0.061527636,0.055998607,0.045691455,0.095198873,0.221813038,0.352470135,0.59489192,0.543804056,1.007336066,0.829049393,1.235107885,1.292722742,1.483811094,1.636423389,1.684862582,0.768341611,0.873674033,0.687294889,1.194814563,1.353710701,0.90425996,0.713654022,0.652472413,0.666888978,0.835436037,0.85532695,0.766057026,0.454154464,0.590344423,1.031080497,0.877099173,0.822641908,0.803911772,1.057787903,1.124428405,1.291306252,1.154254234,1.706614466,0.8283977,1.020902046,1.379287335,1.263190838,1.072047367,0.852538754,0.434319116,,
India,Adjusted savings: energy depletion (current US$),NY.ADJ.DNGY.CD,,,,,,,,,,,11130499.56,41925591.63,40501431.07,39569539.23,96061374.48,221602372.6,367478313.1,733775387.6,758704543.5,1570074285,1575442562,2432285607,2631686177,3281804349,3513090097,3966537188,1935767539,2462948257,2052846740,3558098027,4364417449,2448121075,2061418189,1829160738,2193051066,3029048794,3387967155,3214428907,1930983034,2735101132,4862915880,4295558118,4282015659,4934812415,7580161002,9313820385,12161160712,13804649788,20133784157,10900802492,16728603010,24923170437,22821563597,19662635161,17131084240,8966257567,,
India,Adjusted savings: mineral depletion (% of GNI),NY.ADJ.DMIN.GN.ZS,,,,,,,,,,,0.087216025,0.088738699,0.082200335,0.076440973,0.096840267,0.126115814,0.17839952,0.144858317,0.095798162,0.107250941,0.107690306,0.105858618,0.128752224,0.091870414,0.093675124,0.092087161,0.0879242,0.070476964,0.096848317,0.123718794,0.113747622,0.134329908,0.11237965,0.094782604,0.037635246,0.037375654,0.042006977,0.072601237,0.171923089,0.125284104,0.154065432,0.097033326,0.104591198,0.124066667,0.189151861,0.479849666,0.661120239,1.190304571,1.513780272,0.656021959,0.980937844,0.761850524,0.371207607,0.456329658,0.228577422,0.117373319,,
India,Adjusted savings: mineral depletion (current US$),NY.ADJ.DMIN.CD,,,,,,,,,,,55066903.6,60467501.27,59452036.88,66199118.99,97717640.3,125996035.8,185995772,178676940.2,133655679,167165606.9,204643888.1,208466317.7,262109915.7,203193468.5,201102693.6,216793435.8,221517109.8,198679496.2,289271396.5,368428382.5,366726884.6,363674047.7,324613114.9,265716395.1,123762752.4,135513282.6,166390476.6,304639873.1,730986027.9,580448769.8,726623416.9,475216833.1,544418102.3,761583237.7,1355471695,3974671557,6226245295,14235804606,17858822761,8632527356,16073745605,13766334224,6706459347,8369633525,4593080427,2423101753,,
India,Adjusted savings: consumption of fixed capital (% of GNI),NY.ADJ.DKAP.GN.ZS,,,,,,,,,,,6.447971769,6.684649033,6.856725205,6.554777936,7.120545569,7.692892816,7.647688661,7.328975378,7.739835567,8.61330525,8.509198442,8.69062541,9.151131114,8.942057075,9.242475922,9.694824645,9.877442057,9.717569255,9.574619603,9.745517101,9.510929535,10.0188153,10.12792198,10.27420567,10.23792224,10.47545061,10.50758677,10.50526133,10.17188645,10.03866449,10.37633147,10.7776315,10.94598796,10.9141934,9.935019508,9.920235034,9.825525727,9.758898973,10.15129815,10.07079275,10.54876059,10.59149443,10.77805213,10.76553575,10.80360775,11.641097,,
India,Adjusted savings: consumption of fixed capital (current US$),NY.ADJ.DKAP.CD,,,,,,,,,,,4071153644,4554991570,4959180247,5676543680,7185057712,7685586529,7973327245,9039997970,10798463786,13425042095,16170029800,17114361713,18629598188,19777505314,19841839734,22823750076,24885326293,27394507959,28597952561,29021662649,30663617257,27124139048,29254907752,28803016405,33667202520,37980946032,41620761355,44080811891,43249030252,46509734906,48938203408,52783019148,56976056507,66996776165,71194846547,82170894024,92534050147,1.17E+11,1.20E+11,1.33E+11,1.73E+11,1.91E+11,1.95E+11,1.97E+11,2.17E+11,2.40E+11,,
India,Adjusted savings: net forest depletion (% of GNI),NY.ADJ.DFOR.GN.ZS,,,,,,,,,,,0.325994589,0.272605772,0.266493128,0.384309888,0.397999214,0.869153241,0.554434623,1.481522944,1.324780365,0.555334698,0.547369851,0.471807222,0.696161877,0.449198096,0.392706594,0.265118234,0.45297392,0.377865746,0.378587404,0.379290821,0.464369601,0.541675683,0.530390313,0.538786745,0.390366646,0.424483081,0.360482496,0.32588015,0.311863532,0.331313198,0.292426064,0.28334219,0.324511212,0.297602447,0.213633733,0.184542536,0.250692675,0.27240367,0.26931176,0.233612256,0.339086439,0.312207278,0.274734031,0.2463704,0.234316762,0.356158098,,
India,Adjusted savings: net forest depletion (current US$),NY.ADJ.DFOR.CD,,,,,,,,,,,205828143.5,185756497.6,192743243.7,332818576.8,401605087.1,868327767,578042449,1827399290,1848307069,865566873.2,1040166927,929125244.8,1417225464,993509397.5,843066443.9,624146648.6,1141227024,1065229988,1130783787,1129509101,1497146170,1466489409,1532053636,1510450923,1283712909,1539052551,1427878376,1367415922,1325987601,1534993927,1379177818,1387657043,1689145760,1826832623,1530910010,1528595353,2360953424,3257893411,3177205485,3074080309,5556304300,5641460622,4963509838,4518728778,4708407885,7352670228,,
India,Adjusted savings: carbon dioxide damage (% of GNI),NY.ADJ.DCO2.GN.ZS,,,,,,,,,,,0.513339097,0.543095823,0.581835762,0.543471171,0.541431744,0.669035114,0.728578011,0.712632735,0.704559384,0.737487485,0.718408962,0.842413718,0.91983147,0.981748222,1.105668021,1.178197025,1.240631999,1.250265269,1.358635861,1.60033682,1.688323286,2.274706449,2.385576512,2.683221693,2.542646759,2.57337874,2.685886118,2.762660036,2.896029026,2.95611716,3.16997274,3.244960134,3.233173959,3.004019577,2.858873322,2.784930355,2.773048116,2.492985402,2.957322573,3.050364837,2.526064062,2.586095813,2.965511926,3.081935852,3.142678892,3.417251781,,
India,Adjusted savings: carbon dioxide damage (current US$),NY.ADJ.DCO2.CD,,,,,,,,,,,260475356.6,292139039.3,326312972,358491762.3,408764857.1,491230971,548366390.7,705143214.1,769214720.1,879340756.8,1018535565,1211530968,1383765501,1579134659,1710971739,1959692418,2168710528,2402925728,2716737522,3122322991,3412405878,3811632184,4189071403,4508929852,4948694597,5436970173,6101574139,6540270148,6868156595,7532268993,8082118468,8484449386,8882131194,9577558172,10473823209,11437891168,12700378408,14111072214,16180413123,18061879519,18334918570,20106303900,21733633745,23827112148,26208696969,,,
India,Adjusted savings: education expenditure (% of GNI),NY.ADJ.AEDU.GN.ZS,,,,,,,,,,,2.4661305,2.2,2.4,2.4,2.5610908,2.2,2.4,2.5,2.5,2.6,2.6,2.6,3.0510585,3.1534367,2.7,2.9,3,2.9,2.7,3.3,3.5,3.4,3.3,3.2,3.1,3.1,2.9,2.9,3.7703764,4.29,4.127874988,3.890082586,3.652290183,3.41449778,3.165067839,3.13,3.08,3.08,3.08,3.08,3.08,3.08,3.08,3.08,3.08,3.08,,
India,Adjusted savings: education expenditure (current US$),NY.ADJ.AEDU.CD,,,,,,,,,,,1557078184,1499103604,1735818811,2078438807,2584294283,2197910561,2502192000,3083650000,3487950000,4052464000,4940780000,5120154000,6211253363,6974582087,5796387000,6827238000,7558230000,8175303000,8064495000,9827235000,11284140000,9204888000,9532182000,8970976000,10194288000,11239701000,11486958000,12168603000,16030961785,19875827400,19468420643,19051523859,19010900861,20959894625,22681034384,25926290800,29006577600,36836184000,36336300000,40529412000,50469188000,55654368000,55645128000,56490896000,61890136000,63584752000,,
India,"Services, etc., value added (% of GDP)",NV.SRV.TETC.ZS,32.8161765,32.87594771,34.0250064,32.87106518,31.99838359,33.16968803,32.68151879,31.40425384,31.76275301,31.1001531,32.03946209,32.87188157,32.80329345,31.01608077,32.55593001,34.48725028,34.92272596,33.83378699,34.25449208,35.25523968,34.29886221,34.66927709,35.82169885,35.09335843,36.05829901,37.27648785,38.25072026,38.78212672,37.88338741,38.28103167,38.26670618,39.19132057,39.4290185,39.81476479,39.1510083,40.05143752,40.1069121,41.61838751,42.51703011,44.47072369,45.07993151,46.27724686,47.28848356,47.43214298,46.9226712,46.8996628,46.5957715,46.40186788,47.78005296,48.46023625,48.69537204,48.970046,50.03092685,50.62079478,51.80024775,52.92686585,53.80231245,
India,"Services, etc., value added (constant LCU)",NV.SRV.TETC.KN,9.77E+11,1.07E+12,1.18E+12,1.26E+12,1.31E+12,1.43E+12,1.48E+12,1.45E+12,1.56E+12,1.64E+12,1.74E+12,1.86E+12,1.98E+12,2.05E+12,2.20E+12,2.26E+12,2.46E+12,2.53E+12,2.80E+12,3.02E+12,3.01E+12,3.15E+12,3.49E+12,3.63E+12,3.93E+12,4.34E+12,4.77E+12,5.18E+12,5.40E+12,5.98E+12,6.27E+12,6.70E+12,7.10E+12,7.71E+12,8.15E+12,9.14E+12,9.84E+12,1.10E+13,1.20E+13,1.37E+13,1.45E+13,1.55E+13,1.69E+13,1.82E+13,1.99E+13,2.22E+13,2.46E+13,2.72E+13,3.04E+13,3.39E+13,3.72E+13,3.97E+13,4.30E+13,4.63E+13,5.08E+13,5.57E+13,6.00E+13,
India,"Services, etc., value added (annual % growth)",NV.SRV.TETC.KD.ZG,,9.608674965,10.19620362,7.144928686,3.713776871,8.815679401,3.835475506,-1.987338848,7.467022251,5.369880494,5.623391752,7.009034081,6.415851154,3.681503325,7.237087861,2.841055324,8.70368235,2.71120293,10.81088912,7.800157701,-0.152229968,4.673266632,10.84550625,3.985749979,8.090297299,10.40021609,10.00043419,8.531500148,4.334500028,10.74085199,4.79181418,6.860825511,6.002949798,8.613601012,5.661934213,12.19653838,7.599688249,11.40111924,9.251312761,14.25286411,5.833271074,7.124067945,8.828501727,7.786406371,9.25368908,11.75748276,10.55949908,10.83300255,11.57760658,11.55346753,9.946888946,6.592145461,8.333677143,7.659995074,9.661402301,9.741032981,7.741473126,
India,"Services, etc., value added (constant 2010 US$)",NV.SRV.TETC.KD,19632707597,21519150656,23713287075,25407584526,26351165523,28674199794,29773991704,29182281600,31361329060,33045394952,34903666966,37350076880,39746402218,41209667337,44192047170,45447567679,49403179605,50742600058,56228326285,60614224408,60521951393,63350303553,70220964682,73019796767,78927315413,87135926769,95849897783,1.04E+11,1.09E+11,1.20E+11,1.26E+11,1.35E+11,1.43E+11,1.55E+11,1.64E+11,1.84E+11,1.98E+11,2.20E+11,2.41E+11,2.75E+11,2.91E+11,3.12E+11,3.39E+11,3.66E+11,3.99E+11,4.46E+11,4.93E+11,5.47E+11,6.10E+11,6.81E+11,7.48E+11,7.98E+11,8.64E+11,9.30E+11,1.02E+12,1.12E+12,1.21E+12,
India,"Services, etc., value added (current LCU)",NV.SRV.TETC.CN,54051457400,57142457300,63236123700,69819366400,79402221000,86184039400,96652723100,1.09E+11,1.16E+11,1.25E+11,1.37E+11,1.50E+11,1.65E+11,1.91E+11,2.36E+11,2.65E+11,2.89E+11,3.19E+11,3.47E+11,3.90E+11,4.53E+11,5.37E+11,6.19E+11,7.10E+11,8.19E+11,9.46E+11,1.08E+12,1.24E+12,1.45E+12,1.69E+12,1.97E+12,2.32E+12,2.68E+12,3.15E+12,3.61E+12,4.33E+12,5.04E+12,5.82E+12,6.85E+12,7.98E+12,8.71E+12,9.72E+12,1.07E+13,1.20E+13,1.35E+13,1.54E+13,1.78E+13,2.05E+13,2.45E+13,2.86E+13,3.41E+13,3.97E+13,4.60E+13,5.25E+13,5.95E+13,6.59E+13,7.35E+13,
India,"Services, etc., value added (current US$)",NV.SRV.TETC.CD,11350817405,11999928033,13279599257,14662081606,16674483084,18098286308,13807531871,14552694187,15521825107,16713664200,18316296000,20151161484,21293185755,24258199402,29548126950,30640339300,32289004643,37269502435,42314011845,48285817382,57446418609,60093769122,64331000841,68829069520,68900853821,77311099792,84654682689,95934861310,1.00E+11,1.01E+11,1.10E+11,94740616406,1.01E+11,1.00E+11,1.15E+11,1.29E+11,1.42E+11,1.57E+11,1.63E+11,1.84E+11,1.91E+11,2.04E+11,2.21E+11,2.62E+11,3.00E+11,3.47E+11,3.93E+11,5.10E+11,5.32E+11,6.03E+11,7.48E+11,8.28E+11,8.46E+11,8.67E+11,9.73E+11,1.01E+12,1.10E+12,
India,Textiles and clothing (% of value added in manufacturing),NV.MNF.TXTL.ZS.UN,,,,27.36546799,27.10730684,25.25281878,23.63719234,23.93783296,23.28755959,21.0537022,21.00090992,21.97971709,23.56281811,24.93588224,22.02225448,19.45239577,18.11953112,20.0576016,21.98752865,22.94110148,21.32090691,17.78092822,15.56505943,16.14500061,15.88943264,14.97885901,15.65445459,13.64230891,12.71562747,14.88471702,15.17138864,14.04540954,12.57157979,15.47386209,14.66493752,11.166132,12.00359021,12.20973605,11.75387066,11.21581037,12.55420534,11.00277105,10.48285306,9.516972618,8.680797796,8.94249841,9.00157641,7.72889216,7.476953009,8.17770878,8.825094491,7.193489551,8.85981541,8.85981541,8.85981541,,,
India,Medium and high-tech industry (% manufacturing value added),NV.MNF.TECH.ZS.UN,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.400050991,0.426317095,0.445599358,0.405211462,0.418015129,0.46217092,0.44459563,0.427518779,0.444515739,0.438013012,0.413295276,0.422998299,0.396826719,0.394225489,0.375459012,0.396061357,0.364957332,0.346394333,0.385259176,0.40562288,0.392113967,0.411394599,0.40212416,0.382072303,0.37908338,0.37908338,,
India,Other manufacturing (% of value added in manufacturing),NV.MNF.OTHR.ZS.UN,,,,37.13338434,36.55121592,35.94095083,37.4247949,37.21657201,36.82001548,36.88296718,38.6078253,35.71498901,36.38092687,37.33270114,37.33913885,39.6204107,39.48324253,37.94331668,35.73435536,36.4291178,38.54847958,40.12750999,41.55521863,38.63792891,40.26425396,40.68546791,39.39087233,42.5486279,44.46574517,40.2605103,41.73878997,39.90073421,40.55061378,39.55531436,40.17220774,40.46240219,38.43784965,40.87540014,36.5758334,37.06916097,37.52290686,38.59039085,42.43239138,45.06758612,48.71546213,47.01917652,49.61183303,54.29940492,49.48151673,47.61809171,47.74536217,46.16238515,45.60021846,45.60021846,45.60021846,,,
India,Machinery and transport equipment (% of value added in manufacturing),NV.MNF.MTRN.ZS.UN,,,,13.24279521,14.21688113,15.34348483,15.10483136,15.62100999,14.57560817,14.544345,13.98847437,15.79966523,14.29949103,12.80200004,14.79761329,15.02333541,15.78476694,15.33677459,15.48443546,15.79338773,16.94865839,17.84891144,17.87721883,17.17377936,17.62720796,17.62773114,17.7658182,16.09294501,15.0845236,16.85681951,17.47622321,18.15660758,17.12861314,14.65095723,14.92398524,18.10777651,18.96785616,16.52034561,15.33975355,16.13395942,15.60869871,16.75125713,15.90663562,17.1444368,16.92019069,18.58105633,16.54970813,15.59109594,17.90563711,19.62208761,19.05178401,18.53544309,19.6451162,19.6451162,19.6451162,,,
India,"Food, beverages and tobacco (% of value added in manufacturing)",NV.MNF.FBTO.ZS.UN,,,,12.68808977,12.53897171,13.74520516,13.67365542,12.43340818,12.46077992,14.80200705,12.80861389,12.19272047,11.18135548,10.24591047,10.77084341,10.84007467,11.82653679,12.58469801,10.78919478,10.14682135,9.121565807,9.855079673,10.37217685,12.33612102,11.8151904,11.6020287,12.36940834,12.00042057,12.70919209,13.83260413,11.74657519,12.91133712,11.39215653,12.00224062,12.71542205,10.10475981,12.43171023,12.17421165,12.62962902,12.64560981,13.16832458,13.26644992,11.90656325,10.2310433,9.056570585,9.308436426,10.2965401,8.762673955,9.671450633,9.001252989,9.518088322,10.0344853,9.921302964,9.921302964,9.921302964,,,
India,Chemicals (% of value added in manufacturing),NV.MNF.CHEM.ZS.UN,,,,9.570262688,9.585624398,9.717540393,10.15952598,10.79117686,12.85603684,12.71697857,13.59417652,14.3129082,14.57540852,14.68350611,15.07014998,15.06378345,14.78592262,14.07760912,16.00448574,14.68957165,14.06038931,14.38757068,14.63032626,15.70717009,14.40391504,15.10591323,14.81944654,15.71569761,15.02491168,14.16534904,13.867023,14.98591155,18.35703676,18.31762569,17.52344745,20.1589295,18.15899376,18.22030654,23.70091337,22.93545943,21.14586452,20.38913104,19.2715567,18.03996116,16.6269788,16.14883231,14.54034233,13.61793302,15.46444252,15.58085892,14.85967101,18.07419691,15.97354697,15.97354697,15.97354697,,,
India,"Industry, value added (% of GDP)",NV.IND.TOTL.ZS,23.04405627,23.80064253,24.60667879,24.52960666,23.44909081,24.39921421,23.95342116,22.41802467,23.10092582,24.00924676,24.44985926,25.35251733,25.42548967,24.06794985,25.63909763,26.49947599,27.99783441,27.70006456,28.96212833,29.87221127,28.99908966,29.99827669,30.0794351,30.11757773,30.53654982,30.6850557,30.90785597,30.9530269,30.79727917,31.67355898,31.63345438,30.32906721,30.76949725,30.44460523,31.52835979,32.71828074,31.75948177,31.53442823,30.7353749,30.11818339,31.04431136,29.9502349,31.2481485,31.05573207,33.34301749,33.59209125,34.43767421,34.6647162,33.7759719,33.14525706,32.42394162,32.50328164,31.76672015,30.79053885,30.18028935,29.61098433,28.84509221,
India,"Industry, value added (constant LCU)",NV.IND.TOTL.KN,1.47E+12,1.57E+12,1.67E+12,1.84E+12,1.96E+12,2.04E+12,2.11E+12,2.18E+12,2.29E+12,2.46E+12,2.48E+12,2.54E+12,2.63E+12,2.65E+12,2.69E+12,2.88E+12,3.13E+12,3.35E+12,3.58E+12,3.46E+12,3.65E+12,3.94E+12,3.99E+12,4.31E+12,4.48E+12,4.68E+12,4.95E+12,5.23E+12,5.70E+12,6.17E+12,6.63E+12,6.65E+12,6.86E+12,7.24E+12,7.90E+12,8.80E+12,9.36E+12,9.73E+12,1.01E+13,1.07E+13,1.14E+13,1.17E+13,1.25E+13,1.34E+13,1.48E+13,1.62E+13,1.82E+13,1.99E+13,2.08E+13,2.27E+13,2.44E+13,2.64E+13,2.72E+13,2.82E+13,3.04E+13,3.30E+13,3.49E+13,
India,"Industry, value added (annual % growth)",NV.IND.TOTL.KD.ZG,,6.786717372,6.80632274,9.814539082,6.756374582,4.093640305,3.589616567,3.30840216,4.831329642,7.464741492,0.744804231,2.507113704,3.639127023,0.613872234,1.412713149,7.084659975,8.670279668,7.00663049,6.887776284,-3.161970977,5.242568688,8.006925764,1.417976236,7.875552484,4.076234621,4.382916898,5.756835749,5.569657435,9.09925608,8.302275031,7.331093631,0.342250988,3.215111818,5.497411054,9.161761703,11.2897812,6.393723744,4.012753343,4.148355554,5.964236194,6.032130923,2.608147397,7.211254417,7.318593477,9.814072539,9.7169983,12.16931217,9.673973075,4.441180541,9.163007721,7.551000579,7.814342988,3.269180543,3.785891905,7.474163954,8.757420881,5.591714585,
India,"Industry, value added (constant 2010 US$)",NV.IND.TOTL.KD,29905748615,31935367251,34108991415,37456631708,39987342052,41624280003,43118432054,44544963191,46697077202,50182893300,50556657612,51824170503,53710117897,54039829397,54803257173,58685881599,63774111659,68242528012,72942920672,70636486690,74339653024,80291973854,81430494963,87843596332,91424307417,95431358836,1.01E+11,1.07E+11,1.16E+11,1.26E+11,1.35E+11,1.36E+11,1.40E+11,1.48E+11,1.61E+11,1.79E+11,1.91E+11,1.98E+11,2.07E+11,2.19E+11,2.32E+11,2.38E+11,2.56E+11,2.74E+11,3.01E+11,3.30E+11,3.71E+11,4.06E+11,4.24E+11,4.63E+11,4.98E+11,5.37E+11,5.55E+11,5.76E+11,6.19E+11,6.73E+11,7.11E+11,
India,"Industry, value added (current LCU)",NV.IND.TOTL.CN,37955818100,41368456100,45731982100,52101797900,58187623300,63395918500,70840140500,77913646400,84667219400,96771827800,1.05E+11,1.16E+11,1.28E+11,1.48E+11,1.86E+11,2.04E+11,2.31E+11,2.61E+11,2.94E+11,3.30E+11,3.83E+11,4.64E+11,5.20E+11,6.09E+11,6.94E+11,7.79E+11,8.75E+11,9.93E+11,1.18E+12,1.40E+12,1.63E+12,1.80E+12,2.09E+12,2.41E+12,2.91E+12,3.54E+12,3.99E+12,4.41E+12,4.95E+12,5.41E+12,6.00E+12,6.29E+12,7.08E+12,7.88E+12,9.57E+12,1.10E+13,1.32E+13,1.53E+13,1.73E+13,1.96E+13,2.27E+13,2.64E+13,2.92E+13,3.19E+13,3.47E+13,3.69E+13,3.94E+13,
India,"Industry, value added (current US$)",NV.IND.TOTL.CD,7970729772,8687384468,9603725845,10941388500,12219413112,13312876627,10120020071,10388486187,11288962587,12902910373,13977477467,15541631517,16504125579,18823949129,23270332364,23543568389,25886358536,30512919638,35776441764,40913184847,48569944785,51997320537,54018659826,59070004810,58349795016,63640528920,68403803175,76568115117,81445854083,83839034275,90549420186,73317114109,79202755953,76703485520,92680874777,1.06E+11,1.13E+11,1.19E+11,1.18E+11,1.25E+11,1.31E+11,1.32E+11,1.46E+11,1.71E+11,2.13E+11,2.49E+11,2.91E+11,3.81E+11,3.76E+11,4.12E+11,4.98E+11,5.50E+11,5.37E+11,5.27E+11,5.67E+11,5.63E+11,5.88E+11,
India,"Manufacturing, value added (% of GDP)",NV.IND.MANF.ZS,16.18667604,16.91651151,17.56594769,17.52893692,16.49945726,16.79488536,16.14018528,14.67423666,15.05795966,15.77094039,16.18087877,16.87312572,17.04348797,16.82885627,18.37360767,17.99467218,18.52351011,18.17969005,19.47867834,20.44130069,19.10355011,19.18972611,18.75441718,19.00954846,19.01554914,18.86721753,18.70707079,18.74267496,18.51035135,19.37819254,19.0779536,17.95470662,18.13488658,18.08568907,19.1317667,20.4311306,20.00507271,18.70994227,17.71425389,17.23488176,18.07486766,17.2869044,17.55647027,17.58926348,18.00808926,18.16583562,18.95934819,18.87988339,18.21716106,17.82227893,17.46817729,17.39231484,17.09105204,16.53407669,16.40803752,16.57339151,16.51373192,
India,"Net official flows from UN agencies, WFP (current US$)",DT.NFL.WFPG.CD,,,,,,,,,,-2060000,7200000,10380000,18100000,23330000,26630000,84400000,29310000,38940000,44030000,37850000,40700000,28760000,14210000,28520000,17640000,23390000,17200000,23430000,59980000,39020000,44090000,45470000,43980000,26280000,28280000,23160000,6060000,24420000,12280000,21380000,27000000,18360000,9430000,2490000,8530000,9670000,9610000,7530000,5090000,2810000,2980000,1580000,490000,-30000,210000,90000,,
India,"Net official flows from UN agencies, UNTA (current US$)",DT.NFL.UNTA.CD,,,,,,,,,,1000000,1330000,1600000,1760000,1780000,1910000,1890000,2170000,2690000,3480000,3160000,310000,4000000,1140000,4660000,1660000,5560000,2190000,5730000,2570000,6590000,2170000,6860000,3040000,9200000,2170000,16600000,3060000,7770000,2020000,6820000,9020000,7740000,10510000,10010000,9910000,12590000,4590000,9560000,320000,,,,,,,,,
India,"Net official flows from UN agencies, UNRWA (current US$)",DT.NFL.UNRW.CD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,"Net official flows from UN agencies, UNPBF (current US$)",DT.NFL.UNPB.CD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,"Net official flows from UN agencies, UNFPA (current US$)",DT.NFL.UNFP.CD,,,,,,,,,,,,,,,,,,7550000,,,4260000,3250000,10640000,14330000,23120000,12080000,8730000,6560000,9760000,10240000,16560000,11220000,10290000,7010000,11900000,11870000,13270000,8770000,8310000,6960000,8970000,11090000,13210000,6820000,11260000,13070000,13460000,13080000,8770000,12300000,13300000,14020000,12600000,9210000,10660000,10050000,,
India,"Net official flows from UN agencies, UNECE (current US$)",DT.NFL.UNEC.CD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,"Net official flows from UN agencies, UNDP (current US$)",DT.NFL.UNDP.CD,,,,,,,,,13310000,6780000,6760000,7640000,6990000,5520000,7290000,8110000,10260000,16180000,21700000,26800000,23850000,24800000,30380000,19510000,26060000,23720000,32390000,29770000,28110000,24090000,22810000,20000000,19040000,33240000,26960000,19120000,18260000,17000000,9860000,16010000,21160000,17700000,21200000,19490000,20320000,15390000,15760000,17380000,15090000,20560000,16530000,12750000,12610000,8560000,11360000,10430000,,
India,"Net official flows from UN agencies, UNHCR (current US$)",DT.NFL.UNCR.CD,,,,,,,,,,320000,310000,700000,130000,230000,100000,10000,,,,,40000,1170000,2230000,2970000,3920000,3530000,4020000,,3820000,3550000,4480000,3550000,2730000,4450000,4470000,4930000,3600000,2630000,2240000,2310000,2160000,2200000,2470000,2310000,,790000,120000,1600000,2100000,1840000,3050000,,1710000,670000,,1240000,,
India,"Mobile account, income, richest 60% (% ages 15+)",WP15163_4.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3.245189,,,
India,"Mobile account, income, poorest 40% (% ages 15+)",WP15163_4.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.9788589,,,
India,"Mobile account, female (% age 15+)",WP15163_4.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.172012,,,
India,"Mobile account, male (% age 15+)",WP15163_4.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3.486761,,,
India,Mobile account (% age 15+),WP15163_4.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2.35221,,,
India,"Account, income, richest 60% (% ages 15+) [ts]",WP_time_10.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,40.52884,,,59.14597,,,
India,"Account, income, poorest 40% (% ages 15+) [ts]",WP_time_10.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27.34398,,,43.90709,,,
India,"Account, secondary education or more (% ages 15+) [ts]",WP_time_10.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,59.46944,,,64.2348,,,
India,"Account, primary education or less (% ages 15+) [ts]",WP_time_10.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,30.51492,,,43.35341,,,
India,"Account, older adults (% ages 25+) [ts]",WP_time_10.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,38.02606,,,56.81198,,,
India,"Account, young adults (% ages 15-24) [ts]",WP_time_10.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27.30086,,,43.2339,,,
India,"Account, female (% age 15+) [ts]",WP_time_10.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.4905,,,43.13261,,,
India,"Account, male (% age 15+) [ts]",WP_time_10.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,43.73708,,,62.76336,,,
India,Account (% age 15+) [ts],WP_time_10.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35.23184,,,53.14155,,,
India,"Account at a financial institution, income, richest 60% (% ages 15+)",WP_time_01.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,40.52884,,,58.59217,,,
India,"Account at a financial institution, income, poorest 40% (% ages 15+)",WP_time_01.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27.34398,,,43.77475,,,
India,"Account at a financial institution, female (% age 15+)",WP_time_01.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.4905,,,42.64437,,,
India,"Account at a financial institution, male (% age 15+)",WP_time_01.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,43.73708,,,62.47223,,,
India,Account at a financial institution (% age 15+),WP_time_01.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35.23184,,,52.75381,,,
India,"Presence of peace keepers (number of troops, police, and military observers in mandate)",VC.PKP.TOTL.UN,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,"Intentional homicides (per 100,000 people)",VC.IHR.PSRC.P5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.36626278,4.395079846,4.352470695,4.473273534,4.233402404,4.5,4.2,4.1,3.6,3.7,3.6,3.6,3.5,3.5,3.4,3.4,3.5,3.4,3.3,3.2,,,
India,"Internally displaced persons, total displaced by conflict and violence (number of people)",VC.IDP.TOCV,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,500000,650000,650000,1000000,526000,853900,611763,796275,
India,"Internally displaced persons, new displacement associated with disasters (number of cases)",VC.IDP.NWDS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6662165,5304000,1411285,1503320,9110000,2144671,3427618,3654637,2400307,
India,"Internally displaced persons, new displacement associated with conflict and violence (number of cases)",VC.IDP.NWCV,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33000,106500,53000,500000,64000,345000,1000,448400,
India,Battle-related deaths (number of people),VC.BTL.DETH,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1002,2324,3149,3078,1503,1172,836,828,986,811,2025,2814,1154,1797,1512,1374,1382,1372,1084,1071,1115,1029,433,409,384,463,495,652,
India,Travel services (% of commercial service exports),TX.VAL.TRVL.ZS.WT,,,,,,,,,,,,,,,,27.38565911,29.94523239,41.82193934,45.92425532,44.619402,54.24107393,48.51933685,42.0654867,37.00738595,23.5124677,27.40651118,36.88374387,41.11622001,37.82870289,35.40294648,33.80768063,37.54094335,46.90719379,42.88644718,37.67289311,38.16992133,39.43801302,32.3771334,26.64257619,21.48806371,21.58189629,19.03714516,16.22027781,18.8832971,16.34448444,14.45079782,12.48288028,12.44211352,11.19734832,12.04083511,12.42864333,12.83755429,12.39164273,12.371686,12.57876306,13.49411941,13.90978832,
India,Transport services (% of commercial service exports),TX.VAL.TRAN.ZS.WT,,,,,,,,,,,,,,,,41.49789528,35.35906476,27.72933962,22.54361488,19.7062362,15.59772243,17.29731948,15.70603757,13.79390221,15.92124799,15.7367297,17.00629363,19.42871888,23.24609381,20.77006709,20.81392163,19.88012957,21.15607243,24.67372869,28.42211622,27.95135541,27.70127284,21.75914792,16.02111073,13.16458276,14.21030578,15.48953927,14.96982592,14.83576401,13.03295104,12.60740535,12.50842358,11.84061303,12.11739975,12.14527899,11.38683627,12.83317787,12.07116981,11.37552821,11.87445855,9.195539778,9.412084668,
India,High-technology exports (% of manufactured exports),TX.VAL.TECH.MF.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.068699519,4.200619334,3.943481192,4.692855613,4.046947719,4.248778709,4.783519764,5.804881032,6.872112979,6.538267884,5.619516933,5.742129277,6.255549228,6.970229303,6.237803011,5.947717493,5.998070281,5.803803052,6.072403224,6.403290331,6.777733191,9.093724449,7.180548755,6.8707993,6.632256486,8.073939853,8.586259881,7.517758047,7.129689474,
India,High-technology exports (current US$),TX.VAL.TECH.CD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,402149981,512079481,497829267,604228939,615240858,695836513,959201216,1351219574,1662488967,1685896198,1414828818,1679108273,2062488338,2286511142,2353666770,2710123490,3355934439,4139238100,4876300228,5997790337,7738414135,10728448006,10086626314,12870672544,12434267043,16693424357,17315676298,13750546786,13335887306,
India,Commercial service exports (current US$),TX.VAL.SERV.CD.WT,,,,,,,,,,,,,,,,719431435.7,954399067.1,1234259451,1496041252,1989156895,2861008079,2635210103,2828422272,3166884008,3127603094,3274386967,3135796919,3265849102,3718831247,4092077281,4609502443,4905450698,4893301119,5034394495,6031261039,6763272430,7179007360,8925527196,11066917256,14005992418,16031394226,16799112202,19125314435,23632701560,37747867269,51850802483,69165839663,86235067783,1.06E+11,92484320177,1.17E+11,1.38E+11,1.45E+11,1.49E+11,1.57E+11,1.56E+11,1.61E+11,
India,"Computer, communications and other services (% of commercial service exports)",TX.VAL.OTHR.ZS.WT,,,,,,,,,,,,,,,,28.2252907,32.17143236,28.19435692,29.59238325,33.97326238,28.86843142,32.75444189,40.87317786,47.89496627,59.18720458,55.56925582,44.65388575,37.83652441,37.00579065,41.15067227,42.70349503,40.40512082,28.86881698,29.63186975,31.495703,31.36238085,29.93639835,43.29984852,55.25703398,63.64819387,60.88316145,61.97255757,63.94629393,63.00400943,67.48856614,68.92239348,69.9915422,70.05314464,71.14732274,70.26526637,69.65302575,67.92565343,70.29041687,70.52329097,70.48587461,72.60354028,72.20698616,
India,Export value index (2000 = 100),TX.VAL.MRCH.XD.WD,,,,,,,,,,,,,,,,,,,,,20.2588056,19.57394294,22.08125193,21.58539664,22.30180772,21.56609477,22.17818605,26.65900569,31.22632984,37.45106691,42.40065315,41.82891176,46.31388437,50.90126548,59.04250424,72.27585165,78.11620296,82.60660275,78.89936832,84.16066334,100,102.3164611,116.2123961,139.1313684,180.8632988,235.0581534,287.4226332,354.3206235,459.7251488,389.1255873,534.1083973,714.7484503,700.4084541,742.9281276,761.4417416,631.0724811,623.8952036,
India,Merchandise exports to low- and middle-income economies within region (% of total merchandise exports),TX.VAL.MRCH.WR.ZS,5.550057099,4.810474537,4.620699583,4.193364207,5.414671632,5.140781108,4.751781918,3.513143142,3.937052933,4.607432931,4.60350475,4.097793204,6.511002084,8.070399632,4.066722517,4.439474522,3.614061659,3.733841958,4.548370299,4.426940889,3.87151811,3.301305668,2.552591329,2.839146946,4.000025664,3.429315962,3.191476427,3.038951158,2.967271688,3.47174155,3.060648758,3.585156347,3.914913015,4.046528646,4.279881233,5.107095674,5.168626868,4.780692665,4.98148679,4.158637033,4.292328367,4.668997544,5.168070686,6.427508194,5.885326851,5.426308713,5.192422169,5.758312668,5.084433078,4.519068447,5.001390722,4.486541689,4.996445091,5.238506915,6.447890062,6.646334834,6.479652328,
India,Merchandise exports by the reporting economy (current US$),TX.VAL.MRCH.WL.CD,1313500000,1382400000,1389400000,1576300000,1691700000,1651500000,1599400000,1605400000,1747500000,1828350000,2024110000,2108940000,2437720000,2957970000,3891340000,4364030000,5017900000,6024090000,6625450000,7678440000,8440100000,6826390000,8271359993,7857421481,8230249870,8265208692,9135050552,10797330556,13191867383,15835741000,17811164694,17870183000,19229717290,20987424487,24192531185,30534380000,32322363009,34622075000,33665150000,35921625000,42463550014,43182526462,50333488279,60931347183,75045790271,97898384148,1.20E+11,1.53E+11,1.95E+11,1.65E+11,2.23E+11,3.07E+11,2.97E+11,3.15E+11,3.18E+11,2.66E+11,2.62E+11,
India,"Merchandise exports by the reporting economy, residual (% of total merchandise exports)",TX.VAL.MRCH.RS.ZS,8.67148839,9.714988426,11.73168274,12.90997906,15.96027664,18.57705117,19.06965112,18.32565093,18.58655222,20.57319441,20.96674588,20.56198849,21.19972761,18.64690987,18.4000884,16.27624008,14.67307041,18.26881736,15.81673698,15.12156115,21.76040568,26.95582878,27.8695715,22.06706126,22.34323426,24.65061728,22.0478019,17.92623915,19.49959527,4.363761696,25.39821657,16.2732357,9.104860875,6.241308874,5.61520582,7.654060767,4.701402672,1.294549792,0.680377185,0.331694348,3.339040178,4.961865605,1.568074989,0.460327336,0.437386983,0.273159378,0.234538551,0.251288139,1.815115173,2.766700479,1.36366215,4.917767906,1.623468905,3.656230249,0.970020028,0.853799319,0.900029758,
India,Merchandise exports to low- and middle-income economies in Sub-Saharan Africa (% of total merchandise exports),TX.VAL.MRCH.R6.ZS,4.156832889,5.309606481,4.498344609,3.34961619,3.115209553,3.336360884,3.326247343,3.251526099,3.462088698,3.096781251,4.701819565,6.1552249,4.385245229,2.89793338,3.909964177,4.634477765,3.713904223,4.174406425,4.219939778,3.822911946,4.236324214,4.745260672,3.314545543,2.67481441,1.865224342,1.672693917,1.713011867,1.659383086,1.672562281,0.386398085,1.710766557,2.349153335,2.916315786,2.630076722,3.10121605,4.236896246,4.24654206,4.321448093,4.877893014,4.385241481,4.020624725,4.626458637,4.646380257,4.661850577,4.912935538,4.988238835,6.111694122,6.73864241,6.370744542,5.968406942,6.356339365,6.378283669,7.679068514,8.205887313,9.0768986,8.110697886,7.137621,
India,Merchandise exports to low- and middle-income economies in South Asia (% of total merchandise exports),TX.VAL.MRCH.R5.ZS,5.550057099,4.810474537,4.620699583,4.193364207,5.414671632,5.140781108,4.751781918,3.513143142,3.937052933,4.607432931,4.60350475,4.097793204,6.511002084,8.070399632,4.066722517,4.439474522,3.614061659,3.733841958,4.548370299,4.426940889,3.87151811,3.301305668,2.552591329,2.839146946,4.000025664,3.429315962,3.191476427,3.038951158,2.967271688,3.47174155,3.060648758,3.585156347,3.914913015,4.046528646,4.279881233,5.107095674,5.168626868,4.780692665,4.98148679,4.158637033,4.292328367,4.668997544,5.168070686,6.427508194,5.885326851,5.426308713,5.192422169,5.758312668,5.084433078,4.519068447,5.001390722,4.486541689,4.996445091,5.238506915,6.447890062,6.646334834,6.479652328,
India,Merchandise exports to low- and middle-income economies in Middle East & North Africa (% of total merchandise exports),TX.VAL.MRCH.R4.ZS,3.989341454,3.949652778,4.073700878,3.774662184,3.753620618,5.292158644,4.8893335,4.484863585,4.377682403,5.441518309,6.346987071,4.763530494,4.480005907,3.401995287,8.419207779,13.5397786,7.448932821,6.294062672,5.327939989,4.602236913,4.541415386,5.140345043,3.256110727,4.581777468,3.690562884,3.202083926,1.944000288,1.878747788,1.716352791,0.842170884,1.868941923,2.355711746,3.964787165,3.963963318,1.813908262,1.666056426,2.244465062,2.135848299,2.332753604,2.177309629,2.503087951,3.342766909,3.569228882,3.690291935,3.915521941,3.614792609,4.040636613,4.311285902,4.170891052,4.077731011,3.772998064,3.236454754,3.983904381,4.48582587,4.403225924,3.678745753,3.290255877,
India,Merchandise exports to low- and middle-income economies in Latin America & the Caribbean (% of total merchandise exports),TX.VAL.MRCH.R3.ZS,2.489531785,2.018229167,2.562257089,2.131573939,1.80292014,1.368452922,0.600225084,0.355051701,0.234620887,0.283862499,0.377943886,0.769580927,0.391759513,0.302910442,0.676373691,0.395735135,0.37246657,0.218456232,0.245568226,0.219445617,0.341228185,0.329163731,0.134515146,0.091113809,0.110140508,0.166193396,0.216839139,0.164273428,0.327056305,0.291397794,0.387331784,0.598466171,0.766201831,0.935471421,1.130965627,0.929083872,1.058509042,1.371018346,1.464125364,1.480654063,1.828921526,1.954883459,2.113102609,1.685808021,2.237863752,2.590828061,2.852236455,3.130533278,3.073523929,2.344097191,2.977310957,3.23585824,3.836744019,3.549611738,4.47438317,3.740658713,3.582934637,
India,Merchandise exports to low- and middle-income economies in Europe & Central Asia (% of total merchandise exports),TX.VAL.MRCH.R2.ZS,0.738484964,0.91869213,1.46825968,1.15460255,0.963527812,1.053587648,0.800300113,0.797309082,0.812589413,1.352038723,1.35466946,1.763919315,2.103194789,1.854988387,1.310602517,1.670016017,2.179796329,0.960643018,0.916164185,0.898359563,1.097024917,1.314457568,2.076673632,0.991414132,1.238813519,1.133519122,1.435061965,1.176280613,0.95277489,0.260290946,0.671770527,0.375295541,2.89257032,3.747271179,3.789837198,4.314611923,3.411001571,3.716415033,3.246012568,3.359118637,3.263092691,2.827390764,2.612543847,2.644335687,2.458692349,2.349418681,2.422125398,2.416291653,2.226072462,2.071090585,2.431420172,2.369047428,2.595864721,2.640053846,3.182254545,2.838060875,3.00040652,
India,Merchandise exports to low- and middle-income economies in East Asia & Pacific (% of total merchandise exports),TX.VAL.MRCH.R1.ZS,3.669585078,2.9296875,2.331941845,1.877815137,2.512265768,1.87102634,2.375890959,2.398156223,2.678111588,3.01638089,3.127794438,2.548199569,1.752046995,2.030784626,3.053703866,3.185358487,3.603698758,2.965759144,4.505958086,4.630758331,3.826494947,3.588426679,3.100369785,2.202358387,2.082832085,1.683356116,1.760667892,1.90361387,2.147908418,3.227029288,2.724700318,4.072448503,4.275433193,5.447217722,5.356523111,6.21126088,7.373510078,7.164215316,5.325759725,5.680979076,6.711344212,8.046522813,9.823690948,10.63109773,11.22413778,11.6473637,11.81856436,12.61174819,11.80106889,12.80177992,14.56718011,12.49524756,11.46128543,11.59017471,11.02414096,10.76933807,10.75110105,
India,Merchandise exports to low- and middle-income economies outside region (% of total merchandise exports),TX.VAL.MRCH.OR.ZS,15.04377617,15.12586806,14.9345041,12.28827,12.14754389,12.92158644,11.991997,11.28690669,11.56509299,13.19058167,15.90921442,16.0004552,13.11225243,10.48861212,17.36985203,23.425366,17.3187987,14.61332749,15.21557026,14.17371237,14.04248765,15.11765369,11.88221483,10.54147821,8.987573338,7.857846477,7.069581151,6.782298784,6.816654685,5.007286997,7.36351111,9.751075297,14.8153083,16.72400036,15.19245025,17.35790935,18.33402781,18.70894509,17.24654428,17.08330289,18.32707111,20.79802258,22.76494654,23.31338395,24.74915136,25.19064189,27.24525695,29.20850143,27.64230087,27.26310565,30.10524867,27.71489165,29.55686706,30.47155348,32.1609032,29.1375013,27.76231908,
India,Merchandise exports to high-income economies (% of total merchandise exports),TX.VAL.MRCH.HI.ZS,70.73467834,70.34866898,68.71311357,70.60838673,66.47750783,63.36058129,64.18656996,66.87429924,65.91130186,61.62879099,58.52053495,59.3397631,59.17701787,62.79407837,60.16333705,55.85891939,64.39406923,63.38401319,64.41932246,66.27778559,60.32558856,54.62521186,57.69562234,64.55231358,64.66916673,64.06222028,67.69114052,72.25251091,70.71647836,87.15720976,64.17762357,70.39053265,72.16491781,72.98816212,74.9124627,69.88093421,71.79594265,75.21581245,77.09159175,78.42636573,74.04156035,69.57111427,70.49890778,69.79878052,68.92813481,69.10989002,67.32778233,64.78189776,65.45815088,65.45112542,63.52969846,62.88079875,63.82321894,60.63370936,60.42118671,63.36236455,64.85799883,
India,Merchandise exports (current US$),TX.VAL.MRCH.CD.WT,1331610000,1386210000,1403220000,1625610000,1704780000,1686720000,1953790000,1612930000,1761200000,1835070000,2026400000,2036460000,2447940000,2917170000,3926400000,4355120000,5548790000,6378200000,6670740000,7806030000,8586000000,8295000000,9358000000,9148000000,9916000000,9140000000,9399000000,11298000000,13325000000,15846000000,17969000000,17727000000,19628000000,21572000000,25022000000,30630000000,33105000000,35008000000,33437000000,35667000000,42379000000,43361000000,49250000000,58962900000,76648600000,99616000000,1.22E+11,1.50E+11,1.95E+11,1.65E+11,2.26E+11,3.03E+11,2.97E+11,3.15E+11,3.23E+11,2.67E+11,2.64E+11,
India,Merchandise exports to economies in the Arab World (% of total merchandise exports),TX.VAL.MRCH.AL.ZS,6.55500571,6.799768519,6.420037426,5.741292901,5.574274399,7.217680896,6.977616606,7.125949919,7.496423462,7.916974321,10.47966761,9.140136751,7.551728664,5.642721191,10.338855,12.19262929,13.22784432,13.20232599,12.44866386,11.48410354,11.13351738,12.04165013,10.85097458,11.60724524,9.478393734,9.856666775,7.634769266,6.958505078,6.66219227,5.248987086,6.536731146,8.983595747,9.588583822,10.27754365,9.327578569,7.97861296,9.184627934,9.608320703,10.9221257,10.80741754,10.85071788,11.69533268,11.76343441,13.09933688,14.24675256,14.0052519,15.6577302,16.52413889,20.05022115,19.49995254,19.76379337,18.50894251,20.25270698,18.83302918,19.55655036,18.78779105,18.46446508,
India,Ores and metals exports (% of merchandise exports),TX.VAL.MMTL.ZS.UN,,,6.763693042,7.902005457,8.726658654,8.93538747,10.19462393,9.957806738,10.75090073,10.91784181,11.92384052,9.916199613,8.88709066,7.270339397,8.653007215,12.3389538,10.93416534,8.065779716,7.789900868,6.603382416,7.499693942,5.56209645,5.610430684,5.383246799,5.533747782,7.56691447,5.921077556,5.11446613,5.495269735,5.584773723,5.159240366,5.323153529,4.266685772,3.701393118,3.479834777,3.286792981,3.27719888,2.902195683,2.365812778,2.461788416,2.719909317,2.958014499,3.886547631,3.610393281,5.462703591,7.240327681,7.65739383,7.568912847,6.227185379,6.227487716,6.994186399,3.829308595,3.337464834,2.975866197,3.031498004,3.28602386,3.069276012,
India,Manufactures exports (% of merchandise exports),TX.VAL.MANF.ZS.UN,,,43.43416065,42.32906498,44.80751492,48.23673437,48.2566543,48.27104745,50.28887695,54.44138588,51.68364634,53.39515186,54.67144202,52.70890004,51.94327774,44.86000221,52.45233551,55.9173268,60.20928431,58.3897656,58.64094678,59.51695837,49.19175334,50.66869643,52.8339937,58.10627038,62.54360823,66.42153384,71.54464607,71.66293638,70.68849531,72.03885848,73.51589132,73.75032466,76.2175207,73.54615402,72.42163021,74.26356771,76.04162099,79.20348955,77.83763376,74.76121668,75.3171633,76.76109626,73.71176678,71.07446914,66.25703182,64.20260433,62.78338882,66.81664637,63.76401739,62.22553206,64.7709423,61.87680707,64.00564848,70.60251702,73.06826018,
India,Insurance and financial services (% of commercial service exports),TX.VAL.INSF.ZS.WT,,,,,,,,,,,,,,,,2.891154916,2.524270488,2.254364115,1.939746552,1.701099428,1.292772209,1.428901788,1.355297873,1.303745564,1.379079725,1.287503307,1.45607675,1.618536704,1.91941265,2.676314166,2.674902715,2.173806265,3.067916801,2.807954374,2.409287674,2.516342403,2.92431579,2.563870165,2.079279095,1.699159658,3.324636489,3.500757991,4.863602333,3.276929456,3.133998388,4.019403352,5.017153937,5.664128813,5.537929188,5.548619531,6.531494649,6.403614409,5.246770591,5.729494815,5.060903788,4.706800536,4.471140845,
India,ICT goods exports (% of total goods exports),TX.VAL.ICTG.ZS.UN,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.685471626,1.956287673,1.559692076,1.611938214,1.425727608,1.108673226,1.108662997,1.074197444,0.973301949,3.450177114,1.998035608,2.182670486,1.980050891,1.591772775,0.973665883,0.889088309,,
India,Fuel exports (% of merchandise exports),TX.VAL.FUEL.ZS.UN,,,0.978182032,1.016112754,1.353886564,1.193326706,1.170544125,0.835056662,0.902340645,0.777187343,0.834097593,0.536376283,0.650747479,1.336396879,0.667233602,0.888840753,0.662988705,0.562178813,0.386469356,0.28057545,0.431298828,0.427624302,14.81376377,16.32822666,15.57428849,6.038179074,3.362514146,4.210410493,2.573873445,2.642826,2.923671919,2.36253503,2.812943736,2.232502641,1.945312208,1.659875885,1.553263141,1.148083755,0.43294793,0.238153064,3.403651605,4.918104373,4.628884942,5.959998387,8.053340174,10.32794494,14.75413958,15.89886503,17.71007867,13.38550831,16.94527497,18.51655279,18.50804064,20.3491444,19.62662315,12.07344705,10.77124499,
India,Food exports (% of merchandise exports),TX.VAL.FOOD.ZS.UN,,,38.89635199,39.86486279,36.60236836,33.41338668,32.38007607,33.6845421,31.915535,27.81682593,29.67530743,30.41985938,29.68253575,33.33653722,32.55607287,37.72970974,31.59936137,32.21496009,28.50866738,30.80389089,28.16665277,30.17757402,26.77107252,23.91611326,23.26780878,25.34597349,24.41084698,19.7211946,16.66693607,16.39118904,15.57771591,16.79722757,16.17991953,16.79386354,15.52747792,18.67904805,18.53989436,17.76174235,17.17451946,14.49321922,12.79001305,13.28184504,12.73220701,11.05751773,10.3883694,8.970116674,8.556245161,9.188044021,9.945652869,7.983044304,8.257894978,8.968366134,10.54309528,11.19488098,11.4182543,11.5526373,11.34709891,
India,Agricultural raw materials exports (% of merchandise exports),TX.VAL.AGRI.ZS.UN,,,9.257298841,8.252923511,7.990264648,7.711348153,7.598749187,6.771777821,5.701651654,5.677221025,5.556493684,5.413517092,5.826782631,5.07891775,5.959476056,3.978774927,4.175673414,3.032555779,2.853656617,3.681184633,4.99806594,4.119368054,3.437193435,3.521329859,2.678959429,2.838065918,3.504372219,2.789864176,1.974008225,2.140529509,4.05073167,2.007675519,1.595791889,1.971955088,1.192329034,1.294169639,2.53330323,2.004066084,1.656051057,1.418164643,1.258907331,1.139473046,1.062797391,1.079833355,1.203886488,1.267858549,1.717894269,1.983005667,1.735424467,1.164823488,2.006039429,1.829675587,1.954673746,2.061501155,1.57458613,1.532101146,1.37944857,
India,Export volume index (2000 = 100),TX.QTY.MRCH.XD.WD,,,,,,,,,,,,,,,,,,,,,21.1029225,21.50982741,23.49069354,22.96318792,23.23104971,22.00621915,22.63080209,26.92828858,26.02194153,30.44802188,35.04186211,35.75120663,39.58451656,45.44755846,51.79167039,66.92208486,75.84097375,70.60393398,73.73772741,83.32738945,100,108.5010192,126.5265908,133.9342968,155.4891182,189.0371529,211.2883198,242.0687267,283.2102519,266.3532423,334.7919187,384.8981312,377.9317846,409.8925126,424.4018957,415.4914018,443.9709283,
India,Medium and high-tech exports (% manufactured exports),TX.MNF.TECH.ZS.UN,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.180836619,0.187901932,0.160908668,0.172879654,0.183475185,0.193955582,0.203704334,0.207006249,0.184495951,0.180300164,0.186799869,0.214967258,0.21546251,0.221994876,0.228282776,0.225979829,0.231763905,0.239699252,0.272989822,0.2886289,0.282412482,0.276744629,0.280496334,0.286969111,0.302073979,0.338905663,,
India,"Incidence of tuberculosis (per 100,000 people)",SH.TBS.INCD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,289,288,287,285,282,279,274,268,261,254,247,241,234,228,223,217,211,
India,"Tuberculosis case detection rate (%, all forms)",SH.TBS.DTEC.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,37,35,34,34,36,36,39,41,43,44,44,44,44,43,56,59,63,
India,Tuberculosis treatment success rate (% of new cases),SH.TBS.CURE.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34,54,60,76,81,87,87,88,88,89,89,89,88,88,74,72,,
India,"Prevalence of severe wasting, weight for height (% of children under 5)",SH.SVR.WAST.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.699999809,,,,,,,7,,,,,,,6.800000191,,,,,,,,4.599999905,,,
India,"Prevalence of severe wasting, weight for height, male (% of children under 5)",SH.SVR.WAST.MA.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.600000381,,,,,,,7.5,,,,,,,7.099999905,,,,,,,,4.800000191,,,
India,"Prevalence of severe wasting, weight for height, female (% of children under 5)",SH.SVR.WAST.FE.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.699999809,,,,,,,6.5,,,,,,,6.300000191,,,,,,,,4.400000095,,,
India,"Prevalence of wasting, weight for height (% of children under 5)",SH.STA.WAST.ZS,,,,,,,,,,,,,,,,,,20.29999924,,,,,,,,,,,,21.29999924,,,21.10000038,,,,,19.29999924,,19.79999924,,,,,,,20,,,,,,,,15.10000038,,,
India,"Prevalence of wasting, weight for height, male (% of children under 5)",SH.STA.WAST.MA.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.79999924,,,,,,,20.5,,,,,,,20.70000076,,,,,,,,15.60000038,,,
India,"Prevalence of wasting, weight for height, female (% of children under 5)",SH.STA.WAST.FE.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.29999924,,,,,,,19.20000076,,,,,,,19.29999924,,,,,,,,14.5,,,
India,"Mortality caused by road traffic injury (per 100,000 people)",SH.STA.TRAF.P5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15,,,,,16.9,,,,,19.7,,,,,21.2,,
India,"Suicide mortality rate (per 100,000 population)",SH.STA.SUIC.P5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.8,,,,,17.5,,,,,17.1,,,,,15.7,,
India,"Prevalence of stunting, height for age (% of children under 5)",SH.STA.STNT.ZS,,,,,,,,,,,,,,,,,,75.09999847,,,,,,,,,,,,66.19999695,,,57.09999847,,,,,48.5,,51,,,,,,,47.90000153,,,,,,,,38.70000076,,,
India,"Prevalence of stunting, height for age, male (% of children under 5)",SH.STA.STNT.MA.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,58.5,,,,,,,51.20000076,,,,,,,47.90000153,,,,,,,,39.5,,,
India,"Prevalence of stunting, height for age, female (% of children under 5)",SH.STA.STNT.FE.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,55.70000076,,,,,,,50.90000153,,,,,,,48,,,,,,,,37.90000153,,,
India,People using safely managed sanitation services (% of population),SH.STA.SMSS.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,"People using safely managed sanitation services, urban (% of urban population)",SH.STA.SMSS.UR.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,"People using safely managed sanitation services, rural (% of rural population)",SH.STA.SMSS.RU.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.464413313,10.85878899,12.25316467,13.64754035,15.04191603,16.4362917,17.83066738,19.23325149,20.63701395,22.04195477,23.44807394,24.85537147,26.26384735,27.67350158,29.08433417,30.53217818,,
India,"Prevalence of overweight, weight for height (% of children under 5)",SH.STA.OWGH.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3.200000048,,,,,,,3.599999905,,,,,,,1.899999976,,,,,,,,,,,
India,"Prevalence of overweight, weight for height, male (% of children under 5)",SH.STA.OWGH.MA.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3.200000048,,,,,,,3.900000095,,,,,,,2.200000048,,,,,,,,,,,
India,"Prevalence of overweight, weight for height, female (% of children under 5)",SH.STA.OWGH.FE.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3.099999905,,,,,,,3.299999952,,,,,,,1.700000048,,,,,,,,,,,
India,Diarrhea treatment (% of children under 5 who received ORS packet),SH.STA.ORTH,,,,,,,,,,,,,,,,,,,,,,,,,,,21,23,,13,,,,17.5,,,,,,26.8,,,,,,,26,,,,,,,,,,,
India,Diarrhea treatment (% of children under 5 receiving oral rehydration and continued feeding),SH.STA.ORCF.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24.1,,,,,,,,,,,
India,People practicing open defecation (% of population),SH.STA.ODFC.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,65.96676722,64.24229342,62.47834838,60.71784234,58.96025816,57.2067633,55.45683364,53.70997308,51.96624472,50.22675994,48.49102265,46.7585648,45.02643091,43.29530636,41.56487035,39.83531219,,
India,"People practicing open defecation, urban (% of urban population)",SH.STA.ODFC.UR.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.49029449,22.41860771,21.34692092,20.27523413,19.20354734,18.13186055,17.06017376,15.98848698,14.91680019,13.8451134,12.77342661,11.70173982,10.63005303,9.558366244,8.486679456,7.414992667,,
India,"People practicing open defecation, rural (% of rural population)",SH.STA.ODFC.RU.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,82.21379929,80.44097905,78.66815882,76.89533858,75.12251835,73.34969811,71.57687787,69.80405764,68.0312374,66.25841717,64.48559693,62.7127767,60.93995646,59.16713623,57.39431599,55.62149575,,
India,"Maternal mortality ratio (national estimate, per 100,000 live births)",SH.STA.MMRT.NE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,540,,,,,301,,,250,,,210,,,180,170,,,,
India,"Maternal mortality ratio (modeled estimate, per 100,000 live births)",SH.STA.MMRT,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,556,538,521,504,488,471,453,434,414,395,374,354,335,316,298,280,265,250,237,225,215,206,197,189,181,174,,
India,"Prevalence of underweight, weight for age (% of children under 5)",SH.STA.MALN.ZS,,,,,,,,,,,,,,,,,,67.30000305,,,,,,,,,,,,59.5,,,50.70000076,,,,,41.09999847,,44.40000153,,,,,,,43.5,,,,,,,,29.39999962,,,
India,"Prevalence of underweight, weight for age, male (% of children under 5)",SH.STA.MALN.MA.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,52.40000153,,,,,,,45,,,,,,,43.09999847,,,,,,,,30,,,
India,"Prevalence of underweight, weight for age, female (% of children under 5)",SH.STA.MALN.FE.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,48.79999924,,,,,,,43.79999924,,,,,,,43.90000153,,,,,,,,28.70000076,,,
India,Female genital mutilation prevalence (%),SH.STA.FGMS.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,Diabetes prevalence (% of population ages 20 to 79),SH.STA.DIAB.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.39
India,Low-birthweight babies (% of births),SH.STA.BRTW.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,31.7,,,,,,30.4,,,,,,,28,,,,,,,,,,,
India,Births attended by skilled health staff (% of total),SH.STA.BRTC.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34.2,,,,,,42.3,42.5,,,,,,46.6,,52.3,,,,,,81.4,,,
India,Exclusive breastfeeding (% of children under 6 months),SH.STA.BFED.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,37,,,,,,46.4,,,,,,,,,,,
India,People using basic sanitation services (% of population),SH.STA.BASS.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21.67809241,23.16892109,24.68618368,26.20044553,27.71205154,29.22020202,30.72524765,32.22751596,33.72695489,35.22281103,36.71541192,38.20506196,39.69370903,41.18086942,42.66672606,44.15112275,,
India,"People using basic sanitation services, urban (% of urban population)",SH.STA.BASS.UR.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,50.80940322,51.78218494,52.75496666,53.72774837,54.70053009,55.67331181,56.64609353,57.61887525,58.59165697,59.56443869,60.5372204,61.51000212,62.48278384,63.45556556,64.42834728,65.401129,,
India,"People using basic sanitation services, rural (% of rural population)",SH.STA.BASS.RU.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.53551605,12.08674939,13.63798274,15.18921608,16.74044943,18.29168277,19.84291612,21.39414947,22.94538281,24.49661616,26.0478495,27.59908285,29.15031619,30.70154954,32.25278288,33.80401623,,
India,ARI treatment (% of children under 5 taken to a health provider),SH.STA.ARIC.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,69,,,,,,67,,,,,,,68.7,,,,,,,,76.9,,,
India,Pregnant women receiving prenatal care (%),SH.STA.ANVC.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,61.9,,,,,,65.1,61.8,,,,,,74.2,,75.2,,,,,,,,,
India,"Improved sanitation facilities, urban (% of urban population with access)",SH.STA.ACSN.UR,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,49.3,49.3,49.9,50.5,51.1,51.6,52.2,52.8,53.4,53.9,54.5,55.1,55.7,56.2,56.8,57.4,58,58.5,59.1,59.7,60.3,60.8,61.4,62,62.6,62.6,,
India,"Improved sanitation facilities, rural (% of rural population with access)",SH.STA.ACSN.RU,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5.6,5.6,6.6,7.6,8.6,9.6,10.6,11.6,12.6,13.5,14.5,15.5,16.5,17.5,18.5,19.5,20.5,21.5,22.5,23.5,24.5,25.5,26.5,27.5,28.5,28.5,,
India,Improved sanitation facilities (% of population with access),SH.STA.ACSN,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.8,16.9,17.8,18.8,19.8,20.8,21.7,22.7,23.7,24.6,25.6,26.6,27.6,28.6,29.6,30.6,31.6,32.6,33.6,34.6,35.5,36.5,37.5,38.5,39.5,39.6,,
India,"Number of surgical procedures (per 100,000 population)",SH.SGR.PROC.P5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,Risk of impoverishing expenditure for surgical care (% of people at risk),SH.SGR.IRSK.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,67.3,,,
India,Risk of catastrophic expenditure for surgical care (% of people at risk),SH.SGR.CRSK.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,59.6,,,
India,"Smoking prevalence, males (% of adults)",SH.PRV.SMOK.MA,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35.9,,,,,29.5,,,,,24.4,,22.8,,,20.4,,
India,"Smoking prevalence, females (% of adults)",SH.PRV.SMOK.FE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.3,,,,,4.6,,,,,2.9,,2.4,,,1.9,,
India,Prevalence of anemia among pregnant women (%),SH.PRG.ANEM,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,53.5,53.6,53.6,53.6,53.6,53.5,53.5,53.4,53.4,53.3,53.2,53.1,53,53,52.9,52.7,52.5,52.2,52,51.7,51.4,51.1,50.9,50.6,50.4,50.2,50.1,
India,Lifetime risk of maternal death (%),SH.MMR.RISK.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2.443390816,2.318494777,2.198739478,2.082070199,1.9717602,1.864498268,1.756329179,1.648419775,1.539630645,1.436015546,1.33366132,1.237830647,1.146860532,1.059820807,0.980160212,0.901757691,0.834023007,0.767995879,0.711182718,0.659912581,0.615066292,0.575766443,0.540363519,0.506482234,0.477453266,0.452792531,,
India,Lifetime risk of maternal death (1 in: rate varies by country),SH.MMR.RISK,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,41,43,45,48,51,54,57,61,65,70,75,81,87,94,100,110,120,130,140,150,160,170,190,200,210,220,,
India,Number of maternal deaths,SH.MMR.DTHS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,152000,148000,143000,139000,135000,130000,126000,121000,115000,110000,104000,99000,93000,88000,83000,77000,73000,68000,64000,60000,57000,54000,52000,49000,47000,45000,,
India,Children with fever receiving antimalarial drugs (% of children under age 5 with fever),SH.MLR.TRET.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12,,,,,,8.2,,,,,,,,,,,
India,Use of insecticide-treated bed nets (% of under-5 population),SH.MLR.NETS.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,"Incidence of malaria (per 1,000 population at risk)",SH.MLR.INCD.P3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,42.7,,,,,48.1,,,,,33.1,,,,,18.6,,
India,"Specialist surgical workforce (per 100,000 population)",SH.MED.SAOP.P5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.82,,,
India,"Physicians (per 1,000 people)",SH.MED.PHYS.ZS,0.210477665,,,,,0.204917058,,,,,0.204500005,,,,,0.204099998,,,,,0.371199995,0.270000011,,,0.396499991,,,,0.406599998,,,1.225,0.479999989,0.406699985,,,,,0.513,,0.527,0.538,0.557,0.564,0.573,0.577,0.587,0.6,0.615,0.624,0.663,0.739,0.699,,0.725,,,
India,"Nurses and midwives (per 1,000 people)",SH.MED.NUMW.P3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.377,,,,,,,,,1.169,1.185,,1.248,1.263,1.294,,1.333,1.38,1.402,1.539,1.703,,2.049,,,,
India,"Community health workers (per 1,000 people)",SH.MED.CMHW.P3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,"Hospital beds (per 1,000 people)",SH.MED.BEDS.ZS,0.458986908,,,,,,,,,,0.604499996,,,,,0.588199973,,,,,0.769699991,0.769400001,,,,0.769200027,,0.718200028,,,,0.787000001,,,,,,,,,,,0.69,0.899999976,,0.9,,,,,,0.7,,,,,,
India,"Immunization, measles (% of children ages 12-23 months)",SH.IMM.MEAS,,,,,,,,,,,,,,,,,,,,,,,,,,1,10,24,32,42,56,43,51,59,67,72,66,55,53,56,56,57,56,60,64,68,69,70,72,78,82,84,83,83,85,87,88,
India,"Immunization, DPT (% of children ages 12-23 months)",SH.IMM.IDPT,,,,,,,,,,,,,,,,,,,,,6,6,12,14,16,18,20,30,40,50,70,57,56,61,67,71,66,62,61,59,58,59,59,61,63,65,65,64,70,74,79,82,82,83,85,87,88,
India,"Immunization, HepB3 (% of one-year-old children)",SH.IMM.HEPB,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,8,6,6,29,37,38,44,73,70,79,87,88,
India,Antiretroviral therapy coverage for PMTCT (% of pregnant women living with HIV),SH.HIV.PMTC.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,Incidence of HIV (% of uninfected population ages 15-49),SH.HIV.INCD.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.02,0.02,0.03,0.04,0.05,0.05,0.06,0.06,0.05,0.05,0.04,0.04,0.03,0.03,0.03,0.02,0.02,0.02,0.02,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,
India,Adults (ages 15+) and children (ages 0-14) newly infected with HIV,SH.HIV.INCD.TL,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,63000,96000,140000,170000,210000,250000,270000,280000,280000,270000,250000,230000,200000,180000,170000,150000,140000,130000,120000,110000,100000,99000,96000,93000,89000,86000,80000,
India,Children (ages 0-14) newly infected with HIV,SH.HIV.INCD.14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,Adults (ages 15+) newly infected with HIV,SH.HIV.INCD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,61000,93000,130000,170000,200000,230000,260000,270000,260000,250000,230000,200000,180000,160000,140000,130000,120000,110000,96000,88000,85000,82000,80000,79000,77000,76000,71000,
India,Antiretroviral therapy coverage (% of people living with HIV),SH.HIV.ARTC.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,1,3,6,10,14,19,24,29,36,40,44,49,
India,"Prevalence of HIV, male (% ages 15-24)",SH.HIV.1524.MA.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.1,0.1,0.1,0.1,0.2,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,
India,"Prevalence of HIV, female (% ages 15-24)",SH.HIV.1524.FE.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.1,0.1,0.1,0.1,0.1,0.2,0.2,0.2,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,
India,Children (0-14) living with HIV,SH.HIV.0014,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,People using safely managed drinking water services (% of population),SH.H2O.SMDW.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,"People using safely managed drinking water services, urban (% of urban population)",SH.H2O.SMDW.UR.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,"People using safely managed drinking water services, rural (% of rural population)",SH.H2O.SMDW.RU.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,29.28008799,30.51457445,31.76501693,33.03141542,34.31376991,35.61208043,36.92634695,38.25656949,39.60274803,40.96488259,42.34297317,43.73701975,45.14702235,46.57298096,48.01489558,49.47276622,,
India,Improved water source (% of population with access),SH.H2O.SAFE.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,70.5,71.5,72.6,73.6,74.6,75.6,76.6,77.6,78.6,79.6,80.6,81.5,82.5,83.5,84.5,85.5,86.5,87.4,88.4,89.4,90.3,91.3,92.2,93.1,94.1,94.1,,
India,"Improved water source, urban (% of urban population with access)",SH.H2O.SAFE.UR.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,88.9,89.2,89.6,89.9,90.3,90.6,90.9,91.3,91.6,92,92.3,92.6,93,93.3,93.7,94,94.3,94.7,95,95.4,95.7,96,96.4,96.7,97.1,97.1,,
India,"Improved water source, rural (% of rural population with access)",SH.H2O.SAFE.RU.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,64.2,65.4,66.6,67.8,68.9,70.1,71.3,72.5,73.7,74.9,76.1,77.2,78.4,79.6,80.8,82,83.2,84.4,85.5,86.7,87.9,89.1,90.3,91.5,92.6,92.6,,
India,People using basic drinking water services (% of population),SH.H2O.BASW.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,80.41490389,80.9047343,81.40321398,81.89819772,82.38979322,82.87767452,83.36195516,83.8427254,84.3199329,84.79329821,85.26291161,85.72884011,86.19160786,86.65096755,87.106864,87.55914016,,
India,"People using basic drinking water services, urban (% of urban population)",SH.H2O.BASW.UR.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,92.41458412,92.4434567,92.47232929,92.50120188,92.53007447,92.55894706,92.58781965,92.61669223,92.64556482,92.67443741,92.70331,92.73218259,92.76105517,92.78992776,92.81880035,92.84767294,,
India,"People using basic drinking water services, rural (% of rural population)",SH.H2O.BASW.RU.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,75.825088,76.43568444,77.04628087,77.6568773,78.26747373,78.87807016,79.48866659,80.09926302,80.70985945,81.32045588,81.93105231,82.54164874,83.15224517,83.7628416,84.37343803,84.98403446,,
India,Demand for family planning satisfied by modern methods (% of married women with demand for family planning),SH.FPL.SATM.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,59.7,,,,,,66.6,,,,,61.7,,69.1,,63.9,,,,,,,,,
India,"Mortality rate, neonatal (per 1,000 live births)",SH.DYN.NMRT,,,,,,,,,,85.2,84.4,83.7,82.8,81.8,80.7,79.5,78.1,76.6,75,73.4,71.8,70.2,68.7,67.2,65.7,64.3,62.8,61.4,60,58.6,57.3,56.1,54.9,53.7,52.5,51.4,50.2,49,47.7,46.3,45,43.6,42.2,40.8,39.5,38.2,37,35.7,34.5,33.3,32.1,30.9,29.8,28.6,27.5,26.4,25.4,
India,"Mortality from CVD, cancer, diabetes or CRD between exact ages 30 and 70 (%)",SH.DYN.NCOM.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27,,,,,25,,,,,24,,,,,23,,
India,"Mortality rate, under-5, male (per 1,000 live births)",SH.DYN.MORT.MA,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,121.9,,,,,,,,,,86.8,,,,,,,,,,56,,,,,43.9,41.9,
India,"Mortality rate, under-5, female (per 1,000 live births)",SH.DYN.MORT.FE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,130.2,,,,,,,,,,96.3,,,,,,,,,,61.8,,,,,46.7,44.2,
India,"Mortality rate, under-5 (per 1,000 live births)",SH.DYN.MORT,245.7,241.9,238.3,234.8,231.5,228.3,225.3,222.3,219.3,216.2,213,209.7,206.1,202.2,198.1,193.6,188.8,183.6,178.2,172.8,167.5,162.5,157.7,153.4,149.2,145.2,141.3,137.3,133.4,129.6,125.9,122.4,119,115.7,112.5,109.1,105.7,102.3,98.7,95.1,91.5,87.9,84.4,81,77.7,74.4,71.2,68,64.9,61.9,58.8,55.9,53,50.3,47.7,45.2,43,
India,"Prevalence of HIV, total (% of population ages 15-49)",SH.DYN.AIDS.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.1,0.1,0.1,0.1,0.2,0.2,0.2,0.3,0.3,0.3,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,
India,Women's share of population ages 15+ living with HIV (%),SH.DYN.AIDS.FE.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27.48655232,28.11278107,28.82650467,29.64267863,30.5533301,31.46356471,32.25349294,32.92133832,33.56308052,34.12313129,34.61843912,35.07073166,35.49927481,35.9040893,36.27551807,36.61590761,36.9217566,37.20553487,37.50217586,37.82367676,38.18675266,38.59443443,39.01227806,39.41348413,39.78809992,40.12028998,40.41640386,
India,"Probability of dying at age 5-14 years (per 1,000 children age 5)",SH.DYN.0514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.9,,,,,,,,,,14.8,,,,,,,,,,9,,,,,6.7,6.3,
India,Number of neonatal deaths,SH.DTH.NMRT,,,,,,,,,,,1831833,1843287,1849678,1852912,1853013,1850606,1844193,1836441,1827156,1818115,1808333,1796638,1784464,1768429,1748166,1726190,1697340,1667869,1635957,1602180,1569909,1539722,1509237,1478700,1448268,1420765,1390584,1360160,1326400,1289128,1253857,1215043,1175465,1135040,1096413,1056348,1017141,973379,930987,887858,844966,803346,766308,729051,696675,666286,639826,
India,"Cause of death, by non-communicable diseases (% of total)",SH.DTH.NCOM.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,46.1,,,,,50,,,,,55.7,,,,,60.8,,
India,Number of under-five deaths,SH.DTH.MORT,4477295,4472313,4469176,4465750,4463988,4462293,4463462,4464279,4465284,4464783,4462465,4457661,4444923,4423573,4395171,4355508,4307889,4250808,4189560,4128786,4069210,4014124,3959076,3909698,3854586,3795096,3728961,3651111,3568642,3483073,3395698,3310670,3226314,3143612,3062944,2976588,2890170,2803539,2710619,2616653,2521397,2424608,2329128,2234895,2141610,2046222,1950741,1852189,1753779,1656272,1555561,1461388,1369699,1286848,1210443,1140276,1080796,
India,"Cause of death, by injury (% of total)",SH.DTH.INJR.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.2,,,,,10.4,,,,,10.9,,,,,11.1,,
India,Number of infant deaths,SH.DTH.IMRT,2999520,2996822,2994418,2992288,2990549,2989634,2990254,2993123,2996687,3001071,3003798,3004056,2998791,2989590,2974060,2952781,2926908,2894970,2861627,2833267,2803789,2774081,2744959,2715111,2683883,2643205,2601166,2550619,2495688,2440127,2384849,2330784,2275924,2226181,2173643,2121284,2066303,2011132,1952519,1892903,1834868,1772882,1709782,1650996,1588050,1528865,1467215,1400244,1333882,1266175,1195707,1129205,1067732,1009370,956818,909704,867336,
India,"Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions (% of total)",SH.DTH.COMM.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,43.7,,,,,39.5,,,,,33.4,,,,,28.1,,
India,Number of deaths ages 5-14 years,SH.DTH.0514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,448754,,,,,,,,,,356690,,,,,,,,,,228044,,,,,170582,160082,
India,"Condom use, population ages 15-24, male (% of males ages 15-24)",SH.CON.1524.MA.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.6,,,,,,,,,,,
India,"Condom use, population ages 15-24, female (% of females ages 15-24)",SH.CON.1524.FE.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5.6,,,,,,,,,,,
India,Prevalence of anemia among non-pregnant women (% of women ages 15-49),SH.ANM.NPRG.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,55.6,55.2,54.9,54.6,54.3,54.1,53.9,53.7,53.5,53.4,53.3,53.3,53.3,53.3,53.3,53.3,53,52.7,52.4,52,51.7,51.5,51.3,51.2,51.2,51.3,51.5,
India,Prevalence of anemia among children (% of children under 5),SH.ANM.CHLD.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,77.1,76.4,75.8,75.1,74.3,73.5,72.6,71.7,70.8,69.8,68.8,67.9,67,66.1,65.4,64.5,63.6,62.7,61.8,61,60.4,59.7,59.1,58.5,58,57.6,57.3,
India,Prevalence of anemia among women of reproductive age (% of women ages 15-49),SH.ANM.ALLW.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,55.4,55.1,54.8,54.5,54.3,54,53.8,53.6,53.5,53.4,53.3,53.3,53.3,53.3,53.3,53.2,53,52.7,52.4,52,51.7,51.5,51.3,51.2,51.1,51.2,51.4,
India,"Total alcohol consumption per capita (liters of pure alcohol, projected estimates, 15+ years of age)",SH.ALC.PCAP.LI,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.6,,
India,Women who believe a husband is justified in beating his wife when she refuses sex with him (%),SG.VAW.REFU.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.1,,,,,,,,,,,
India,Women who believe a husband is justified in beating his wife (any of five reasons) (%),SG.VAW.REAS.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,47.2,,,,,,,,,,,
India,Women who believe a husband is justified in beating his wife when she neglects the children (%),SG.VAW.NEGL.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34.7,,,,,,,,,,,
India,Women who believe a husband is justified in beating his wife when she goes out without telling him (%),SG.VAW.GOES.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,29,,,,,,,,,,,
India,Women who believe a husband is justified in beating his wife when she burns the food (%),SG.VAW.BURN.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.4,,,,,,,,,,,
India,Women who believe a husband is justified in beating his wife when she argues with him (%),SG.VAW.ARGU.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,30.3,,,,,,,,,,,
India,Proportion of women subjected to physical and/or sexual violence in the last 12 months (% of women age 15-49),SG.VAW.1549.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.9,,,,,,,,,,,
India,"Proportion of time spent on unpaid domestic and care work, male (% of 24 hour day)",SG.TIM.UWRK.MA,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,"Proportion of time spent on unpaid domestic and care work, female (% of 24 hour day)",SG.TIM.UWRK.FE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,Nondiscrimination clause mentions gender in the constitution (1=yes; 0=no),SG.NOD.CONS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,1,,1,,1,,
India,Mothers are guaranteed an equivalent position after maternity leave (1=yes; 0=no),SG.MMR.LEVE.EP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,0,,0,,
India,Legislation exists on domestic violence (1=yes; 0=no),SG.LEG.DVAW,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,1,,
India,Law mandates nondiscrimination based on gender in hiring (1=yes; 0=no),SG.LAW.NODC.HR,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,1,,1,,1,,
India,Law mandates paid or unpaid maternity leave (1=yes; 0=no),SG.LAW.LEVE.PU,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,1,,1,,1,,
India,Law mandates equal remuneration for females and males for work of equal value (1=yes; 0=no),SG.LAW.EQRM.WK,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,
India,Law prohibits or invalidates child or early marriage (1=yes; 0=no),SG.LAW.CHMR,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,
India,Nonpregnant and nonnursing women can do the same jobs as men (1=yes; 0=no),SG.JOB.NOPN.EQ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,0,,0,,
India,Proportion of seats held by women in national parliaments (%),SG.GEN.PARL.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,,,,,,,7.2,8.1,8.4,9,8.8,8.8,8.8,8.3,8.3,8.3,9.1,9.1,10.8,10.8,11,11,11,11.4,12,12,11.8
India,"Women making their own informed decisions regarding sexual relations, contraceptive use and reproductive health care (% of women age 15-49)",SG.DMK.SRCR.FN.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,"Women participating in the three decisions (own health care, major household purchases, and visiting family) (% of women age 15-49)",SG.DMK.ALLD.FN.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,39.3,,,,,,,,,,,
India,"Government expenditure on education, total (% of GDP)",SE.XPD.TOTL.GD.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3.308470011,3.516340017,4.347439766,4.256840229,,,3.546000004,3.296499968,3.135930061,3.093549967,,,3.310760021,3.424160004,3.838660002,3.865880013,3.84236002,,,,
India,"Government expenditure on education, total (% of government expenditure)",SE.XPD.TOTL.GB.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.90414047,14.77775002,17.64340973,17.49650002,,,12.92222977,11.55218983,11.53215027,11.78108978,,,10.82184029,11.74277973,13.67652035,14.06268024,14.09095955,,,,
India,Expenditure on tertiary education (% of government expenditure on education),SE.XPD.TERT.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.54496956,20.2951107,,,20.08727074,20.01231956,19.55496025,20.28408051,,,36.45114136,36.07651901,34.68074036,32.16690063,28.52687073,,,,
India,"Government expenditure per student, tertiary (% of GDP per capita)",SE.XPD.TERT.PC.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,94.9299469,,,68.84980774,61.65663147,58.61140823,55.81781006,,,78.1008606,72.30458069,61.50944138,54.32378006,49.15110016,,,,
India,Expenditure on secondary education (% of government expenditure on education),SE.XPD.SECO.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,37.80221939,40.09061813,,,41.66588974,41.61946106,42.88835144,42.50008011,,,34.91827011,36.98519897,36.96253967,38.73249817,41.35293961,,,,
India,"Government expenditure per student, secondary (% of GDP per capita)",SE.XPD.SECO.PC.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24.8510704,24.8281002,23.46718025,,19.90199089,17.97187042,16.92281914,16.42254066,,,13.68929958,14.27678967,15.36246967,15.6839304,16.81299973,,,,
India,Expenditure on primary education (% of government expenditure on education),SE.XPD.PRIM.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,30.0463295,37.5573616,,,36.076931,36.37517929,35.58924866,35.38399124,,,26.68135071,25.20659065,26.54744911,27.21283913,28.40115929,,,,
India,"Government expenditure per student, primary (% of GDP per capita)",SE.XPD.PRIM.PC.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.94011974,14.54168034,13.45489025,,11.12290001,,,,,,7.643559933,7.57006979,9.109769821,9.386770248,9.767550468,,,,
India,"All education staff compensation, total (% of total expenditure in public institutions)",SE.XPD.MTOT.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,90.9175415,90.28598785,86.7106781,,86.95487213,86.52335358,86.20124817,,,,,,,,,,,,
India,"All education staff compensation, tertiary (% of total expenditure in tertiary public institutions)",SE.XPD.MTER.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,98.21363068,98.52993011,98.52947998,,98.78877258,98.04254913,97.32943726,,,,,,,,,,,,
India,"All education staff compensation, secondary (% of total expenditure in secondary public institutions)",SE.XPD.MSEC.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,86.02082062,87.03315735,83.52481079,,83.52481079,83.13076019,83.13076019,,,,,,,,,,,,
India,"All education staff compensation, primary (% of total expenditure in primary public institutions)",SE.XPD.MPRM.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,86.02082062,88.44239807,83.52481079,,83.52481079,83.13076019,83.13076019,,,,,,,,,,,,
India,"Current education expenditure, total (% of total expenditure in public institutions)",SE.XPD.CTOT.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,98.1342926,96.10655212,,,95.45175934,95.40070343,95.18502045,,,,,,,,,,,,
India,"Current education expenditure, tertiary (% of total expenditure in tertiary public institutions)",SE.XPD.CTER.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,98.43038177,98.81993103,,,99.037117,98.29631042,97.54556274,,,,,,,,,,,,
India,"Current education expenditure, secondary (% of total expenditure in secondary public institutions)",SE.XPD.CSEC.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,97.48744965,94.97612,,,94.40557098,94.53369904,94.53369904,,,,,,,,,,,,
India,"Current education expenditure, primary (% of total expenditure in primary public institutions)",SE.XPD.CPRM.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,97.48744965,95.52255249,,,94.40557098,94.53369904,94.53369904,,,,,,,,,,,,
India,"Tertiary education, academic staff (% female)",SE.TER.TCHR.FE.ZS,,,,,,,,,,,,,15.77865982,15.91396046,,16.30894089,16.6532402,17.2463398,17.59761047,18.30664063,18.22192001,,,,19.52057076,20.58554077,20.97356987,21.08283043,,,,,,,,,,,,,36.97154999,36.98532867,36.94704056,37.02830124,40.00006866,,,,,,,,,39.04602814,39.02882004,38.61436844,,
India,"School enrollment, tertiary, male (% gross)",SE.TER.ENRR.MA,,,,,,,,,,,,7.541820049,,7.590429783,,,7.35063982,7.017879963,7.228889942,7.090929985,7.109809875,7.455190182,6.877439976,7.734970093,8.149880409,7.945580006,8.090049744,8.566760063,7.304530144,7.556519985,7.734469891,7.771039963,,,,7.000179768,7.737870216,8.056659698,,,11.44225025,11.50102043,11.9846096,12.64632034,13.06398964,12.50942993,13.3429203,15.44540024,,18.77191925,20.61383057,25.49353981,,24.64006042,25.74317932,27.00402069,,
India,"School enrollment, tertiary, female (% gross)",SE.TER.ENRR.FE,,,,,,,,,,,,2.182879925,,2.231379986,,,2.445260048,2.51673007,2.603499889,2.695630074,2.682670116,2.901309967,2.882309914,3.234570026,3.413049936,3.572119951,3.742789984,3.938730001,3.636059999,3.810889959,4.028409958,4.161839962,,,,3.980560064,4.71765995,4.956970215,,,7.500870228,7.828969955,8.315839767,8.540929794,8.734560013,8.804860115,9.590040207,10.74615955,,13.20456028,14.96807003,19.98393059,,23.06390953,25.30591011,26.73185921,,
India,"School enrollment, tertiary (% gross)",SE.TER.ENRR,,,,,,,,,,,,4.951029778,,5.024750233,,,5.009679794,4.868989944,5.019159794,4.989820004,4.992060184,5.275249958,4.964710236,5.579840183,5.880720139,5.849510193,6.005340099,6.346849918,5.544620037,5.759439945,5.956150055,6.038839817,,,,5.550330162,6.28704977,6.566959858,,,9.547439575,9.73581028,10.22144985,10.67383957,10.98427963,10.73015976,11.54055977,13.18877029,15.11709976,16.1029892,17.91148949,22.86137009,24.36532974,23.89011002,25.53544998,26.87487984,,
India,"Pupil-teacher ratio, tertiary",SE.TER.ENRL.TC.ZS,,,,,,,,,,,,,,12.96238995,,,12.90746975,12.38057041,12.93155956,13.86907959,11.81682968,,,,14.08528042,14.58098984,14.76290989,15.02733994,,,,,,,,,,,,,23.56871986,23.80398941,24.67456055,26.38546944,22.00003052,,,,,,,,,21.53121948,24.47278976,24.28976059,,
India,"Educational attainment, at least completed short-cycle tertiary, population 25+, total (%) (cumulative)",SE.TER.CUAT.ST.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.893010139,,,,,,
India,"Educational attainment, at least completed short-cycle tertiary, population 25+, male (%) (cumulative)",SE.TER.CUAT.ST.MA.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.62082958,,,,,,
India,"Educational attainment, at least completed short-cycle tertiary, population 25+, female (%) (cumulative)",SE.TER.CUAT.ST.FE.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.092760086,,,,,,
India,"Educational attainment, at least Master's or equivalent, population 25+, total (%) (cumulative)",SE.TER.CUAT.MS.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,"Educational attainment, at least Master's or equivalent, population 25+, male (%) (cumulative)",SE.TER.CUAT.MS.MA.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,"Educational attainment, at least Master's or equivalent, population 25+, female (%) (cumulative)",SE.TER.CUAT.MS.FE.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,"Educational attainment, Doctoral or equivalent, population 25+, total (%) (cumulative)",SE.TER.CUAT.DO.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,"Educational attainment, Doctoral or equivalent, population 25+, male (%) (cumulative)",SE.TER.CUAT.DO.MA.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,"Educational attainment, Doctoral or equivalent, population 25+, female (%) (cumulative)",SE.TER.CUAT.DO.FE.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,"Educational attainment, at least Bachelor's or equivalent, population 25+, total (%) (cumulative)",SE.TER.CUAT.BA.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.136289597,,,,,,
India,"Educational attainment, at least Bachelor's or equivalent, population 25+, male (%) (cumulative)",SE.TER.CUAT.BA.MA.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.48530006,,,,,,
India,"Educational attainment, at least Bachelor's or equivalent, population 25+, female (%) (cumulative)",SE.TER.CUAT.BA.FE.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.724899769,,,,,,
India,Adolescents out of school (% of lower secondary school age),SE.SEC.UNER.LO.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.76846981,,,,
India,"Adolescents out of school, male (% of male lower secondary school age)",SE.SEC.UNER.LO.MA.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.26907921,,,,
India,"Adolescents out of school, female (% of female lower secondary school age)",SE.SEC.UNER.LO.FE.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.98087025,,,,
India,"Secondary education, teachers (% female)",SE.SEC.TCHR.FE.ZS,,,,,,,,,,,,23.04744911,23.99558067,23.84654045,,25.27248955,,,,,,,,,,,,,,,,,,,,,,,,34.26403046,34.26464081,34.27693176,34.17024994,34.62850189,33.92116928,,,,,38.98080826,40.04373169,41.07273102,,45.14564133,43.21327972,43.15283966,,
India,"Secondary education, teachers, female",SE.SEC.TCHR.FE,,,,,,,,,,,,222280,245332,256273,,286378,,,,,,,,,,,,,,,,,,,,,,,,683677,723857,741944,805673,868260,877273,,,,,1567810,1702522,1802043,,1751085,1760482,1766217,,
India,"Secondary education, teachers",SE.SEC.TCHR,,,,,,,,,,,,964445,1022405,1074676,,1133161,,,,,,,,,,,,,,,,,,,,,,,,1995320,2112548,2164558,2357820,2507357,2586211,,,,,4022005,4251657,4387444,,3878747,4073937,4092933,,
India,Trained teachers in secondary education (% of total teachers),SE.SEC.TCAQ.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,Trained teachers in upper secondary education (% of total teachers),SE.SEC.TCAQ.UP.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,"Trained teachers in upper secondary education, male (% of male teachers)",SE.SEC.TCAQ.UP.MA.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,"Trained teachers in upper secondary education, female (% of female teachers)",SE.SEC.TCAQ.UP.FE.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,"Trained teachers in secondary education, male (% of male teachers)",SE.SEC.TCAQ.MA.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,Trained teachers in lower secondary education (% of total teachers),SE.SEC.TCAQ.LO.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,"Trained teachers in lower secondary education, male (% of male teachers)",SE.SEC.TCAQ.LO.MA.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,"Trained teachers in lower secondary education, female (% of female teachers)",SE.SEC.TCAQ.LO.FE.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,"Trained teachers in secondary education, female (% of female teachers)",SE.SEC.TCAQ.FE.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,Progression to secondary school (%),SE.SEC.PROG.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,86.83952332,89.83291626,,,,,,,,,,,,92.58840942,90.54918671,93.10617828,90.65738678,,,,,,,,91.99107361,,,91.17106628,,,,
India,"Progression to secondary school, male (%)",SE.SEC.PROG.MA.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,90.13878632,92.99211884,,,,,,,,,,,,94.66748047,92.12846375,94.73468018,88.7098999,,,,,,,,91.62751007,,,91.14427948,,,,
India,"Progression to secondary school, female (%)",SE.SEC.PROG.FE.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,81.45205688,84.76582336,,,,,,,,,,,,89.73510742,88.40634918,90.96868134,93.20716858,,,,,,,,92.39498138,,,91.19937897,,,,
India,"School enrollment, secondary, private (% of total secondary)",SE.SEC.PRIV.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,42.37345123,42.56312943,41.99372101,41.89291,,,,,,,,,,47.9946785,50.16532135,50.17245102,,
India,"School enrollment, secondary, male (% net)",SE.SEC.NENR.MA,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,61.37519836,,,,
India,"School enrollment, secondary, female (% net)",SE.SEC.NENR.FE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,62.1779213,,,,
India,"School enrollment, secondary (% net)",SE.SEC.NENR,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,61.75524139,,,,
India,"School enrollment, secondary, male (% gross)",SE.SEC.ENRR.MA,,,,,,,,,,,,33.22198105,33.71825027,34.16468811,,34.60129166,34.73738098,35.3503685,35.69348907,,38.41004181,39.97975159,42.07854843,43.17604828,46.01404953,,48.09386826,47.45246124,47.19923019,47.02033997,,,,55.58525085,55.45386124,55.11817169,54.86207962,54.87720108,,50.51202011,52.43920898,52.56478882,53.96052933,54.9967308,56.83409119,59.16189957,59.75497055,61.5116806,64.00556946,62.07674026,65.49198151,68.23034668,70.7766037,68.59767914,73.81169891,73.537323,,
India,"School enrollment, secondary, female (% gross)",SE.SEC.ENRR.FE,,,,,,,,,,,,14.01502991,14.4611702,14.97056007,,15.97609997,16.16006088,16.6830101,17.09473038,,18.72332954,20.05348015,20.93626022,23.90918922,23.73657036,,25.88953972,25.79080009,26.25032043,26.80400085,,,,34.6628418,35.47568893,35.22574997,35.36220169,36.4902916,,35.35110092,37.09803009,37.53514099,40.01895905,44.21030045,45.84783936,48.72946167,49.96673965,53.04428864,56.75281143,57.27074051,60.85322952,64.41567993,67.3730011,69.23033905,74.79177856,74.45054626,,
India,"School enrollment, secondary (% gross)",SE.SEC.ENRR,,,,,,,,,,,,24.02639008,24.49538994,24.96640015,,25.66390038,25.81777954,26.38726997,26.76132965,,28.94630051,30.39611053,31.91077042,33.90954971,35.29776001,,37.4091301,37.0304718,37.12025833,37.29241943,,,,45.51369858,45.8368187,45.54281998,45.47692108,46.03047943,,43.22161102,45.06362152,45.34122849,47.26625824,49.82318115,51.57170105,54.17274094,55.0823288,57.47719955,60.55574036,59.79393005,63.29093933,66.42167664,69.16414642,68.89720917,74.2754364,73.96920013,,
India,"Secondary education, vocational pupils (% female)",SE.SEC.ENRL.VO.FE.ZS,,,,,,,,,,,,37.60840988,35.73315048,36.78202057,,38.12242889,38.40444183,31.73969078,31.8652401,,28.24291039,32.44171906,28.78063011,29.2235508,29.4810791,,29.51427078,27.03203964,28.37424088,31.63150978,,,,12.72998047,13.07287979,13.9861002,15.4847002,15.45541,,20.08003044,20.4151001,16.62318039,17.43733978,15.16506958,17.6237793,20.08258057,22.54125977,25.00003052,24.99996948,,,,,17.0717392,16.9251709,16.47587967,,
India,"Secondary education, vocational pupils",SE.SEC.ENRL.VO,,,,,,,,,,,,219193,227892,224607,,231470,243589,399128,404720,,543949,425224,533105,543589,585579,,677164,730300,741715,765022,,,,826906,853752,780682,731012,770688,,557310,618116,513548,619303,710376,740942,742330,749510,742331,829377,,,,,1501452,1590879,1754880,,
India,"Pupil-teacher ratio, upper secondary",SE.SEC.ENRL.UP.TC.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,31.05890083,30.85898972,28.43367004,,28.06377983,,,,,21.15715027,20.63462067,20.66773033,,32.05593109,33.29241943,33.01958084,,
India,"Pupil-teacher ratio, secondary",SE.SEC.ENRL.TC.ZS,,,,,,,,,,,,21.92317963,21.48303986,21.23763084,,21.61647987,,,,,,,,,,,,,,,,,,,,,,,,33.62363052,33.62314987,33.44458008,32.32463837,32.32492828,32.69998932,,,,,25.13929939,25.32821083,25.92120934,,30.78326988,31.77246094,31.65018082,,
India,"Pupil-teacher ratio, lower secondary",SE.SEC.ENRL.LO.TC.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,36.94501877,,38.9601593,37.77864075,,,35.64982986,35.49998856,35.74998856,,37.20000076,,,,,29.74719048,31.06842041,32.8803215,,29.76622009,30.45495033,30.45145988,,
India,"Secondary education, general pupils (% female)",SE.SEC.ENRL.GC.FE.ZS,,,,,,,,,,,,27.82571983,28.19623947,28.65567017,,29.79286957,29.9713707,30.33540916,30.6600399,30.87393951,31.14583015,31.7210598,31.5954895,33.97972107,32.39043045,33.18122101,33.36075974,33.61640167,34.11626053,34.63454819,35.02249146,35.68180084,35.99750137,36.98337936,37.58290863,37.51290131,37.66801834,38.39894104,,39.49163818,39.74703979,39.95304108,40.8445015,42.80237961,42.80406952,43.21012115,43.4753685,44.12034988,44.73950958,,,,,47.96144867,48.02788925,48.02727127,,
India,"Secondary education, general pupils",SE.SEC.ENRL.GC,,,,,,,,,,,,20924504,21736480,22598960,,24263480,24952526,25865968,26773872,28818456,30048486,32323172,34483888,37379404,39681304,42106752,43807380,44143356,45137324,46256856,52157888,54180392,55673664,61418728,63262224,64425676,65902708,68101704,,66532584,70412400,71879176,75596384,80339752,83828136,88719464,90779920,95306728,100954560,,,,,117899080,127848112,127787176,,
India,CPIA property rights and rule-based governance rating (1=low to 6=high),IQ.CPA.PROP.XQ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3.5,3.5,3.5,3.5,3.5,3.5,3.5,3.5,3.5,,,,
India,CPIA equity of public resource use rating (1=low to 6=high),IQ.CPA.PRES.XQ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,4,4,4,4,4,4,,,,
India,CPIA quality of public administration rating (1=low to 6=high),IQ.CPA.PADM.XQ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3.5,3.5,3.5,3.5,3.5,3.5,3.5,3.5,3.5,,,,
India,CPIA macroeconomic management rating (1=low to 6=high),IQ.CPA.MACR.XQ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,,,,
India,IDA resource allocation index (1=low to 6=high),IQ.CPA.IRAI.XQ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3.766666667,3.808333333,3.85,3.8,3.766666667,3.741666667,3.716666667,3.7,3.7,,,,
India,CPIA building human resources rating (1=low to 6=high),IQ.CPA.HRES.XQ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,4,4,4,4,4,4,,,,
India,CPIA gender equality rating (1=low to 6=high),IQ.CPA.GNDR.XQ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3.5,3.5,3.5,3.5,3.5,3.5,3,3,3,,,,
India,CPIA fiscal policy rating (1=low to 6=high),IQ.CPA.FISP.XQ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,3.5,3.5,3.5,3.5,3.5,3.5,3.5,3.5,,,,
India,CPIA financial sector rating (1=low to 6=high),IQ.CPA.FINS.XQ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,4,4,4,4,3.5,3.5,,,,
India,CPIA quality of budgetary and financial management rating (1=low to 6=high),IQ.CPA.FINQ.XQ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,4,4,3.5,3.5,3.5,3.5,,,,
India,CPIA policy and institutions for environmental sustainability rating (1=low to 6=high),IQ.CPA.ENVR.XQ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3.5,3.5,3.5,3.5,3.5,3.5,3.5,4,4,,,,
India,CPIA economic management cluster average (1=low to 6=high),IQ.CPA.ECON.XQ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,4.166666667,4.166666667,4.2,4,4,4,4,4,,,,
India,CPIA debt policy rating (1=low to 6=high),IQ.CPA.DEBT.XQ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.5,4.5,4.5,4.5,4,4,4,4,4,,,,
India,CPIA business regulatory environment rating (1=low to 6=high),IQ.CPA.BREG.XQ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3.5,3.5,3.5,3.5,3.5,3.5,3,3,3,,,,
India,"Trademark applications, total",IP.TMK.TOTL,,,,6707,6594,6654,6767,6611,7466,7847,7400,8423,7593,8141,8595,9423,10466,10401,12201,12668,,14397,14691,15870,16306,15914,17810,18227,19582,18846,20681,21994,22982,27485,37097,42723,43234,43302,51704,65730,84275,90236,94120,92251,78996,85669,103419,123514,130172,141943,189925,198547,190850,200769,222235,,,
India,"Trademark applications, resident, by count",IP.TMK.RSCT,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,63906,73308,88210,117014,119371,134403,172120,176386,176044,183172,200144,250586,,
India,"Trademark applications, direct resident",IP.TMK.RESD,,,,5399,5207,5318,5521,5308,6141,6335,6099,7072,6552,6810,7394,8418,9481,9680,11226,11373,,13212,12550,13049,14694,14189,14165,15061,15059,17047,18713,19980,20928,24623,33679,38109,,,,60337,67262,79746,88190,76801,63906,73308,88210,117014,119371,134403,172120,176386,176044,183172,200140,250585,,
India,"Trademark applications, direct nonresident",IP.TMK.NRES,,,,1308,1387,1336,1246,1303,1325,1512,1301,1351,1041,1331,1201,1005,985,721,975,1295,,1185,2141,2821,1612,1725,3645,3166,4523,1799,1968,2014,2054,2862,3418,4614,,,,5393,17013,10490,5930,15450,15090,12361,15211,6500,10801,7540,17806,22161,14807,19646,23613,24224,,
India,"Trademark applications, nonresident, by count",IP.TMK.NRCT,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15090,12361,15211,6500,10801,7540,17806,22161,14809,25665,37582,39161,,
India,"Patent applications, residents",IP.PAT.RESD,721,774,,878,902,948,894,1125,1217,1288,1278,1416,1322,1118,1268,1122,1324,1186,1173,1053,1207,1067,1128,,1003,982,999,988,1033,1048,1147,1267,1248,1209,1588,1545,1661,1926,2247,2206,2206,2379,2693,3425,4014,4721,5686,6296,6425,7262,8853,8841,9553,10669,12040,12579,,
India,"Patent applications, nonresidents",IP.PAT.NRES,3782,4515,,4798,4799,5054,4535,4065,4141,4158,3864,2929,2373,2372,2265,1917,1769,1702,1799,1857,1817,1834,1948,,2291,2493,2497,2520,2504,2600,2673,2328,2176,2511,3212,5021,6901,8229,6707,2620,6332,8213,8772,9188,13452,19661,23242,28922,30387,27025,30909,33450,34402,32362,30814,33079,,
India,Scientific and technical journal articles,IP.JRN.ARTC.SC,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20873.8,21944.4,23622.8,26099.7,28734.7,33090.1,38321.9,43421.1,49101.4,55646.4,65915.9,80515.4,88272.7,93349.4,,,,
India,"Industrial design applications, resident, by count",IP.IDS.RSCT,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3093,3407,3584,3873,4308,4267,4416,5156,5100,5182,6168,6829,,
India,"Industrial design applications, nonresident, by count",IP.IDS.NRCT,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1009,1542,1937,2529,2249,1825,2622,3060,3445,3315,3141,3461,,
India,Public private partnerships investment in water and sanitation (current US$),IE.PPN.WATR.CD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2100000,,,110750000,,,142250000,75900000,23530000,,,115600000,135100000,,18500000,,
India,Public private partnerships investment in transport (current US$),IE.PPN.TRAN.CD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1900000,,,,125000000,,12200000,405000000,301600000,466700000,96400000,350800000,573600000,579140000,1141400000,1526510000,9904770000,3924920000,5254040000,4871750000,15494800000,17667500000,22034800000,5136400000,2931200000,2047220000,2623120000,
India,Public private partnerships investment in telecom (current US$),IE.PPN.TELE.CD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,Public private partnerships investment in energy (current US$),IE.PPN.ENGY.CD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1047700000,311300000,1008300000,1553100000,961200000,922300000,2207400000,1828900000,240000000,10500000,832870000,2350070000,542790000,4765230000,9344850000,12415880000,21222600000,29608760000,21011250000,8904400000,2952700000,2816300000,2086770000,1686830000,
India,Investment in water and sanitation with private participation (current US$),IE.PPI.WATR.CD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2100000,,,110750000,,,142250000,75900000,23530000,,,115600000,135100000,,18500000,,
India,Investment in transport with private participation (current US$),IE.PPI.TRAN.CD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,125000000,,182000000,405000000,301600000,466700000,96400000,350800000,719170000,579140000,1141400000,1526510000,10028470000,3924920000,5254040000,4871750000,15494800000,17667500000,22034800000,5136400000,2931200000,2047220000,2623120000,
India,Investment in telecoms with private participation (current US$),IE.PPI.TELE.CD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,96700000,682800000,1228700000,3827000000,672900000,1045400000,681600000,3415100000,5008400000,2079700000,3701220000,5665750000,6823200000,8168250000,9933800000,7829800000,20335300000,4242300000,3817300000,7358300000,3617380000,,,
India,Investment in ICT with private participation (current US$),IE.PPI.ICTI.CD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,Investment in energy with private participation (current US$),IE.PPI.ENGY.CD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1050700000,311300000,1008300000,1553100000,969500000,1066300000,2499500000,1953780000,240000000,390320000,913170000,4256470000,943130000,5500800000,10236450000,12889380000,24503850000,34474510000,22038050000,9246100000,3104900000,2816300000,2086770000,1686830000,
India,Procedures to build a warehouse (number),IC.WRH.PROC,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,32.5,32.5,32.5,32.5,30.1
India,Time required to build a warehouse (days),IC.WRH.DURS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,180.4,180.4,180.4,180.4,143.9
India,Total tax rate (% of commercial profits),IC.TAX.TOTL.CP.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,55.7,55.5,55.5,55.3,55.3
India,Profit tax (% of commercial profits),IC.TAX.PRFT.CP.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.7,23.4,23.4,23.6,23.5
India,Tax payments (number),IC.TAX.PAYM,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35,35,35,27,13
India,Other taxes payable by businesses (% of commercial profits),IC.TAX.OTHR.CP.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.2,11.3,11.3,11.3,11.3
India,Number of visits or required meetings of affected firms with tax officials,IC.TAX.METG,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3.1,,,
India,Labor tax and contributions (% of commercial profits),IC.TAX.LABR.CP.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.7,20.7,20.7,20.5,20.5
India,Firms expected to give gifts in meetings with tax officials (% of firms),IC.TAX.GIFT.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,52.3,,,,,,,,15.3,,,
India,Time to prepare and pay taxes (hours),IC.TAX.DURS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,251,251,251,249,214
India,"Start-up procedures to register a business, male (number)",IC.REG.PROC.MA,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.5,13.9,12.9,12.9,11.5
India,"Start-up procedures to register a business, female (number)",IC.REG.PROC.FE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.5,13.9,12.9,12.9,11.5
India,Start-up procedures to register a business (number),IC.REG.PROC,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13,14,13,13,12
India,"Time required to start a business, male (days)",IC.REG.DURS.MA,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,32.6,35,30,28.5,29.8
India,"Time required to start a business, female (days)",IC.REG.DURS.FE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,32.6,35,30,28.5,29.8
India,Time required to start a business (days),IC.REG.DURS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,32.6,35,30,28.5,29.8
India,Cost of business start-up procedures (% of GNI per capita),IC.REG.COST.PC.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,41.2,16.2,14.3,13.8,14.8
India,"Cost of business start-up procedures, male (% of GNI per capita)",IC.REG.COST.PC.MA.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,41.2,16.2,14.3,13.8,14.8
India,"Cost of business start-up procedures, female (% of GNI per capita)",IC.REG.COST.PC.FE.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,41.2,16.2,14.3,13.8,14.8
India,Procedures to register property (number),IC.PRP.PROC,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,8,8
India,Time required to register property (days),IC.PRP.DURS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,47,46.8,46.8,53,53
India,Time required to enforce a contract (days),IC.LGL.DURS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1445,1445,1445,1445,1445
India,Strength of legal rights index (0=weak to 12=strong),IC.LGL.CRED.XQ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,8
India,Time to resolve insolvency (years),IC.ISV.DURS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.3,4.3,4.3,4.3,4.3
India,"Time to import, documentary compliance (hours)",IC.IMP.TMDC,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,63,63,61,
India,"Time to import, border compliance (hours)",IC.IMP.TMBC,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,287,287,283,
India,Time to import (days),IC.IMP.DURS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.3,19.3,9.9,9.4,9.4,9.4,9.4,9.4,21.1,21.1,,,
India,Documents to import (number),IC.IMP.DOCS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.7,4.7,4.7,4.7,4.7,4.7,4.7,4.7,4.7,4.7,,,
India,"Cost to import, documentary compliance (US$)",IC.IMP.CSDC.CD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,145,144.7,134.8,134.8
India,"Cost to import, border compliance (US$)",IC.IMP.CSBC.CD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,574,574,574,543.2
India,Cost to import (US$ per container),IC.IMP.COST.CD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,622.3,622.3,465.3,488.8,488.8,519.4,540.5,564,1462,1462,,,
India,Time spent dealing with the requirements of government regulations (% of senior management time),IC.GOV.DURS.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.7,,,,,,,,1.9,,,
India,Firms offering formal training (% of firms),IC.FRM.TRNG.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.9,,,,,,,,35.9,,,
India,Firms experiencing losses due to theft and vandalism (% of firms),IC.FRM.THEV.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3.7,,,
India,Firms that spend on R&D (% of firms),IC.FRM.RSDV.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,29.7,,,
India,Value lost due to electrical outages (% of sales for affected firms),IC.FRM.OUTG.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3.7,,,
India,Firms visited or required meetings with tax officials (% of firms),IC.FRM.METG.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35.3,,,
India,Firms that do not report all sales for tax purposes (% of firms),IC.FRM.INFM.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,59.24,,,,,,,,,,,
India,Firms formally registered when operations started (% of firms),IC.FRM.FREG.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,87.2,,,
India,Firms with female participation in ownership (% of firms),IC.FRM.FEMO.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.1,,,,,,,,10.7,,,
India,Firms with female top manager (% of firms),IC.FRM.FEMM.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.9,,,
India,Time required to obtain an operating license (days),IC.FRM.DURS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.8,,,
India,Losses due to theft and vandalism (% of annual sales of affected firms),IC.FRM.CRIM.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2.7,,,
India,Informal payments to public officials (% of firms),IC.FRM.CORR.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,47.5,,,,,,,,16.6,,,
India,Firms competing against unregistered firms (% of firms),IC.FRM.CMPU.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,50.1,,,
India,Bribery incidence (% of firms experiencing at least one bribe payment request),IC.FRM.BRIB.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.7,,,
India,Firms using banks to finance investment (% of firms),IC.FRM.BNKS.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,46.6,,,,,,,,30.3,,,
India,Firms using banks to finance working capital (% of firms),IC.FRM.BKWC.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,36.4,,,,,,,,36.4,,,
India,"Time to export, documentary compliance (hours)",IC.EXP.TMDC,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,41,41,38,
India,"Time to export, border compliance (hours)",IC.EXP.TMBC,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,109,109,106,
India,Time to export (days),IC.EXP.DURS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.7,12.7,8.5,8,8,8,7.5,7.5,17.1,17.1,,,
India,Documents to export (number),IC.EXP.DOCS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3.3,3.3,3.3,3.3,3.3,3.3,3.3,3.3,3.3,3.3,,,
India,"Cost to export, documentary compliance (US$)",IC.EXP.CSDC.CD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,102,101.7,91.9,91.9
India,"Cost to export, border compliance (US$)",IC.EXP.CSBC.CD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,413,413.1,413.1,382.4
India,Cost to export (US$ per container),IC.EXP.COST.CD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,382.6,382.6,361.9,420.7,420.7,472.4,491.2,502.9,1332,1332,,,
India,Time required to get electricity (days),IC.ELC.TIME,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,101.8,101.8,86.2,45.9,45.9
India,Firms experiencing electrical outages (% of firms),IC.ELC.OUTG.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,55.4,,,
India,Power outages in firms in a typical month (number),IC.ELC.OUTG,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.8,,,
India,Delay in obtaining an electrical connection (days),IC.ELC.DURS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,29.5,,,,,,,,21.9,,,
India,Average time to clear exports through customs (days),IC.CUS.DURS.EX,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.1,,,,,,,,5.8,,,
India,Public credit registry coverage (% of adults),IC.CRD.PUBL.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0
India,Private credit bureau coverage (% of adults),IC.CRD.PRVT.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.8,22.4,22,21.4,43.5
India,Depth of credit information index (0=low to 8=high),IC.CRD.INFO.XQ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7
India,New businesses registered (number),IC.BUS.NREG,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,36859,38129,20000,51700,84800,46000,64900,70450,99587,,98029,,,
India,"New business density (new registrations per 1,000 people ages 15-64)",IC.BUS.NDNS.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.054473427,0.053640146,0.027588632,0.069962793,0.112627015,0.059985166,0.08312408,0.088656826,0.123184117,,0.12,,,
India,Ease of doing business index (1=most business-friendly regulations),IC.BUS.EASE.XQ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,100
India,Business extent of disclosure index (0=less disclosure to 10=more disclosure),IC.BUS.DISC.XQ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,7,8
India,Distance to frontier score (0=lowest performance to 100=frontier),IC.BUS.DFRN.XQ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,55.01,56.05,60.76
India,Subsidies and other transfers (% of expense),GC.XPN.TRFT.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,31.73665449,33.00716648,33.85274538,34.05442074,33.28019875,33.18660332,32.83095723,32.32021421,27.38832799,,,,42.62054591,49.32978398,46.76723289,49.21054255,53.92816469,59.70250097,61.37311045,60.12284921,62.73411212,62.90501469,61.82344086,63.10960832,,,,
India,Subsidies and other transfers (current LCU),GC.XPN.TRFT.CN,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2.83E+11,3.35E+11,3.90E+11,4.52E+11,4.99E+11,5.70E+11,6.45E+11,7.29E+11,6.99E+11,,,,1.71E+12,2.15E+12,2.26E+12,2.71E+12,3.49E+12,4.46E+12,5.83E+12,6.45E+12,7.91E+12,7.96E+12,9.94E+12,1.18E+13,,,,
India,Expense (% of GDP),GC.XPN.TOTL.GD.ZS,,,,,,,,,,,,,,,8.850979244,10.24908949,10.77307322,10.64734641,11.42231142,12.48093677,11.86069343,11.52983571,12.12156805,12.24108219,13.32065003,14.57334576,15.54601374,15.98038876,15.72932326,16.18746578,15.69356079,15.54635965,15.32084787,15.34986714,14.80073995,14.43832514,14.2710791,14.79483752,14.60241868,15.00418587,15.61874834,15.75579946,16.26998106,15.78819986,15.33808485,15.38934391,15.51863723,15.45632933,17.40101098,17.08032389,16.69441862,14.4898394,16.1667124,16.63868255,,,,
India,Expense (current LCU),GC.XPN.TOTL.CN,,,,,,,,,,,,,,,69320000000,86170000000,97590000000,1.09E+11,1.27E+11,1.52E+11,1.72E+11,1.97E+11,2.31E+11,2.72E+11,3.31E+11,4.09E+11,4.88E+11,5.71E+11,6.66E+11,7.88E+11,8.92E+11,1.02E+12,1.15E+12,1.33E+12,1.50E+12,1.72E+12,1.96E+12,2.26E+12,2.55E+12,2.94E+12,3.30E+12,3.60E+12,4.00E+12,4.35E+12,4.82E+12,5.51E+12,6.46E+12,7.47E+12,9.50E+12,1.07E+13,1.26E+13,1.27E+13,1.61E+13,1.87E+13,,,,
India,Other expense (% of expense),GC.XPN.OTHR.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.197228886,0.991297842,0.660490501,0.460541192,0.339865866,0.347610397,0.324847251,0.406075168,1.094593219,,0,0,7.348714693,3.015339913,5.669603881,6.304410148,4.676010745,0.515766673,0.540128005,0.872807263,0.711304044,0.708044996,0.671676142,0.532820433,,,,
India,Other expense (current LCU),GC.XPN.OTHR.CN,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10680000000,10070000000,7600000000,6110000000,5100000000,5970000000,6380000000,9160000000,27950000000,,0,0,2.94E+11,1.31E+11,2.73E+11,3.47E+11,3.02E+11,38550000000,51310000000,93640000000,89630000000,89630000000,1.08E+11,99590000000,,,,
India,Interest payments (% of expense),GC.XPN.INTP.ZS,,,,,,,,,,,,,,,11.30986728,11.16397818,12.24510708,12.26207906,13.16742794,12.42113565,13.09703661,14.05749173,15.21221823,16.36992348,17.03424348,17.32945519,17.7093359,18.75701066,20.03001426,20.97507108,22.36172455,24.56587652,25.25072567,25.99683425,27.6257637,27.44084218,28.13900204,27.13876599,28.6779507,29.51488569,29.64808273,29.27103043,28.69085166,27.61621024,25.64459367,23.38234707,22.57835904,22.20204942,19.73388353,19.37223869,18.28066472,18.1969065,19.45783207,19.4875636,,,,
India,Interest payments (% of revenue),GC.XPN.INTP.RV.ZS,,,,,,,,,,,,,,,10.338916,10.27338744,11.46722963,11.59470451,12.7770136,12.92572835,13.78003301,14.07324403,15.56303116,17.46056659,19.01138124,19.62412466,20.58655494,22.39896189,23.93479664,24.45901542,27.63914483,28.92360829,29.49985786,33.97427057,33.63761766,31.88935352,32.15118883,32.94177155,37.40530932,37.15798613,38.91241532,40.93629059,39.46951335,36.05854227,31.90673024,28.57095349,25.63898016,23.37026402,26.53850237,28.46290689,22.82578753,22.86838944,24.90866525,25.68915783,,,,
India,Interest payments (current LCU),GC.XPN.INTP.CN,,,,,,,,,,,,,,,7840000000,9620000000,11950000000,13400000000,16720000000,18900000000,22540000000,27630000000,35160000000,44500000000,56460000000,70900000000,86480000000,1.07E+11,1.33E+11,1.65E+11,1.99E+11,2.50E+11,2.91E+11,3.45E+11,4.15E+11,4.71E+11,5.53E+11,6.12E+11,7.32E+11,8.69E+11,9.78E+11,1.05E+12,1.15E+12,1.20E+12,1.24E+12,1.29E+12,1.46E+12,1.66E+12,1.87E+12,2.08E+12,2.30E+12,2.30E+12,3.13E+12,3.64E+12,,,,
India,Goods and services expense (% of expense),GC.XPN.GSRV.ZS,,,,,,,,,,,,,,,17.98903635,18.48671231,18.14735116,16.25183016,15.38825012,15.34568875,15.78152237,16.82014755,16.58806732,16.1050618,14.92231106,14.94879378,16.84926177,15.87037297,15.50986719,14.8532697,13.88807928,13.18810049,12.3763753,13.91196201,13.58197298,14.46629868,12.57077393,11.76731361,11.9559343,12.4592737,11.55762437,12.25136767,11.62299007,11.03701303,13.04181019,12.67051083,11.18225595,10.51053542,9.763884795,8.99809854,9.392260809,9.349227415,9.420261007,8.741700595,,,,
India,Goods and services expense (current LCU),GC.XPN.GSRV.CN,,,,,,,,,,,,,,,12470000000,15930000000,17710000000,17760000000,19540000000,23350000000,27160000000,33060000000,38340000000,43780000000,49460000000,61160000000,82280000000,90550000000,1.03E+11,1.17E+11,1.24E+11,1.34E+11,1.42E+11,1.85E+11,2.04E+11,2.48E+11,2.47E+11,2.65E+11,3.05E+11,3.67E+11,3.81E+11,4.41E+11,4.65E+11,4.80E+11,6.29E+11,6.98E+11,7.23E+11,7.86E+11,9.28E+11,9.65E+11,1.18E+12,1.18E+12,1.51E+12,1.63E+12,,,,
India,Compensation of employees (% of expense),GC.XPN.COMP.ZS,,,,,,,,,,,,,,,23.36987882,21.53881861,18.80315606,17.40483163,15.91589227,14.24815983,14.28239396,14.19994912,13.94453338,13.80223661,13.52541862,12.45081026,13.17961215,13.13796971,12.6480078,11.52772136,11.17637827,10.89640101,10.97109485,10.06783749,9.66085385,9.919414943,9.953665988,11.76820024,11.5102645,10.925349,10.26913105,9.232355058,9.71689767,9.001652839,8.876759373,8.432189397,7.635209576,7.06914752,8.588993221,10.6340063,8.881340867,8.840648403,8.626541098,8.128307055,,,,
India,Compensation of employees (current LCU),GC.XPN.COMP.CN,,,,,,,,,,,,,,,16200000000,18560000000,18350000000,19020000000,20210000000,21680000000,24580000000,27910000000,32230000000,37520000000,44830000000,50940000000,64360000000,74960000000,84280000000,90820000000,99700000000,1.11E+11,1.26E+11,1.34E+11,1.45E+11,1.70E+11,1.95E+11,2.65E+11,2.94E+11,3.22E+11,3.39E+11,3.32E+11,3.89E+11,3.92E+11,4.28E+11,4.65E+11,4.93E+11,5.28E+11,8.16E+11,1.14E+12,1.12E+12,1.12E+12,1.39E+12,1.52E+12,,,,
India,"Taxes on income, profits and capital gains (% of total taxes)",GC.TAX.YPKG.ZS,,,,,,,,,,,,,,,24.56113335,27.7503251,26.69039146,26.15453427,23.40425532,22.81991313,21.8999548,23.11702996,22.44180204,20.95776808,19.83383042,18.94795591,18.19140284,17.60036109,19.45443915,18.92598474,18.60040991,22.10427863,23.45083538,26.61967687,28.87294949,29.90012316,29.91022196,27.52641522,32.01427091,33.51285575,36.00280066,36.7809087,38.26907605,41.26347574,43.29579811,44.26522319,47.47271452,52.57870309,52.78160509,58.77728265,55.20633688,54.8143691,52.25415503,53.43943942,,,,
India,"Taxes on income, profits and capital gains (% of revenue)",GC.TAX.YPKG.RV.ZS,,,,,,,,,,,,,,,21.0338916,22.78940624,21.59101814,20.2388163,18.7452239,18.68417453,17.77220762,18.74395151,17.79390935,17.1545162,15.67445619,15.03501342,14.37583317,13.87429624,15.513593,14.46523194,14.83795879,17.25680641,17.77098648,19.60539018,21.62284972,22.50551473,22.40547789,20.62129716,23.51393734,24.61901035,27.01449529,26.73417367,28.45409382,31.50188648,34.06766366,35.93356819,39.49833951,43.92094289,45.22831034,50.27095205,43.38476173,48.38437789,44.83891003,46.57921277,,,,
India,"Taxes on income, profits and capital gains (current LCU)",GC.TAX.YPKG.CN,,,,,,,,,,,,,,,15950000000,21340000000,22500000000,23390000000,24530000000,27320000000,29070000000,36800000000,40200000000,43720000000,46550000000,54320000000,60390000000,66290000000,86510000000,97730000000,1.07E+11,1.49E+11,1.75E+11,1.99E+11,2.66E+11,3.33E+11,3.85E+11,3.83E+11,4.60E+11,5.76E+11,6.79E+11,6.88E+11,8.28E+11,1.05E+12,1.32E+12,1.62E+12,2.25E+12,3.12E+12,3.19E+12,3.67E+12,4.38E+12,4.87E+12,5.63E+12,6.60E+12,,,,
India,Tax revenue (% of GDP),GC.TAX.TOTL.GD.ZS,,,,,,,,,,,,,,,8.291728103,9.146512492,9.305974716,8.713325306,9.428039535,9.820043045,9.148102533,9.338257677,9.394438131,9.39380575,9.432362535,10.21163631,10.56828412,10.54902836,10.49675916,10.60987457,10.12870287,10.30843138,9.937793289,8.650628375,9.103203887,9.351569628,9.356276414,9.131027886,8.222831687,8.755088221,8.929254982,8.188687151,8.793575525,9.231223912,9.70021273,10.22400751,11.370511,12.26584845,11.08762174,9.942698429,10.50717095,10.1773872,10.83677172,11.00162569,,,,
India,Tax revenue (current LCU),GC.TAX.TOTL.CN,,,,,,,,,,,,,,,64940000000,76900000000,84300000000,89430000000,1.05E+11,1.20E+11,1.33E+11,1.59E+11,1.79E+11,2.09E+11,2.35E+11,2.87E+11,3.32E+11,3.77E+11,4.45E+11,5.16E+11,5.76E+11,6.74E+11,7.46E+11,7.48E+11,9.23E+11,1.11E+12,1.29E+12,1.39E+12,1.44E+12,1.72E+12,1.89E+12,1.87E+12,2.16E+12,2.54E+12,3.05E+12,3.66E+12,4.74E+12,5.93E+12,6.05E+12,6.25E+12,7.93E+12,8.89E+12,1.08E+13,1.24E+13,,,,
India,Other taxes (% of revenue),GC.TAX.OTHR.RV.ZS,,,,,,,,,,,,,,,0.712119214,0.758222982,0.748488629,0.58838799,0.573131591,0.588154835,0.550223146,0.539907299,0.522308782,0.506160245,0.481513907,0.517589748,0.468958294,0.257435275,0.319202353,0.393712442,0.439222424,0.535472131,0.638630549,0.383183278,0.259655956,0.213146035,0.223397386,5.358459295,0.286562224,0.171514848,0.171539558,0.153872457,0.111735685,0.041421415,0.038445263,0.056313172,0.044806804,0.049290984,0.057900437,0.069432747,0.068273928,0.078428258,0.09929767,0.067000966,,,,
India,Other taxes (current LCU),GC.TAX.OTHR.CN,,,,,,,,,,,,,,,540000000,710000000,780000000,680000000,750000000,860000000,900000000,1060000000,1180000000,1290000000,1430000000,1870000000,1970000000,1230000000,1780000000,2660000000,3170000000,4620000000,6290000000,3890000000,3200000000,3150000000,3840000000,99580000000,5610000000,4010000000,4310000000,3960000000,3250000000,1380000000,1490000000,2540000000,2550000000,3500000000,4090000000,5070000000,6890000000,7900000000,12470000000,9500000000,,,,
India,Taxes on international trade (% of revenue),GC.TAX.INTT.RV.ZS,,,,,,,,,,,,,,,19.82065146,15.90132422,16.19806161,16.25854461,18.09567477,19.9972644,21.43424833,22.36540519,23.61898017,22.54963509,23.70866725,26.36663068,28.1708246,28.679964,28.34265835,26.69547971,28.60349438,25.79538474,24.14003168,21.86114778,21.73726063,24.19511997,24.92917023,21.62809344,20.7734626,20.70966942,18.92188781,15.64680831,15.42021213,14.59624626,14.86489973,14.42570541,15.16877229,14.66322287,14.13931496,11.41107336,13.45789114,14.82462846,14.8663025,13.21033366,,,,
India,Taxes on international trade (current LCU),GC.TAX.INTT.CN,,,,,,,,,,,,,,,15030000000,14890000000,16880000000,18790000000,23680000000,29240000000,35060000000,43910000000,53360000000,57470000000,70410000000,95260000000,1.18E+11,1.37E+11,1.58E+11,1.80E+11,2.06E+11,2.23E+11,2.38E+11,2.22E+11,2.68E+11,3.58E+11,4.29E+11,4.02E+11,4.07E+11,4.84E+11,4.75E+11,4.03E+11,4.49E+11,4.86E+11,5.76E+11,6.51E+11,8.63E+11,1.04E+12,9.99E+11,8.33E+11,1.36E+12,1.49E+12,1.87E+12,1.87E+12,,,,
India,Customs and other import duties (% of tax revenue),GC.TAX.IMPT.ZS,,,,,,,,,,,,,,,19.12534647,17.37321196,16.90391459,17.83517835,20.96174029,23.35449382,24.80036161,26.62855707,28.20298108,26.36978093,29.65061781,32.93916562,34.26514444,36.19105777,35.42322569,34.85417716,35.79393476,32.62864099,31.17622627,29.30398031,28.38862765,31.59740015,33.11303024,28.62109339,27.97501895,28.00957194,25.02241058,21.40019994,20.65696873,19.05200003,18.82947816,17.71941707,18.1763081,17.33111691,16.20672793,13.32896736,17.10815664,16.78730894,17.31832481,15.15240276,,,,
India,Customs and other import duties (current LCU),GC.TAX.IMPT.CN,,,,,,,,,,,,,,,12420000000,13360000000,14250000000,15950000000,21970000000,27960000000,32920000000,42390000000,50520000000,55010000000,69590000000,94430000000,1.14E+11,1.36E+11,1.58E+11,1.80E+11,2.06E+11,2.20E+11,2.33E+11,2.19E+11,2.62E+11,3.51E+11,4.26E+11,3.98E+11,4.02E+11,4.81E+11,4.72E+11,4.00E+11,4.47E+11,4.85E+11,5.74E+11,6.49E+11,8.61E+11,1.03E+12,9.81E+11,8.32E+11,1.36E+12,1.49E+12,1.87E+12,1.87E+12,,,,
India,Taxes on goods and services (% value added of industry and services),GC.TAX.GSRV.VA.ZS,,,,,,,,,,,,,,,7.933363467,8.522526839,8.488643576,8.023956581,8.715315924,8.64789146,8.091868432,7.734990737,7.405840531,8.046808149,7.68939365,7.839959037,7.72936313,7.692531712,7.543095404,7.637081161,7.213091552,7.220169696,6.857962953,5.814726379,5.907431073,5.328903662,5.201794851,4.960328897,4.786717286,4.882281865,4.939544642,4.843864179,4.966794159,5.054048958,4.998138986,5.262826925,5.239183587,4.927101435,4.439873627,3.6049504,3.850652908,3.809841796,4.338376437,4.588124447,,,,
India,Taxes on goods and services (% of revenue),GC.TAX.GSRV.RV.ZS,,,,,,,,,,,,,,,44.07226691,42.67407091,42.35677958,40.29592455,42.67919914,42.6070305,41.39512135,39.43360668,37.35393059,41.64247038,39.16425349,37.42976556,36.00980766,36.01791582,35.5677498,34.87611379,35.89153839,34.48231899,33.23011006,31.80027187,31.26987991,28.35518926,27.35105387,27.30672579,28.87433659,27.96119744,28.92650465,30.1500645,30.36666495,30.20371532,29.7148342,30.76228968,28.49027429,24.90025617,26.26400617,23.7764019,21.67563443,24.98188208,26.00492109,27.30042528,,,,
India,Taxes on goods and services (current LCU),GC.TAX.GSRV.CN,,,,,,,,,,,,,,,33420000000,39960000000,44140000000,46570000000,55850000000,62300000000,67710000000,77420000000,84390000000,1.06E+11,1.16E+11,1.35E+11,1.51E+11,1.72E+11,1.98E+11,2.36E+11,2.59E+11,2.98E+11,3.27E+11,3.23E+11,3.85E+11,4.19E+11,4.70E+11,5.07E+11,5.65E+11,6.54E+11,7.27E+11,7.76E+11,8.83E+11,1.01E+12,1.15E+12,1.39E+12,1.62E+12,1.77E+12,1.86E+12,1.74E+12,2.19E+12,2.52E+12,3.27E+12,3.87E+12,,,,
India,Taxes on exports (% of tax revenue),GC.TAX.EXPT.ZS,,,,,,,,,,,,,,,1.401293502,1.079323797,1.53024911,2.56066197,1.335750405,1.069161377,0.888955854,0.383189899,0.379612572,0.388284358,0.34938219,0.289521418,0.298219719,0.191163976,0.119186831,0.073589217,0.062528225,0.112829953,0.255905248,0.153809116,0.152772661,0.139342125,0.12736677,0.189629289,0.191947924,0.181657273,0.195197505,0.126697994,0,0,0.061975747,0.051071686,0.054908851,0.222541798,0.29390482,0.012969816,0.01677023,0.007422987,0.006495857,0.003560245,,,,
India,Taxes on exports (current LCU),GC.TAX.EXPT.CN,,,,,,,,,,,,,,,910000000,830000000,1290000000,2290000000,1400000000,1280000000,1180000000,610000000,680000000,810000000,820000000,830000000,990000000,720000000,530000000,380000000,360000000,760000000,1910000000,1150000000,1410000000,1550000000,1640000000,2640000000,2760000000,3120000000,3680000000,2370000000,0,0,1890000000,1870000000,2600000000,13200000000,17790000000,810000000,1330000000,660000000,700000000,440000000,,,,
India,"Revenue, excluding grants (% of GDP)",GC.REV.XGRT.GD.ZS,,,,,,,,,,,,,,,9.549404756,10.80097268,11.20470265,10.94646202,11.53115531,11.67709094,10.97234748,11.29167171,11.63960028,11.32966553,11.74443674,12.69651056,13.2344702,13.24426254,13.02157107,13.72680003,12.59393915,13.05916248,12.99168381,11.63070321,12.05310986,12.32853262,12.40370404,12.12181845,11.13895779,11.86151537,11.86165704,11.18931027,11.75088523,12.01337382,12.2462808,12.51016296,13.60536611,14.62742137,12.88811605,11.57509316,13.33478744,11.49599601,12.59987278,12.60899341,,,,
India,"Revenue, excluding grants (current LCU)",GC.REV.XGRT.CN,,,,,,,,,,,,,,,74790000000,90810000000,1.02E+11,1.12E+11,1.28E+11,1.42E+11,1.59E+11,1.92E+11,2.22E+11,2.52E+11,2.92E+11,3.56E+11,4.16E+11,4.73E+11,5.52E+11,6.68E+11,7.16E+11,8.53E+11,9.76E+11,1.01E+12,1.22E+12,1.47E+12,1.71E+12,1.85E+12,1.95E+12,2.33E+12,2.50E+12,2.56E+12,2.89E+12,3.31E+12,3.85E+12,4.48E+12,5.67E+12,7.07E+12,7.04E+12,7.27E+12,1.01E+13,1.00E+13,1.25E+13,1.42E+13,,,,
India,Social contributions (% of revenue),GC.REV.SOCL.ZS,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.085904701,0.061428621,0.043658368,0.050237396,0.034891269,0.031802742,0.028506437,0.040896054,0.070491242,0.062019085,0.050148455,0.384681142,0.234473037,0.14077278,0.236090039,0.182241841,0.144436049,0.109707648,0.229761391,0.289508534,0.254862907,0.148914414,0.240480324,0.190141689,,,,
India,Social contributions (current LCU),GC.REV.SOCL.CN,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,620000000,530000000,430000000,510000000,430000000,470000000,490000000,760000000,1380000000,1450000000,1260000000,9900000000,6820000000,4690000000,9150000000,8220000000,8220000000,7790000000,16230000000,21140000000,25720000000,15000000000,30200000000,26960000000,,,,
India,Grants and other revenue (% of revenue),GC.REV.GOTR.ZS,,,,,,,,,,,,,,,14.36107082,17.87697565,19.10565205,22.61832656,19.90677059,18.12337574,18.84819955,18.91712932,20.7108711,18.14721808,20.97110917,20.65100058,20.97457627,21.17038866,20.2567965,23.56946212,20.14188131,21.86858911,24.17658287,26.2997695,25.07546251,24.69922726,25.06239419,25.04452827,26.48121,26.47658886,24.91542423,26.93039991,25.41282038,23.51595775,21.07806711,18.6398817,16.65337105,16.35657943,14.0807067,14.18263141,21.15827859,11.5817689,13.94969024,12.64724344,,,,
India,Grants and other revenue (current LCU),GC.REV.GOTR.CN,,,,,,,,,,,,,,,10890000000,16740000000,19910000000,26140000000,26050000000,26500000000,30830000000,37140000000,46790000000,46250000000,62280000000,74610000000,88110000000,1.01E+11,1.13E+11,1.59E+11,1.45E+11,1.89E+11,2.38E+11,2.67E+11,3.09E+11,3.65E+11,4.31E+11,4.65E+11,5.18E+11,6.19E+11,6.26E+11,6.93E+11,7.39E+11,7.83E+11,8.17E+11,8.41E+11,9.48E+11,1.16E+12,9.95E+11,1.04E+12,2.14E+12,1.17E+12,1.75E+12,1.79E+12,,,,
India,Net lending (+) / net borrowing (-) (% of GDP),GC.NLD.TOTL.GD.ZS,,,,,,,,,,,,,,,-0.086824378,0.152243641,0.130261568,0.187069044,-0.108843887,-0.919501191,-1.017221586,-0.508591583,-0.797161054,-1.295076235,-2.028339741,-2.303210561,-2.96097872,-3.119839287,-3.105499765,-2.78283708,-3.432119783,-2.279828711,-2.337818703,-3.957158031,-2.436444006,-2.210170766,-2.045981539,-2.828002359,-3.347543265,-3.325416503,-3.861811487,-4.40683826,-4.724677459,-3.476417095,-3.300180586,-3.277332872,-2.313089937,-0.485342526,-5.022619487,-5.588271358,-3.520496869,-3.206495649,-3.764476133,-4.065733042,,,,
India,Net lending (+) / net borrowing (-) (current LCU),GC.NLD.TOTL.CN,,,,,,,,,,,,,,,-680000000,1280000000,1180000000,1920000000,-1210000000,-11210000000,-14760000000,-8670000000,-15200000000,-28760000000,-50470000000,-64660000000,-93010000000,-1.11E+11,-1.32E+11,-1.35E+11,-1.95E+11,-1.49E+11,-1.76E+11,-3.42E+11,-2.47E+11,-2.63E+11,-2.82E+11,-4.31E+11,-5.85E+11,-6.52E+11,-8.15E+11,-1.01E+12,-1.16E+12,-9.58E+11,-1.04E+12,-1.17E+12,-9.63E+11,-2.35E+11,-2.74E+12,-3.51E+12,-2.66E+12,-2.80E+12,-3.74E+12,-4.57E+12,,,,
India,Net investment in nonfinancial assets (% of GDP),GC.NFN.TOTL.GD.ZS,,,,,,,,,,,,,,,0.918040115,0.736240732,0.600527906,0.425776938,0.457863956,0.432272192,0.429355724,0.495686145,0.523923614,0.530458903,0.643024289,0.599133957,0.78823603,0.521513668,0.53937876,0.477093008,0.435590168,-0.062440096,0.131017975,0.352883808,-0.208805368,0.19604862,0.265075848,0.221751379,-0.059474264,0.23917552,0.143273888,-0.082955443,0.281536242,-0.220050288,0.289869551,0.4825627,0.460572068,-0.287276454,0.560903993,0.133046499,0.196266203,0.246556657,0.22666905,0.049005113,,,,
India,Net investment in nonfinancial assets (current LCU),GC.NFN.TOTL.CN,,,,,,,,,,,,,,,7190000000,6190000000,5440000000,4370000000,5090000000,5270000000,6230000000,8450000000,9990000000,11780000000,16000000000,16820000000,24760000000,18620000000,22850000000,23220000000,24760000000,-4080000000,9840000000,30500000000,-21170000000,23320000000,36480000000,33810000000,-10400000000,46920000000,30250000000,-18950000000,69240000000,-60630000000,91130000000,1.73E+11,1.92E+11,-1.39E+11,3.06E+11,83570000000,1.48E+11,2.15E+11,2.25E+11,55050000000,,,,
India,"Net incurrence of liabilities, total (% of GDP)",GC.LBL.TOTL.GD.ZS,,,,,,,,,,,,,,,3.087372737,4.373436467,3.549075766,6.051488703,2.305511433,5.334091206,6.23013763,4.846578612,7.601350208,4.430547662,7.045536754,7.92587971,8.848554297,7.763047448,7.710165614,7.433569308,7.719586656,5.487994734,5.242050482,7.121310942,5.476085984,5.170235912,4.826298748,4.92562218,5.258897426,5.366717378,5.433703653,6.061525742,5.130229521,2.915493921,5.18962876,4.331057477,2.459834249,2.29364151,4.670408195,6.293034121,4.466400868,5.666338989,4.883541433,4.677696079,,,,
India,"Net incurrence of liabilities, total (current LCU)",GC.LBL.TOTL.CN,,,,,,,,,,,,,,,24180000000,36770000000,32150000000,62110000000,25630000000,65030000000,90400000000,82620000000,1.45E+11,98390000000,1.75E+11,2.23E+11,2.78E+11,2.77E+11,3.27E+11,3.62E+11,4.39E+11,3.59E+11,3.94E+11,6.16E+11,5.55E+11,6.15E+11,6.64E+11,7.51E+11,9.20E+11,1.05E+12,1.15E+12,1.38E+12,1.26E+12,8.03E+11,1.63E+12,1.55E+12,1.02E+12,1.11E+12,2.55E+12,3.95E+12,3.37E+12,4.95E+12,4.86E+12,5.25E+12,,,,
India,"Central government debt, total (% of GDP)",GC.DOD.TOTL.GD.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,51.46983385,50.68620725,50.35257781,52.45959118,50.26478809,48.13371937,46.34147823,51.04636736,50.99952455,52.0472337,55.74789358,59.81582085,63.39847301,63.03085174,63.43922203,63.10969067,60.9597148,58.24544573,57.86867434,56.0054596,52.18357187,51.55655366,50.67803056,50.31182736,,,,
India,"Central government debt, total (current LCU)",GC.DOD.TOTL.CN,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2.93E+12,3.31E+12,3.78E+12,4.53E+12,5.10E+12,5.73E+12,6.38E+12,7.78E+12,8.92E+12,1.02E+13,1.18E+13,1.37E+13,1.56E+13,1.74E+13,1.99E+13,2.26E+13,2.54E+13,2.82E+13,3.16E+13,3.52E+13,3.94E+13,4.50E+13,5.04E+13,5.65E+13,,,,
India,Net acquisition of financial assets (% of GDP),GC.AST.TOTL.GD.ZS,,,,,,,,,,,,,,,2.926492272,3.954766455,4.200383605,3.882656977,4.459900774,4.246438594,5.090932154,4.613694116,4.832264442,4.70793534,5.036889632,5.623737758,5.696565231,4.689141696,4.462326509,4.650732228,4.287290948,3.207706906,2.903965481,3.163227314,3.03985897,2.960065145,2.780099219,2.097488646,1.911354161,2.041300875,1.571892166,1.654687482,0.405552062,-0.560923174,1.889448174,1.053724605,0.146744312,1.808298984,-0.352211292,0.704762763,0.945917248,0.771376653,0.714299139,1.138467565,,,,
India,Net acquisition of financial assets (current LCU),GC.AST.TOTL.CN,,,,,,,,,,,,,,,22920000000,33250000000,38050000000,39850000000,49580000000,51770000000,73870000000,78650000000,92140000000,1.05E+11,1.25E+11,1.58E+11,1.79E+11,1.67E+11,1.89E+11,2.26E+11,2.44E+11,2.10E+11,2.18E+11,2.73E+11,3.08E+11,3.52E+11,3.83E+11,3.20E+11,3.34E+11,4.00E+11,3.32E+11,3.78E+11,99740000000,-1.55E+11,5.94E+11,3.77E+11,61110000000,8.74E+11,-1.92E+11,4.43E+11,7.14E+11,6.74E+11,7.10E+11,1.28E+12,,,,
India,Research and development expenditure (% of GDP),GB.XPD.RSDV.GD.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.62772,0.67588,0.69295,0.71275,0.74306,0.72196,0.71213,0.70727,0.74436,0.81118,0.7981,0.81483,0.86728,0.84461,0.8219,0.8309,,,,0.6274,,
India,Domestic credit to private sector (% of GDP),FS.AST.PRVT.GD.ZS,7.949170308,8.631313257,9.10189522,9.230585078,8.652207733,9.395421518,9.644054244,9.239985163,9.953416684,10.54073642,11.38846574,12.66234686,13.09706553,13.27089041,13.08839194,15.1356346,18.12954007,18.28570674,19.96169909,21.24006738,20.82120266,21.51242671,22.99463505,23.20217335,24.61087049,24.8957613,26.14982578,25.72552425,25.61683228,26.9493033,25.25332238,24.14380996,25.03215582,24.1542603,23.96704902,22.81511615,23.71883866,23.87378892,23.99786555,25.76657453,28.72269657,29.00634455,32.74326674,32.05384679,36.68111025,40.63665469,44.57317056,46.22127594,50.05802075,48.77678557,51.13514945,51.28923313,51.88850765,52.38570952,51.97736669,52.20809484,49.77372836,
India,Domestic credit provided by financial sector (% of GDP),FS.AST.DOMS.GD.ZS,23.15203037,23.55572732,24.49384116,24.06984947,22.28244962,23.67975009,23.597154,21.90857626,22.39391472,22.33096859,23.15926752,26.0459384,27.24575446,26.91304493,26.22369859,28.46122754,31.14237516,31.57474254,34.1414338,36.99263598,38.18479438,39.62384651,43.01137821,42.89928246,46.2228401,48.13823034,51.03098687,51.64293561,51.35028461,52.97326983,51.53674218,51.22797005,50.15181055,49.38724667,47.42494304,44.19906859,45.73444124,46.20261058,46.61288839,48.99197006,52.78882499,54.5232908,58.74048613,57.42517743,59.38576353,60.18812417,62.7799008,62.71310214,69.79168411,72.34483506,74.25675404,76.14591001,77.17947471,77.91684764,76.04742539,76.10753669,75.37974494,
India,Claims on other sectors of the domestic economy (% of GDP),FS.AST.DOMO.GD.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,"Claims on central government, etc. (% GDP)",FS.AST.CGOV.GD.ZS,15.20286006,14.92441406,15.39194594,14.83926439,13.63024189,14.28432857,13.95309976,12.66859109,12.44049804,11.74237228,11.55215085,13.03981925,13.9169815,13.34973791,12.7023339,12.77287716,12.31339671,12.52370906,13.24340742,14.63833986,16.26807991,17.03199723,18.45000702,18.17174707,19.64089922,21.36688054,23.08177996,24.08547557,23.92918907,24.24916822,24.67147229,25.58815354,23.71585837,24.0314575,22.26705245,20.33155302,21.11491873,21.44420352,21.77913493,22.4170516,23.06982312,24.66361711,25.56032182,25.12565682,22.44189081,19.35598439,18.03750146,16.43139537,19.68181257,23.4698487,23.09980228,24.81906748,25.25325286,25.46563194,24.02372516,23.85210971,25.57007674,
India,"Risk premium on lending (lending rate minus treasury bill rate, %)",FR.INR.RISK,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,Real interest rate (%),FR.INR.RINR,,,,,,,,,,,,,,,,,,,10.77463133,-1.061145746,4.476508258,5.118236738,7.77470725,7.320986682,7.94709992,8.681673587,9.093224143,6.560180096,7.638633,7.435843244,5.269527,3.624716594,9.132749407,5.814776514,4.337109732,5.864178113,7.792994301,6.909578991,5.12127633,9.191247326,8.34261083,8.591449296,7.90717719,7.30788116,4.910134919,6.2483308,4.477353833,6.869182971,4.277227228,5.773571194,-0.596849661,1.498946519,2.473520489,3.865992863,6.985444729,8.078282432,5.84944209,
India,"Interest rate spread (lending rate minus deposit rate, %)",FR.INR.LNDP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,Lending interest rate (%),FR.INR.LEND,,,,,,,,,,,,,,,,,,,13.5,14.5,16.5,16.5,16.5,16.5,16.5,16.5,16.5,16.5,16.5,16.5,16.5,17.875,18.91666667,16.25,14.75,15.45833333,15.95833333,13.83333333,13.54166667,12.54166667,12.29166667,12.08333333,11.91666667,11.45833333,10.91666667,10.75,11.1875,13.02083333,13.3125,12.1875,8.33335,10.16666667,10.60416667,10.29166667,10.25,10.00833333,9.6725,
India,Deposit interest rate (%),FR.INR.DPST,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,Wholesale price index (2010 = 100),FP.WPI.TOTL,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.77385511,28.10251538,31.89418753,35.67793008,38.34531659,42.38769638,46.34721181,48.4213579,50.61430184,53.59066937,55.44006279,59.07142382,61.91936126,63.48299771,66.9217136,71.32365523,74.69173456,78.23319453,82.05234979,89.17311124,91.27305175,100,108.8875669,117.6680547,125.0684117,129.964307,126.3747769,128.9018441,
India,"Inflation, consumer prices (annual %)",FP.CPI.TOTL.ZG,1.783264746,1.752021563,3.57615894,2.941176471,13.35403727,9.479452055,10.81081081,13.0532972,2.996404315,0.574712644,5.095238095,3.081105573,6.461538462,16.92815855,28.60169492,5.738605162,-7.63438068,8.321619342,2.517518817,6.253164557,11.3652609,13.11510484,7.887270664,11.86886396,8.32157969,5.555555556,8.730811404,8.798689021,9.384775808,3.26256011,8.971233545,13.87024609,11.78781925,6.362038664,10.21150033,10.22488756,8.977149075,7.16425362,13.2308409,4.669821024,4.009433962,3.684807256,4.392199745,3.805865922,3.76723848,4.246353323,6.145522388,6.369996746,8.351816444,10.87739112,11.99229692,8.857845297,9.312445605,10.90764331,6.649500151,4.906973441,4.941447235,
India,Consumer price index (2010 = 100),FP.CPI.TOTL,2.587927167,2.633268209,2.727438065,2.807656832,3.182592371,3.484284689,3.860964115,4.364947236,4.495738703,4.521576282,4.751961359,4.898374305,5.214884645,6.097668586,7.841705151,8.291709648,7.658688969,8.296015911,8.504869673,9.036693169,10.06373692,11.38360657,12.28146243,13.7391325,14.88244536,15.70924788,17.08079269,18.58367852,20.32771508,20.99091901,22.87406337,26.04675225,29.11709633,30.96953726,34.13199166,37.62194943,40.99932791,43.93662374,49.74980853,52.07303555,54.16086952,56.15659317,58.62310291,60.85421961,63.14674319,65.82817701,69.87366237,74.32461239,80.53206759,89.29185556,100,108.8578453,118.9951729,131.9747419,140.7504026,147.6569875,154.9533796,
India,Broad money growth (annual %),FM.LBL.BMNY.ZG,,3.211716341,9.609161065,10.58369294,9.406448963,10.88792942,11.20704249,9.362155579,9.521158129,13.51677682,12.03269328,17.06042254,15.39446612,19.49617135,12.22533851,14.05195765,24.48557083,19.16387544,21.15282402,17.71100519,15.89767393,17.4508508,17.20393262,16.88716143,17.98440127,16.88324105,17.92745902,16.31780172,18.29061823,15.73017331,15.06661351,18.31695228,16.86249497,17.00766251,20.27772825,11.0111211,18.73627434,17.65675429,18.1730148,17.14918048,15.17170763,14.32055069,16.76116474,13.03361109,16.73233295,15.5999039,21.63314112,22.27150287,20.49520988,17.99583922,17.80217706,16.13758934,11.04569666,14.83153,10.5873816,10.61772456,6.786560947,
India,Broad money to total reserves ratio,FM.LBL.BMNY.IR.ZS,12.11677439,12.65944116,18.03131106,16.82109066,22.41174081,20.64480921,15.39178132,14.43082924,14.36383548,12.83587758,13.03943366,12.63446871,12.78472833,12.60730378,9.776607038,11.57245217,7.72169521,5.885494818,5.444355262,4.583100572,5.347298252,8.22197482,8.793061186,9.626593511,9.483618833,9.681564111,9.897843836,10.33411426,13.72353129,15.7489201,24.01815564,15.39839023,13.33796213,8.54248049,6.218465979,6.861508002,7.054558534,6.953255916,6.723311008,6.507273287,6.233824837,5.714257445,4.503020534,3.701081537,3.482178589,3.901653534,3.59432777,3.179794533,3.603492908,3.727303323,4.346493691,4.811026378,4.679011826,4.869715803,4.886372336,4.644666077,4.729199238,
India,Broad money (% of GDP),FM.LBL.BMNY.GD.ZS,22.37033322,21.79257407,22.22720169,21.40177083,20.07417709,21.11021488,20.73708423,19.36407626,20.02902365,20.65027141,21.66202827,23.68651763,24.79709851,24.34549097,23.14418711,24.58901318,28.40960637,29.87970045,33.42164004,35.87342437,34.93253331,34.92264341,36.59331107,36.72590336,38.67212375,40.06275549,42.22439699,43.21057237,43.0786354,43.39520473,42.75408977,44.00485679,44.7412537,45.49027481,46.64366705,44.13403328,45.29362934,48.10163235,49.56244333,51.75531416,55.38392107,58.51968912,63.46612873,64.03342525,65.50957069,66.47842899,69.53795485,73.22062428,78.15146362,80.14707832,78.57079448,78.83731129,76.91318852,78.18217173,78.04226231,78.52414973,75.56012682,
India,Broad money (current LCU),FM.LBL.BMNY.CN,38920000000,40170000000,44030000000,48690000000,53270000000,59070000000,65690000000,71840000000,78680000000,89315000000,1.00E+11,1.17E+11,1.35E+11,1.62E+11,1.81E+11,2.07E+11,2.57E+11,3.07E+11,3.72E+11,4.37E+11,5.07E+11,5.95E+11,6.98E+11,8.16E+11,9.62E+11,1.12E+12,1.33E+12,1.54E+12,1.82E+12,2.11E+12,2.43E+12,2.88E+12,3.36E+12,3.93E+12,4.73E+12,5.25E+12,6.23E+12,7.33E+12,8.67E+12,1.02E+13,1.17E+13,1.34E+13,1.56E+13,1.76E+13,2.06E+13,2.38E+13,2.90E+13,3.54E+13,4.27E+13,5.03E+13,5.93E+13,6.89E+13,7.65E+13,8.78E+13,9.71E+13,1.07E+14,1.15E+14,
India,Claims on private sector (annual growth as % of broad money),FM.AST.PRVT.ZG.M3,,5.344295992,5.277570326,6.745400863,4.025467242,6.251173268,7.211782631,5.678185416,6.70935412,8.248601932,7.855343447,10.00479703,7.489776579,12.32123701,8.95447538,13.65253802,17.8857856,9.110796801,11.16303033,9.967890661,9.871337862,12.74594328,12.04879991,11.00696669,11.90847239,8.993656574,10.89128278,7.319491325,10.80659589,12.40550499,5.86373136,5.849613578,10.51682327,6.179588698,8.705014069,6.003982214,10.48336234,6.028536162,7.586758699,9.903696466,9.943915337,4.803978438,10.67227947,4.99063691,15.30454265,14.66991003,16.8381119,13.08609704,14.05424469,7.758628703,15.80847676,10.4740711,9.85851637,9.478760302,6.648250611,6.944481828,3.856846562,
India,Net foreign assets (current LCU),FM.AST.NFRG.CN,2401571727,1783238992,1114667702,1288334275,1398000732,823525176.3,493025000.4,337975000.5,1228225000,4931775000,5519900000,5881348495,7412769769,7760896520,4743568662,6971063007,19699677065,39212782712,51929168558,58313251926,43510681059,27759439500,9278517168,2198988949,12627349362,11930217795,14136970094,13360586820,17490010950,20868792830,58250490934,63101794674,88634464875,2.29E+11,5.64E+11,6.11E+11,7.57E+11,9.91E+11,1.20E+12,1.48E+12,1.84E+12,2.28E+12,3.34E+12,4.57E+12,5.66E+12,6.42E+12,7.76E+12,1.07E+13,1.19E+13,1.26E+13,1.26E+13,1.49E+13,1.54E+13,1.76E+13,1.96E+13,2.27E+13,2.37E+13,
India,Net domestic credit (current LCU),FM.AST.DOMS.CN,40280000000,43420000000,48520000000,54760000000,59130000000,66260000000,74750000000,81280000000,87970000000,96584225000,1.07E+11,1.29E+11,1.49E+11,1.79E+11,2.05E+11,2.39E+11,2.82E+11,3.24E+11,3.80E+11,4.51E+11,5.54E+11,6.75E+11,8.20E+11,9.53E+11,1.15E+12,1.35E+12,1.60E+12,1.84E+12,2.18E+12,2.58E+12,2.93E+12,3.35E+12,3.77E+12,4.27E+12,4.81E+12,5.26E+12,6.29E+12,7.04E+12,8.15E+12,9.61E+12,1.11E+13,1.25E+13,1.44E+13,1.58E+13,1.87E+13,2.16E+13,2.61E+13,3.03E+13,3.81E+13,4.54E+13,5.60E+13,6.65E+13,7.67E+13,8.75E+13,9.46E+13,1.04E+14,1.14E+14,
India,Claims on other sectors of the domestic economy (annual growth as % of broad money),FM.AST.DOMO.ZG.M3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,Claims on central government (annual growth as % of broad money),FM.AST.CGOV.ZG.M3,,2.723535457,7.418471496,7.426754486,4.949681659,7.133470997,7.160995429,4.262444817,2.603006682,2.436737417,2.882914404,11.11466042,9.71167709,9.401748418,6.758624701,4.361345479,2.009532027,6.603703208,6.093335297,8.407348983,13.16801693,10.71153586,10.32249097,7.415966026,10.4428519,11.54969382,11.13099709,10.17072237,9.967937581,9.122133176,10.51996064,11.09397871,3.796466424,8.805743705,4.59127055,3.401677647,9.284561955,5.834738218,7.347523612,6.79862174,4.660522368,6.526991892,4.878497693,4.078561504,0.751143423,-0.599137723,2.434322254,1.499799093,7.904803164,9.369091338,5.350349306,7.161721262,4.978760359,4.569674746,1.469906406,2.817727562,5.761812585,
India,Total reserves minus gold (current US$),FI.RES.XGLD.CD,423000000,418000000,265000000,360000000,251000000,319000000,365000000,419000000,439000000,683000000,763320000.1,942439552.9,916317572.7,848791785.3,1027733778,1089132800,2791702339,4872016472,6426350817,7432479365,6943862180,4692882372,4315146405,4937274460,5842300415,6420353251,6395732658,6453558243,4899288504,3858554814,1520972173,3626589137,5757134861,10199123472,19698471279,17921806913,20170156499,24688314299,27340724600,32666742968,37902247972,45870467970,67665484318,98937912745,1.27E+11,1.32E+11,1.71E+11,2.67E+11,2.47E+11,2.65E+11,2.74E+11,2.71E+11,2.71E+11,2.76E+11,3.03E+11,3.34E+11,3.41E+11,
India,Total reserves in months of imports,FI.RES.TOTL.MO,,,,,,,,,,,,,,,,3.874054855,7.312783222,10.3910421,10.5609208,11.41289678,8.258352404,5.432987958,5.431671899,5.31354411,5.384315683,5.603183206,5.928524356,5.781032456,3.990473316,3.153607689,2.036402773,2.922966313,3.371169861,5.070948974,6.880554229,5.133859717,5.009045892,5.39180135,5.674376856,6.311481499,6.12148029,7.452951964,10.37308375,12.28328225,11.30510989,8.518473172,8.919928499,11.13919199,7.714252544,9.773711067,7.734381993,6.188790574,5.903715108,6.027746591,6.599133603,8.003091768,8.430136536,
India,Total reserves (% of total external debt),FI.RES.TOTL.DT.ZS,,,,,,,,,,,,13.35464699,13.63609452,14.85807933,18.30874195,14.88883839,25.563216,39.47828254,50.33893459,64.9542116,57.95293631,36.07125308,30.58904144,26.8054492,26.05284416,24.38205397,23.33608098,21.54752003,15.49345588,10.91744553,6.75373713,8.975577533,10.86726171,16.06763972,24.74082298,24.373609,26.48760586,30.17816638,31.16589406,36.08486289,40.59968756,49.29728055,67.71966643,87.25872817,106.4593789,113.7211008,111.6121003,135.5392753,113.3462723,111.0687873,103.1113346,89.33615898,76.5171398,69.76246421,71.04780151,73.78111898,79.29459559,
India,"Total reserves (includes gold, current US$)",FI.RES.TOTL.CD,674536630.9,666357094.9,512791844,607862500.4,499145125.8,600850886.2,609694584.5,663764119.8,730352744.9,927764119.8,1023173272,1245821898,1367601419,1629325093,2324650347,2064427968,3728750637,6085439869,8316115828,11815414019,12009788667,8108837891,8241561693,8215732399,8535944481,9493102974,10480102588,11511740599,9185839447,8048455918,5637446364,7615987475,9538786025,14674627090,24220928478,22864636916,24889364651,28385372951,30646563680,36005296853,41059064901,49050838025,71607866919,1.04E+11,1.32E+11,1.38E+11,1.78E+11,2.77E+11,2.57E+11,2.85E+11,2.99E+11,2.99E+11,3.00E+11,2.98E+11,3.25E+11,3.53E+11,3.62E+11,
India,Bank liquid reserves to bank assets ratio (%),FD.RES.LIQU.AS.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,Domestic credit to private sector by banks (% of GDP),FD.AST.PRVT.GD.ZS,7.949170308,8.631313257,9.10189522,9.230585078,8.652207733,9.395421518,9.644054244,9.239985163,9.953416684,10.54073642,11.38846574,12.66234686,13.09706553,13.27089041,13.08839194,15.1356346,18.12954007,18.28570674,19.96169909,21.24006738,20.82120266,21.51242671,22.99463505,23.20217335,24.61087049,24.8957613,26.14982578,25.72552425,25.61683228,26.9493033,25.25332238,24.14380996,25.03215582,24.1542603,23.96704902,22.81511615,23.71883866,23.87378892,23.99786555,25.76657453,28.72269657,29.00634455,32.74326674,32.05384679,36.68111025,40.63665469,44.57317056,46.22127594,50.05802075,48.77678557,51.13514945,51.28923313,51.88850765,52.38570952,51.97736669,52.20809484,49.77372836,
India,"Depositors with commercial banks (per 1,000 adults)",FB.CBK.DPTR.P3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,607.6157548,607.0088775,617.8284247,647.8718155,711.3551314,794.0365244,863.8340804,934.460196,1022.23648,1160.71895,1337.410394,1541.790615,1731.267935,
India,"Borrowers from commercial banks (per 1,000 adults)",FB.CBK.BRWR.P3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,"Commercial bank branches (per 100,000 adults)",FB.CBK.BRCH.P5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.965148384,8.927126436,8.896846613,9.006829558,9.313591305,9.602376054,10.03730601,10.51203677,11.18393393,11.85125377,12.86703073,13.54457305,14.05614719,
India,Bank capital to assets ratio (%),FB.BNK.CAPA.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.702257602,6.969712806,6.923103346,7.087947358,7.212821163,7.155576706,
India,"Automated teller machines (ATMs) (per 100,000 adults)",FB.ATM.TOTL.P5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2.294134954,2.741204347,3.380119134,4.289596415,5.312340441,7.268430488,8.851846885,10.99209488,12.86647578,17.79601276,19.70138211,21.23577492,
India,Bank nonperforming loans to total gross loans (%),FB.AST.NPER.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2.449712061,,2.386132864,2.670195015,3.373953917,4.027728635,4.345849763,5.883522274,9.185519464,
India,Terrestrial and marine protected areas (% of total territorial area),ER.PTD.TOTL.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2.74,,,,,,,,,,2.95,,,,,,,,,,,,,,3.13,,,
India,Marine protected areas (% of territorial waters),ER.MRN.PTMR.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.5,,,,,,,,,,1.7,,,,,,,,,,,,,,2.1,,,
India,Terrestrial protected areas (% of total land area),ER.LND.PTLD.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.71,,,,,,,,,,5.05,,,,,,,,,,,,,,5.35,,,
India,Renewable internal freshwater resources per capita (cubic meters),ER.H2O.INTR.PC,,,3090.71745,,,,,2786.718988,,,,,2495.635602,,,,,2222.956614,,,,,1981.180123,,,,,1770.338946,,,,,1595.98931,,,,,1449.761671,,,,,1326.840304,,,,,1225.75485,,,,,1144.833421,,1117.586747,,,
India,"Renewable internal freshwater resources, total (billion cubic meters)",ER.H2O.INTR.K3,,,1446,,,,,1446,,,,,1446,,,,,1446,,,,,1446,,,,,1446,,,,,1446,,,,,1446,,,,,1446,,,,,1446,,,,,1446,,1446,,,
India,"Annual freshwater withdrawals, total (% of internal resources)",ER.H2O.FWTL.ZS,,,,,,,,,,,,,,,,,,26.27939142,,,,,30.31120332,,,,,34.39834025,,,,,34.57814661,,,,,,,,,,42.21300138,,,,,,,,,,52.62793914,,52.62793914,,,
India,"PPG, bonds (DIS, current US$)",DT.DIS.PBND.CD,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,9500000,20500000,234300000,305970000,271179000,113638000,689061000,715630000,416314000,1625051000,0,0,0,84718000,275000000,650000000,4233891000,0,5519814000,0,0,2273000000,3814836000,1714181000,2452000000,7389000000,11507150000,1765000000,11050000000,2032397000,7478361000,2044770000,29115662000,8701873000,2000000000,
India,"PPG, official creditors (DIS, current US$)",DT.DIS.OFFT.CD,,,,,,,,,,,1950871000,890986000,809074000,946138000,1240586000,1699118000,1474511000,1144012000,1036580000,1145076000,1413186000,1349163000,1790671000,1585763000,1735573000,1943679000,2015179000,3323707000,3530133000,3494335000,3471966000,4350496000,4153433000,3620984000,3294021000,2842502000,3063660000,3732856000,4438884000,3863800000,3270369000,3645444000,2917830000,3100188000,3626912000,3824272000,3722891000,4692890000,5874510000,5956673000,8379406000,6599451000,5169543000,5253171000,6225661000,6025942000,6978919000,10637463000
India,"PPG, multilateral concessional (DIS, current US$)",DT.DIS.MLTC.CD,,,,,,,,,,,172867000,105576000,187008000,323477000,399834000,491306000,533194000,354928000,340804000,574897000,689296000,811412000,1173156000,894519000,859874000,1049020000,659181000,935188000,802256000,580659000,772414000,964887000,1192389000,674575000,978787000,736415000,923815000,856254000,885197000,929245000,1072616000,1212300000,900766000,741581000,1099651000,1306682000,1051840000,817503000,983960000,1305294000,1109239000,2035605000,925868000,970881000,1622426000,1221921000,1646589000,
India,"PPG, multilateral (DIS, current US$)",DT.DIS.MLAT.CD,,,,,,,,,,,241413000,144171000,235501000,359303000,442756000,525536000,607788000,475837000,443306000,645628000,754027000,875448000,1281435000,977497000,940376000,1203631000,1113377000,2013727000,2503208000,2039900000,2137300000,2744104000,2412502000,2085017000,2221242000,1942031000,2234209000,2021464000,2058330000,2089242000,2355446000,2453989000,1946940000,2083854000,2510760000,2810960000,2731985000,3183813000,3700649000,4157493000,6237021000,4453363000,3190820000,2798236000,4078054000,3947404000,4451908000,4724442000
India,"PPG, IDA (DIS, current US$)",DT.DIS.MIDA.CD,,,,,,,,,,,172867000,105576000,187008000,323477000,399834000,491306000,533194000,333128000,326804000,546425000,651799000,787301000,1113003000,877475000,830243000,1020817000,643123000,900215000,761781000,565688000,748684000,953358000,1185622000,669328000,966175000,729151000,905979000,830100000,866441000,815698000,1054477000,1194762000,885637000,726815000,1092863000,1290097000,1004536000,801982000,961180000,1263153000,1066649000,1699567000,677115000,935549000,1579234000,1188149000,1610175000,
India,"PPG, IBRD (DIS, current US$)",DT.DIS.MIBR.CD,,,,,,,,,,,68546000,38595000,48493000,35826000,42922000,34230000,74594000,120909000,102502000,70731000,64731000,64036000,107640000,80137000,79395000,154026000,453722000,1056959000,1587753000,1379965000,1158899000,1217414000,840542000,1217181000,732663000,589156000,685529000,542142000,552679000,644233000,706399000,802732000,647319000,684067000,1003789000,863277000,978738000,1002837000,1121509000,1408435000,3333985000,983492000,931642000,840382000,1054095000,1392789000,1424378000,
India,IDA grants (current US$),DT.DIS.IDAG.CD,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
India,"Disbursements on external debt, public and publicly guaranteed (PPG) (DIS, current US$)",DT.DIS.DPPG.CD,,,,,,,,,,,2073850000,942769000,844020000,960720000,1318135000,1792213000,1526770000,1264880000,1121786000,1233707000,2086873000,1926023000,2951751000,2993037000,3806271000,4377678000,5907077000,6612921000,10062070000,6973227000,6258385000,6892582000,7097874000,7335976000,6610647000,5967677000,5933929000,5764766000,10198288000,5302915000,10256057000,4003426000,5440885000,6140397000,8294939000,6629615000,8377602000,16040189000,18824025000,10395657000,24337287000,13642146000,17268573000,14107971000,47037741000,27218530000,12070017000,
India,"Disbursements on external debt, private nonguaranteed (PNG) (DIS, current US$)",DT.DIS.DPNG.CD,,,,,,,,,,,25000000,25000000,25000000,1500000,73000000,112000000,61000000,91000000,61000000,79000000,285000000,422000000,355000000,407000000,450000000,503000000,325000000,348168000,175277000,240000000,214000000,308600000,253600000,1060010000,866941000,1179000000,784976000,1886209000,500000000,300000000,300000000,2249565000,2658056000,12550082000,8119193000,12750658000,24065723000,48485792000,19887552000,16250301000,19068848000,29207412000,32660667000,56205582000,83006018000,39128624000,29872787000,
India,"Disbursements on external debt, long-term (DIS, current US$)",DT.DIS.DLXF.CD,,,,,,,,,,,2098850000,967769000,869020000,962220000,1391135000,1904213000,1587770000,1355880000,1182786000,1312707000,2371873000,2348023000,3306751000,3400037000,4256271000,4880678000,6232077000,6961089000,10237347000,7213227000,6472385000,7201182000,7351474000,8395986000,7477588000,7146677000,6718905000,7650975000,10698288000,5602915000,10556057000,6252991000,8098941000,18690479000,16414132000,19380273000,32443325000,64525981000,38711577000,26645958000,43406135000,42849558000,49929240000,70313553000,1.30E+11,66347154000,41942804000,12045972000
India,"Disbursements on external debt, long-term + IMF (DIS, current US$)",DT.DIS.DLTF.CD,,,,,,,,,,,2098850000,967769000,869020000,1036150000,2005942000,2148750000,1587770000,1355880000,1182786000,1312707000,3406645000,3055921000,5294423000,4789899000,4461324000,4880678000,6232077000,6961089000,10237347000,7213227000,8194996000,8439854000,8978421000,8718551000,7477588000,7146677000,6718905000,7650975000,10698288000,5602915000,10556057000,6252991000,8098941000,18690479000,16414132000,19380273000,32443325000,64525981000,38711577000,26645958000,43406135000,42849558000,49929240000,70313553000,1.30E+11,66347154000,41942804000,
India,"IMF purchases (DIS, current US$)",DT.DIS.DIMF.CD,,,,,,,,,,,0,0,0,73930000,614807000,244537000,0,0,0,0,1034772000,707898000,1987672000,1389862000,205053000,0,0,0,0,0,1722611000,1238672000,1626947000,322565000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
India,"PPG, bilateral concessional (DIS, current US$)",DT.DIS.BLTC.CD,,,,,,,,,,,1632711000,706003000,558373000,586563000,789033000,1150198000,866307000,643479000,578267000,442208000,548018000,466435000,455530000,464958000,561257000,638348000,768670000,1174114000,861908000,966470000,1104216000,1423210000,1643234000,1371666000,883173000,829637000,702350000,1466417000,1846668000,1465587000,711905000,1037780000,804340000,898853000,1084848000,1007520000,977003000,956803000,1591250000,1582222000,2066223000,2011317000,1943079000,2454935000,2147607000,2078538000,2482752000,
India,"PPG, bilateral (DIS, current US$)",DT.DIS.BLAT.CD,,,,,,,,,,,1709458000,746815000,573573000,586835000,797830000,1173582000,866723000,668175000,593274000,499448000,659159000,473715000,509236000,608266000,795197000,740048000,901802000,1309980000,1026925000,1454435000,1334666000,1606392000,1740931000,1535967000,1072779000,900471000,829451000,1711392000,2380554000,1774558000,914923000,1191455000,970890000,1016334000,1116152000,1013312000,990906000,1509077000,2173861000,1799180000,2142385000,2146088000,1978723000,2454935000,2147607000,2078538000,2527011000,5913021000
India,Debt forgiveness or reduction (current US$),DT.DFR.DPPG.CD,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
India,"Currency composition of PPG debt, U.S. dollars (%)",DT.CUR.USDL.ZS,,,,,,,,,,,40.1993,39.9292,37.3222,34.146,32.3661,36.1507,35.7696,34.7529,33.2169,37.0429,39.0549,43.3884,47.4846,51.2937,55.0883,55.0805,54.31,52.539,55.6345,63.0946,61.1862,57.7574,57.8939,57.9181,53.0124,52.7225,55.9799,60.1286,60.0256,60.929,66.294,68.6886,72.0574,64.029,66.918,65.5584,66.1069,67.258,64.3478,67.57,69.6495,70.4644,77.7841,79.6543,82.8451,84.1055,82.6036,
India,"Currency composition of PPG debt, Pound sterling (%)",DT.CUR.UKPS.ZS,,,,,,,,,,,24.0822,24.434,27.0189,28.2552,29.9145,28.3447,28.1494,28.2415,28.2004,27.4778,26.9763,25.5007,22.9403,20.9236,18.6273,15.8813,13.4052,11.2807,9.426,6.9217,6.2708,6.3093,5.6044,5.0298,4.7528,4.7605,4.3359,4.0864,3.927,3.633,3.8449,3.7381,3.4495,4.0714,3.8246,3.66,3.1155,2.4866,2.0984,1.7341,1.3449,1.1376,0.8305,0.7437,0.5429,0.4378,0.3972,
India,"Currency composition of PPG debt, Swiss franc (%)",DT.CUR.SWFR.ZS,,,,,,,,,,,0.3469,0.3226,0.3052,0.313,0.3686,0.3542,0.345,0.4017,0.2173,0.2074,0.1615,0.1422,0.1122,0.1551,0.1291,0.1293,0.4503,0.5991,0.7663,0.6498,0.7298,0.6773,0.6125,0.6202,0.7389,0.9372,0.6459,0.5677,0.3845,0.2811,0.3483,0.3741,0.448,0.4382,0.4095,0.3456,0.292,0.2295,0.181,0.1304,0.0915,0.2296,0.3317,0.3168,0.3598,0.33,0.2355,
India,"Currency composition of PPG debt, SDR (%)",DT.CUR.SDRW.ZS,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.0021,0.2844,0.2781,0.254,0.2323,0.237,0.2523,0.2495,0.2349,0.2264,0.2158,0.2719,0.2785,0.2977,0.4251,0.632,1.5095,1.9104,2.0705,2.408,2.9019,2.8018,2.9419,2.4936,2.7163,2.3505,2.1588,2.3706,
India,"Currency composition of PPG debt, all other currencies (%)",DT.CUR.OTHC.ZS,,,,,,,,,,,10.7296,10.3053,9.5416,8.9664,8.7155,8.1269,7.6135,6.7868,5.4028,5.2983,5.1378,5.0352,5.0198,5.4799,6.5569,6.1409,4.5493,4.0133,3.3787,2.5214,2.3995,2.329,2.5262,2.0083,1.9464,1.9595,2.0312,1.7355,1.5984,1.4661,0.9063,0.8208,0.7683,0.4085,0.4332,0.4614,0.3823,0.32,0.2301,0.2458,0.213,0.1625,0.3941,0.4337,0.377,0.3595,0.3598,
India,"Currency composition of PPG debt, Multiple currencies (%)",DT.CUR.MULC.ZS,,,,,,,,,,,6.1722,5.3825,5.6787,5.9837,5.6491,5.3991,5.2309,5.1049,4.7104,4.4868,4.3857,4.3481,4.2561,3.9308,3.3351,3.5498,4.595,5.1047,6.8909,7.187,8.1862,10.0132,11.1962,11.9751,14.0347,13.4249,12.8227,12.3277,11.2411,10.5413,9.3542,8.3569,4.1831,2.9824,1.0619,1.0738,0.9022,2.0498,2.2648,2.0528,1.8416,1.7843,0.8389,0.6717,1.8908,1.7179,1.7268,
India,"Currency composition of PPG debt, Japanese yen (%)",DT.CUR.JYEN.ZS,,,,,,,,,,,5.0969,5.5114,5.7381,6.303,5.8429,5.6223,6.0258,6.8933,8.2836,6.1205,6.9195,6.153,5.8097,6.1302,5.5605,6.9386,8.4881,11.3159,11.8868,9.5384,10.1767,11.578,11.5327,12.9618,15.547,15.3762,14.173,12.472,13.9574,15.7044,12.6364,11.8724,12.6766,18.2515,18.8771,20.0407,20.2536,19.0978,22.9467,20.3282,20.0247,19.6008,14.2009,11.8706,8.9512,8.6384,9.8561,
India,"Currency composition of PPG debt, French franc (%)",DT.CUR.FFRC.ZS,,,,,,,,,,,1.3022,1.6976,1.8793,2.311,2.4705,2.6364,2.4237,2.4901,2.7252,2.6053,2.4897,1.9738,1.9835,1.6195,1.7441,2.3143,2.705,2.9122,2.1393,1.8255,1.9143,2.1264,2.0926,1.8228,1.8807,2.1605,1.9917,1.8667,1.7677,1.3812,1.269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
India,"Currency composition of PPG debt, Euro (%)",DT.CUR.EURO.ZS,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.8706,6.1194,9.3939,7.8437,7.3506,7.0371,6.4878,5.5232,5.0368,4.033,3.6789,3.1262,3.5929,2.6827,2.2521,2.4504,
India,"Currency composition of PPG debt, Deutsche mark (%)",DT.CUR.DMAK.ZS,,,,,,,,,,,9.4184,9.735,9.7815,10.8717,11.4548,10.4409,11.3198,11.745,12.9801,12.2826,10.6767,9.4216,8.8398,7.5428,6.5079,7.3082,8.6373,9.3205,7.5361,6.3522,6.9255,7.037,6.6053,6.0028,6.3643,6.8381,6.3892,5.4697,5.8777,5.0806,4.1971,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
India,"Commitments, private creditors (COM, current US$)",DT.COM.PRVT.CD,,,,,,,,,,,159402000,17519000,70069000,76372000,39888000,28235000,38582000,173194000,24949000,159617000,1415816000,637788000,1929647000,2148302000,1677041000,2285544000,3449394000,3301494000,6684518000,4540267000,4319235000,2469708000,3695357000,4223953000,521976000,944428000,3595588000,3624588000,9734938000,379771000,6980170000,200000000,524991000,175000000,360752000,521813000,2698005000,4250161000,1313887000,2049509000,5428764000,6736270000,4464713000,10927785000,10915303000,9039988000,3608089000,
India,"Commitments, official creditors (COM, current US$)",DT.COM.OFFT.CD,,,,,,,,,,,1797202000,1179098000,806177000,1357051000,1992413000,2563190000,1007234000,1939007000,2173860000,1398530000,4088657000,3074440000,2841664000,1963879000,4018202000,4596313000,3613596000,6434384000,5659083000,7707343000,4287163000,5514292000,5250914000,4199010000,4029266000,3969207000,4932674000,4129844000,2920276000,2182329000,3726656000,5195478000,4338298000,3058527000,3178972000,2817717000,4103259000,7736126000,7110301000,10679506000,8384720000,12921050000,13544932000,6084067000,15983560000,5603383000,8574904000,
India,"Commitments, IDA (COM, current US$)",DT.COM.MIDA.CD,,,,,,,,,,,285400000,446000000,279955000,559000000,728100000,817000000,0,824000000,1554503000,516000000,1956271000,1419572000,784026000,577648000,948063000,921945000,288131000,1005553000,572893000,860304000,930050000,1379496000,1269000000,704100000,1128700000,984300000,1063600000,929440000,1006900000,809100000,748980000,932988000,1050700000,509620000,193400000,0,800455000,1242500000,600000000,1055008000,2314605000,3420040000,1761300000,1110326000,2471500000,977561000,785000000,
India,"Commitments, IBRD (COM, current US$)",DT.COM.MIBR.CD,,,,,,,,,,,80500000,60000000,0,70000000,161000000,100000000,315000000,269000000,275000000,250000000,555000000,740000000,1112600000,500100000,1721400000,1924000000,1493200000,2478000000,2075000000,2126300000,1243000000,1482000000,928000000,771642000,1081000000,442800000,661100000,1165000000,748000000,190000000,1495270000,1649000000,1268000000,1076000000,110000000,0,0,2066500000,600000000,5811000000,2033740000,3724000000,420000000,277700000,1975000000,1448000000,2350000000,
India,"Commitments, public and publicly guaranteed (COM, current US$)",DT.COM.DPPG.CD,,,,,,,,,,,1956604000,1196617000,876246000,1433423000,2032301000,2591425000,1045816000,2112201000,2198809000,1558147000,5504473000,3712228000,4771311000,4112181000,5695243000,6881857000,7062990000,9735878000,12343601000,12247610000,8606398000,7984000000,8946271000,8422963000,4551242000,4913635000,8528262000,7754432000,12655214000,2562100000,10706826000,5395478000,4863289000,3233527000,3539724000,3339530000,6801264000,11986287000,8424188000,12729015000,13813484000,19657320000,18009645000,17011852000,26898863000,14643371000,12182993000,
India,"Principal rescheduled, private (current US$)",DT.AXR.PRVT.CD,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
India,"Principal rescheduled, official (current US$)",DT.AXR.OFFT.CD,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
India,Principal rescheduled (current US$),DT.AXR.DPPG.CD,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
India,Principal forgiven (current US$),DT.AXF.DPPG.CD,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
India,"Principal arrears, private creditors (current US$)",DT.AXA.PRVT.CD,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
India,"Principal arrears, official creditors (current US$)",DT.AXA.OFFT.CD,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2950000,1100000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
India,"Principal arrears, long-term DOD (US$)",DT.AXA.DPPG.CD,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2950000,1100000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
India,"PPG, private creditors (AMT, current US$)",DT.AMT.PRVT.CD,,,,,,,,,,,171407000,70805000,73324000,75774000,73055000,66064000,65676000,61575000,82848000,83534000,78646000,85030000,112542000,223265000,253557000,313493000,985491000,523877000,748491000,507369000,1087681000,1101395000,1328963000,1643681000,2634884000,2899279000,3566090000,2546855000,2780267000,2330457000,2959228000,1946878000,2127842000,6874616000,3775629000,9768871000,2195862000,6450149000,10446288000,2413361000,2004967000,2943400000,2518618000,6785818000,10101111000,7177976000,15426362000,4939303000
India,"PPG, other private creditors (AMT, current US$)",DT.AMT.PROP.CD,,,,,,,,,,,145233000,51264000,50111000,50658000,50245000,52902000,53691000,57459000,59578000,54548000,44661000,42967000,48264000,67766000,62794000,86423000,181370000,192908000,301021000,265535000,560460000,571059000,687774000,643245000,1191765000,781620000,828023000,1379544000,1688212000,1004819000,222910000,479530000,143292000,63209000,264640000,130907000,21916000,18814000,20213000,23999000,19386000,26358000,212358000,9061000,2460000,1552000,1552000,1554000
India,"PNG, commercial banks and other creditors (AMT, current US$)",DT.AMT.PNGC.CD,,,,,,,,,,,25000000,25000000,25000000,37800000,70000000,61000000,62000000,63000000,73000000,71000000,91000000,85000000,219000000,261000000,305000000,363000000,480000000,289497000,279548000,322000000,318431000,272800000,306100000,495000000,123200000,156100000,240200000,142500000,142500000,142500000,213633000,1787599000,1894042000,4699067000,5065786000,6796723000,7559562000,22845442000,9357954000,3975111000,12002610000,12557729000,11340541000,17342934000,64191078000,26231563000,45141567000,
India,"PNG, bonds (AMT, current US$)",DT.AMT.PNGB.CD,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150000000,149210000,764994000,35000000,315949000,490295000,332272000,83134000,117296000,56978000,409196000,879549000,1679028000,1851270000,2846787000,3678000000,832627000,2347368000,766922000,357734000,
India,"PPG, commercial banks (AMT, current US$)",DT.AMT.PCBK.CD,,,,,,,,,,,26174000,19541000,23213000,25116000,22810000,13162000,11985000,4116000,23270000,28986000,33985000,42063000,64278000,153707000,190763000,227070000,804121000,324969000,433658000,214036000,247967000,292510000,437097000,662657000,1046098000,1805719000,1491609000,1165311000,832929000,972598000,2736318000,1381348000,1842106000,1337032000,1203977000,1181258000,576946000,1118335000,958515000,1801619000,1837190000,2717042000,2306260000,2624030000,9948651000,7176424000,7156735000,4641247000
India,"PPG, bonds (AMT, current US$)",DT.AMT.PBND.CD,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1792000,0,0,0,6000000,13812000,27798000,279254000,237826000,204092000,337779000,397021000,311940000,1246458000,2000000,259126000,353040000,0,86000000,142444000,5474375000,2307012000,8456706000,1597000000,5313000000,9467560000,587743000,148391000,200000000,0,4152727000,150000000,0,8268075000,296502000
India,"PPG, official creditors (AMT, current US$)",DT.AMT.OFFT.CD,,,,,,,,,,,522290000,257968000,296777000,322290000,402383000,443957000,431591000,458668000,527977000,570294000,597570000,584397000,589864000,578725000,532624000,645151000,753439000,917018000,782024000,864674000,1014306000,1262396000,1393271000,1667314000,2106590000,3585997000,2645259000,3930494000,3280226000,2655795000,3217070000,3283078000,6693355000,8304295000,4137554000,2700622000,2599800000,2391988000,3000822000,2922869000,3158804000,3879345000,3664568000,3969949000,4134308000,4596051000,5046073000,6155859000
India,"PPG, multilateral concessional (AMT, current US$)",DT.AMT.MLTC.CD,,,,,,,,,,,0,625000,1667000,3352000,5022000,6368000,8826000,10255000,10657000,13002000,15202000,20264000,27711000,35008000,44413000,56663000,67714000,77300000,93867000,109491000,127979000,155883000,171208000,191680000,211533000,244616000,252141000,273599000,313258000,350988000,386848000,441100000,466751000,540244000,574890000,620103000,664058000,712450000,777781000,811905000,850300000,909433000,944838000,991856000,1232734000,1623617000,1780354000,
India,"PPG, multilateral (AMT, current US$)",DT.AMT.MLAT.CD,,,,,,,,,,,78781000,55613000,52123000,52024000,57339000,63158000,65886000,82062000,84042000,74436000,77592000,68694000,74045000,89131000,99734000,123314000,157772000,315945000,180998000,268233000,396252000,492282000,612421000,777939000,861623000,1213523000,987862000,1014744000,1103745000,1242103000,1462706000,1421628000,5264366000,5850037000,2122748000,946851000,1149019000,1195184000,1342137000,1471478000,1656075000,1878771000,2013739000,2317218000,2660356000,3102454000,3477957000,3990721000
India,"PPG, IDA (AMT, current US$)",DT.AMT.MIDA.CD,,,,,,,,,,,0,625000,1667000,3352000,5022000,6368000,8826000,10255000,10657000,13002000,15202000,19719000,25746000,33043000,41116000,52700000,61085000,68671000,80738000,97776000,113875000,141312000,155185000,174096000,193717000,226317000,234076000,250221000,287978000,329588000,366688000,428749000,455837000,527988000,561903000,606860000,653226000,699874000,764398000,798835000,835108000,893160000,924980000,968344000,1207436000,1418655000,1544487000,
India,"PPG, IBRD (AMT, current US$)",DT.AMT.MIBR.CD,,,,,,,,,,,78781000,54988000,50456000,48672000,52317000,56790000,57060000,71807000,73385000,61434000,62390000,48430000,46334000,54123000,55321000,66140000,89436000,237915000,86379000,153336000,259361000,316372000,408318000,536073000,587197000,644312000,609452000,618323000,650171000,738013000,716881000,723690000,3030741000,3616825000,254968000,210445000,259172000,346179000,389940000,454540000,538766000,640609000,674841000,837940000,882741000,899933000,983656000,
India,"Principal repayments on external debt, public and publicly guaranteed (PPG) (AMT, current US$)",DT.AMT.DPPG.CD,,,,,,,,,,,693697000,328773000,370101000,398064000,475438000,510021000,497267000,520243000,610825000,653828000,676216000,669427000,702406000,801990000,786181000,958644000,1738930000,1440895000,1530515000,1372043000,2101987000,2363791000,2722234000,3310995000,4741474000,6485276000,6211349000,6477349000,6060493000,4986252000,6176298000,5229956000,8821197000,15178911000,7913183000,12469493000,4795662000,8842137000,13447110000,5336230000,5163771000,6822745000,6183186000,10755767000,14235419000,11774027000,20472435000,
India,"Principal repayments on external debt, private nonguaranteed (PNG) (AMT, current US$)",DT.AMT.DPNG.CD,,,,,,,,,,,25000000,25000000,25000000,37800000,70000000,61000000,62000000,63000000,73000000,71000000,91000000,85000000,219000000,261000000,305000000,363000000,480000000,289497000,279548000,322000000,318431000,272800000,306100000,495000000,123200000,156100000,240200000,292500000,291710000,907494000,248633000,2103548000,2384337000,5031339000,5148920000,6914019000,7616540000,23254638000,10237503000,5654139000,13853880000,15404516000,15018541000,18175561000,66538446000,26998485000,45499301000,20008830000
India,"Principal repayments on external debt, long-term (AMT, current US$)",DT.AMT.DLXF.CD,,,,,,,,,,,718697000,353773000,395101000,435864000,545438000,571021000,559267000,583243000,683825000,724828000,767216000,754427000,921406000,1062990000,1091181000,1321644000,2218930000,1730392000,1810063000,1694043000,2420418000,2636591000,3028334000,3805995000,4864674000,6641376000,6451549000,6769849000,6352203000,5893746000,6424931000,7333504000,11205534000,20210250000,13062103000,19383512000,12412202000,32096775000,23684613000,10990369000,19017651000,22227261000,21201727000,28931328000,80773865000,38772512000,65971736000,31103992000
India,"Principal repayments on external debt, long-term + IMF (AMT, current US$)",DT.AMT.DLTF.CD,,,,,,,,,,,923697000,353773000,395101000,435864000,545438000,571021000,896394000,911565000,935982000,826461000,776744000,795072000,921406000,1134087000,1227542000,1575991000,2848408000,2790380000,3032317000,2702079000,3132970000,3098476000,3362879000,3939815000,6017567000,8368300000,7436372000,7388057000,6739733000,6156969000,6450322000,7333504000,11205534000,20210250000,13062103000,19383512000,12412202000,32096775000,23684613000,10990369000,19017651000,22227261000,21201727000,28931328000,80773865000,38772512000,65971736000,
India,"IMF repurchases (AMT, current US$)",DT.AMT.DIMF.CD,,,,,,,,,,,205000000,0,0,0,0,0,337127000,328322000,252157000,101633000,9528000,40645000,0,71097000,136361000,254347000,629478000,1059988000,1222254000,1008036000,712552000,461885000,334545000,133820000,1152893000,1726924000,984823000,618208000,387530000,263223000,25391000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
India,"PPG, bilateral concessional (AMT, current US$)",DT.AMT.BLTC.CD,,,,,,,,,,,316737000,143249000,184564000,204220000,283253000,318451000,306058000,321154000,401039000,463117000,491385000,497092000,500663000,471520000,399518000,465337000,471549000,540507000,534456000,516465000,548622000,671885000,690465000,746310000,1091310000,2113041000,1477309000,2669067000,1913407000,1166774000,1426017000,1518805000,1108862000,2093508000,1734977000,1542637000,1253227000,1021924000,1449108000,1257195000,1294015000,1782868000,1425638000,1465910000,1297908000,1302647000,1394967000,
India,"PPG, bilateral (AMT, current US$)",DT.AMT.BLAT.CD,,,,,,,,,,,443509000,202355000,244654000,270266000,345044000,380799000,365705000,376606000,443935000,495858000,519978000,515703000,515819000,489594000,432890000,521837000,595667000,601073000,601026000,596441000,618054000,770114000,780850000,889375000,1244967000,2372474000,1657397000,2915750000,2176481000,1413692000,1754364000,1861450000,1428989000,2454258000,2014806000,1753771000,1450781000,1196804000,1658685000,1451391000,1502729000,2000574000,1650829000,1652731000,1473952000,1493597000,1568116000,2165138000
India,"Net bilateral aid flows from DAC donors, United States (current US$)",DC.DAC.USAL.CD,524000000,376000000,535000000,740000000,861000000,857370000,734270000,828580000,592170000,498000000,418000000,454000000,104000000,84000000,91000000,225000000,135000000,64000000,83000000,94000000,83000000,183000000,39000000,58000000,65000000,29000000,49000000,39000000,91000000,69000000,-24000000,27000000,11000000,20000000,6000000,16000000,6000000,29000000,3030000,8130000,14550000,-17310000,-3790000,35980000,50510000,57130000,96840000,84870000,52060000,48120000,62800000,82820000,57700000,71940000,78170000,60450000,,
India,"Net bilateral aid flows from DAC donors, Total (current US$)",DC.DAC.TOTL.CD,736410000,619660000,666700000,902870000,1112490000,1082930000,1049100000,1145700000,911100000,757910000,756670000,858970000,464950000,462610000,651940000,919200000,737570000,517440000,697930000,803750000,718870000,1083450000,563050000,830020000,725390000,588040000,1073590000,1055030000,1102880000,1263160000,810260000,1807370000,1275390000,844990000,1434480000,1126260000,1130560000,1021890000,965280000,916330000,710150000,988730000,883040000,446790000,155640000,1051560000,863800000,1003900000,1678650000,1676990000,2319280000,2139020000,1607340000,1973760000,1932670000,2363250000,,
India,"Net bilateral aid flows from DAC donors, Sweden (current US$)",DC.DAC.SWEL.CD,,,70000,1650000,2820000,6170000,,4060000,4590000,6540000,7360000,10500000,11060000,10670000,47400000,85040000,58230000,55290000,52020000,73270000,69470000,46630000,56670000,47820000,50260000,41150000,80760000,43610000,56440000,203080000,59020000,64380000,64630000,65810000,91110000,51500000,51410000,25600000,16570000,13300000,15350000,11200000,8160000,18440000,11580000,16460000,17060000,13490000,12310000,9930000,11000000,12200000,13550000,13930000,7270000,5850000,,
India,"Net bilateral aid flows from DAC donors, Slovenia (current US$)",DC.DAC.SVNL.CD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,60000,10000,,,30000,10000,,,,
India,"Net bilateral aid flows from DAC donors, Slovak Republic (current US$)",DC.DAC.SVKL.CD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,530000,90000,10000,,,,,,,,20000,,
India,"Net bilateral aid flows from DAC donors, Portugal (current US$)",DC.DAC.PRTL.CD,300000,3360000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,40000,,,,,30000,240000,780000,240000,,290000,390000,390000,520000,440000,420000,390000,460000,380000,380000,400000,270000,,
India,"Net bilateral aid flows from DAC donors, Poland (current US$)",DC.DAC.POLL.CD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,160000,40000,190000,360000,110000,190000,130000,130000,130000,250000,150000,,
India,"Net bilateral aid flows from DAC donors, New Zealand (current US$)",DC.DAC.NZLL.CD,,,,,,,,,,,,,450000,220000,200000,730000,370000,510000,670000,360000,330000,270000,140000,10000,20000,10000,100000,140000,140000,140000,200000,80000,60000,160000,470000,580000,570000,770000,530000,790000,960000,1040000,690000,1020000,960000,1700000,940000,1260000,1680000,1910000,360000,880000,380000,490000,210000,670000,,
India,"Net bilateral aid flows from DAC donors, Norway (current US$)",DC.DAC.NORL.CD,700000,900000,890000,880000,820000,1370000,1950000,1080000,1720000,1120000,2590000,4820000,5850000,8050000,7820000,8920000,9630000,15240000,21220000,22050000,22360000,19680000,20950000,20390000,19400000,23400000,24800000,30400000,27770000,24940000,25030000,21260000,19880000,13730000,12490000,8200000,13390000,13810000,11050000,9850000,8030000,11600000,8460000,8110000,13200000,28690000,18250000,32670000,34880000,16080000,23990000,29350000,37140000,34370000,23710000,17080000,,
India,"Net bilateral aid flows from DAC donors, Netherlands (current US$)",DC.DAC.NLDL.CD,,,,,2900000,13890000,,6750000,7810000,8700000,15620000,11440000,12740000,24670000,32500000,55310000,58320000,71340000,79030000,90590000,144770000,151210000,61060000,70250000,60790000,60090000,101120000,104000000,115190000,92360000,148480000,122560000,94180000,42490000,48560000,81800000,58490000,32820000,27020000,-4880000,-8880000,73480000,59370000,43090000,-315790000,72810000,13050000,6850000,4940000,7210000,2480000,970000,2410000,1830000,870000,2130000,,
India,"Net bilateral aid flows from DAC donors, Luxembourg (current US$)",DC.DAC.LUXL.CD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,330000,640000,450000,1040000,1330000,1770000,940000,3280000,2840000,3560000,2500000,2910000,1950000,2580000,2190000,2330000,2050000,2960000,3340000,3130000,3700000,3090000,2350000,3020000,2320000,2000000,,
India,"Net bilateral aid flows from DAC donors, Korea, Rep. (current US$)",DC.DAC.KORL.CD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10000,20000,20000,80000,60000,170000,70000,50000,170000,110000,110000,190000,140000,450000,430000,1230000,810000,890000,680000,3860000,2500000,750000,1070000,1130000,430000,300000,500000,230000,,
India,"Net bilateral aid flows from DAC donors, Japan (current US$)",DC.DAC.JPNL.CD,16200000,23230000,8660000,32470000,35460000,53230000,49450000,40270000,78270000,33890000,32730000,33540000,26670000,68980000,64750000,46610000,79440000,28790000,44760000,42190000,37410000,4040000,41090000,129530000,21610000,21910000,226700000,303930000,179460000,257240000,87260000,891050000,425200000,295940000,886520000,506420000,579270000,491800000,504950000,634020000,368160000,528870000,493640000,325790000,-82050000,71460000,29530000,99890000,599810000,517010000,981140000,801960000,704650000,662340000,704810000,867650000,,
India,"Net bilateral aid flows from DAC donors, Italy (current US$)",DC.DAC.ITAL.CD,2960000,2450000,-3740000,700000,-3120000,-590000,10000,2220000,100000,50000,5540000,-100000,7730000,7110000,-700000,-1010000,-1740000,20170000,-1630000,-1280000,-3080000,-2970000,-2030000,-1960000,10270000,13280000,30320000,43030000,56720000,71030000,14320000,34650000,280000,-4140000,920000,-4230000,-4880000,-4480000,-13610000,-14660000,-15580000,-8270000,-20140000,-12540000,-80060000,3490000,2400000,1400000,20230000,15330000,11490000,12470000,4740000,8390000,7080000,12130000,,
India,"Net bilateral aid flows from DAC donors, Iceland (current US$)",DC.DAC.ISLL.CD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,180000,,,,,20000,,,,
India,"Net bilateral aid flows from DAC donors, Ireland (current US$)",DC.DAC.IRLL.CD,,,,,,,,,,,,,,,360000,10000,80000,10000,30000,20000,20000,40000,50000,50000,50000,50000,80000,90000,30000,10000,30000,80000,120000,390000,260000,610000,570000,480000,490000,970000,870000,2280000,1540000,1780000,3150000,6590000,5920000,7040000,6410000,5040000,4260000,4760000,4300000,3790000,3560000,1850000,,
India,"Net bilateral aid flows from DAC donors, Greece (current US$)",DC.DAC.GRCL.CD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10000,110000,40000,120000,1230000,20000,180000,10000,10000,40000,140000,170000,160000,100000,210000,180000,30000,10000,20000,,
India,"Net bilateral aid flows from DAC donors, United Kingdom (current US$)",DC.DAC.GBRL.CD,82840000,60600000,61960000,57700000,94600000,65360000,89440000,74280000,65310000,47600000,86720000,126000000,110770000,88940000,141720000,113830000,163890000,106920000,187220000,258060000,133910000,280290000,33610000,144830000,144090000,93290000,162110000,76570000,112560000,81870000,97130000,148610000,150330000,79180000,100410000,142220000,154320000,153960000,186600000,131680000,204160000,173880000,343720000,329880000,370150000,579240000,349300000,510530000,613120000,630340000,650340000,453850000,462860000,420120000,459430000,283540000,,
India,"Net bilateral aid flows from DAC donors, France (current US$)",DC.DAC.FRAL.CD,,,,,,,,,2500000,8500000,15200000,25500000,24110000,32000000,19750000,36040000,40870000,26700000,20000000,13000000,16400000,31430000,29390000,20850000,43600000,65220000,72280000,69420000,52890000,103390000,51460000,62500000,59610000,28560000,4130000,4720000,14820000,36400000,-13430000,-28640000,-11620000,-8890000,-135890000,-15360000,-13040000,-13980000,4280000,-48000000,-27170000,-29010000,2830000,75970000,-14550000,88100000,117260000,55030000,,
India,"Net bilateral aid flows from DAC donors, Finland (current US$)",DC.DAC.FINL.CD,,,,,,,,,,,,720000,220000,,10000,10000,20000,10000,,30000,,70000,220000,150000,630000,430000,690000,920000,1200000,1190000,2980000,3700000,5630000,2240000,2040000,1710000,1140000,1040000,1360000,-320000,1080000,2080000,2540000,2420000,-3370000,5780000,3910000,3990000,4320000,7730000,6120000,1360000,4400000,4340000,5370000,1330000,,
India,"Net bilateral aid flows from DAC donors, Spain (current US$)",DC.DAC.ESPL.CD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17790000,24950000,3820000,50000,470000,3280000,1960000,1910000,2640000,2840000,20000,-1030000,1190000,-290000,-21310000,9450000,11240000,8910000,12620000,14040000,25340000,11410000,7830000,5680000,5480000,4980000,2260000,,
India,"Net bilateral aid flows from DAC donors, Denmark (current US$)",DC.DAC.DNKL.CD,20000,10000,,,900000,,4590000,3650000,2210000,4060000,2620000,3680000,3660000,4000000,5170000,5560000,7910000,13990000,22290000,17910000,25840000,13960000,22640000,44130000,30980000,24210000,38690000,42110000,34000000,48200000,37070000,39110000,29890000,28320000,34540000,26410000,37570000,34350000,37660000,25130000,20850000,19030000,8490000,-64140000,950000,6220000,-8540000,-230000,8590000,7370000,10140000,4240000,-130000,-130000,100000,1450000,,
India,"Net bilateral aid flows from DAC donors, Germany (current US$)",DC.DAC.DEUL.CD,82790000,131780000,54060000,44460000,72310000,44500000,50420000,62320000,74930000,58080000,50300000,54930000,60250000,59440000,59840000,92580000,90610000,14900000,91240000,92210000,34620000,117730000,114340000,140070000,95160000,86510000,166530000,136600000,152320000,122540000,169240000,262650000,274430000,156960000,123110000,167950000,51230000,54990000,106460000,29560000,15630000,57500000,-26100000,3520000,-10720000,-68810000,55700000,127970000,147690000,263380000,396930000,496900000,171260000,472680000,435620000,751610000,,
India,"Net bilateral aid flows from DAC donors, Czech Republic (current US$)",DC.DAC.CZEL.CD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1310000,220000,170000,220000,120000,180000,110000,60000,50000,70000,20000,,
India,"Net bilateral aid flows from DAC donors, Switzerland (current US$)",DC.DAC.CHEL.CD,,20000,,190000,320000,660000,1450000,930000,3090000,4660000,4040000,4760000,3440000,4860000,4430000,14420000,5540000,4850000,9020000,19510000,16600000,5470000,18470000,21840000,20530000,14060000,10150000,23510000,22200000,19690000,12880000,41200000,36950000,26990000,25050000,22690000,21320000,25230000,19710000,19390000,18320000,22050000,23610000,24580000,28760000,24630000,20320000,17000000,14650000,12080000,10420000,21020000,10700000,11010000,15130000,12680000,,
India,"Net bilateral aid flows from DAC donors, European Union institutions (current US$)",DC.DAC.CECL.CD,,,,,,,,,,5090000,4150000,10810000,19320000,5880000,49430000,99540000,12180000,35870000,27730000,34740000,85480000,152830000,91840000,80170000,91590000,72130000,58660000,105040000,153330000,111670000,58400000,37520000,77660000,33550000,56820000,65430000,104660000,92770000,50090000,77900000,59670000,83770000,97300000,61230000,140400000,187800000,209740000,89620000,122310000,98910000,94260000,84840000,92580000,135020000,40210000,264700000,,
India,"Net bilateral aid flows from DAC donors, Canada (current US$)",DC.DAC.CANL.CD,26600000,21310000,9800000,25130000,40710000,27150000,101980000,93420000,67490000,69770000,105820000,104820000,70410000,54780000,112560000,109300000,66920000,36760000,46330000,17420000,35790000,51850000,33710000,40610000,64860000,42310000,46480000,38500000,49190000,24310000,22560000,25060000,12490000,38420000,34640000,20110000,29420000,16830000,14160000,4760000,6790000,13400000,16030000,-281450000,33560000,34010000,25460000,21430000,13280000,11540000,7910000,10780000,8900000,10800000,7320000,9660000,,
India,"Net bilateral aid flows from DAC donors, Belgium (current US$)",DC.DAC.BELL.CD,,,,,,,60000,1610000,2570000,4590000,1100000,7820000,5050000,6440000,7070000,9420000,700000,10660000,12270000,24510000,490000,19260000,-480000,6230000,5390000,-790000,-1700000,-1870000,-2660000,-2710000,4300000,-3700000,-3330000,4640000,-2230000,-3150000,-4530000,-3330000,-2960000,-2250000,-1320000,5560000,-5060000,3820000,-19940000,690000,4520000,5310000,17520000,12060000,7170000,5370000,7120000,4100000,2990000,2910000,,
India,"Net bilateral aid flows from DAC donors, Austria (current US$)",DC.DAC.AUTL.CD,,,,-310000,3770000,4260000,4530000,4650000,3740000,2310000,1230000,110000,-1090000,610000,1500000,3930000,3010000,2920000,230000,290000,12300000,5930000,200000,5260000,-1030000,-810000,5060000,-1440000,-1330000,8030000,-1640000,9120000,-1590000,-2200000,-4450000,-990000,-2890000,-470000,-1530000,-2360000,750000,-340000,570000,-30040000,2420000,8010000,1720000,2560000,2440000,2340000,2150000,1990000,2320000,2540000,2710000,3390000,,
India,"Net bilateral aid flows from DAC donors, Australia (current US$)",DC.DAC.AUSL.CD,,,,,,9560000,10950000,21880000,4600000,4950000,3650000,5620000,310000,1960000,7130000,13960000,6590000,8510000,2500000,4870000,3160000,2730000,2180000,1790000,2190000,2590000,1760000,1470000,2420000,9370000,20240000,16000000,17410000,12270000,9370000,14500000,15660000,14280000,11230000,10120000,10410000,11240000,7550000,7980000,12220000,12780000,980000,5780000,8270000,9580000,16450000,24330000,27770000,18680000,12320000,4170000,,
India,"Stocks traded, turnover ratio of domestic shares (%)",CM.MKT.TRNR,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,97.4705262,101.2680199,83.86943123,79.59462439,62.85434168,142.9925632,83.47027151,66.24811498,64.0842135,48.76564697,47.22174966,46.89110026,50.91606661,50.5526928,
India,"Stocks traded, total value (% of GDP)",CM.MKT.TRAD.GD.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,45.36965816,56.13483599,57.34444088,70.82164766,95.19377631,77.9689574,82.37199241,65.25686156,35.40469354,33.70874197,28.96380367,35.89988296,36.94007786,34.98550218,
India,"Stocks traded, total value (current US$)",CM.MKT.TRAD.CD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2.72E+11,3.93E+11,4.64E+11,6.52E+11,1.14E+12,9.25E+11,1.09E+12,1.08E+12,6.45E+11,6.16E+11,5.38E+11,7.31E+11,7.72E+11,7.92E+11,
India,"Listed domestic companies, total",CM.MKT.LDOM.NO,,,,,,,,,,,,,,,,,,,,,,,,1151,1295,1529,1911,2095,2240,2407,2435,2556,2781,3263,4413,5398,5999,5843,5724,5789,5853,5795,5650,5644,4725,4763,4796,4887,4921,4955,5034,5112,5191,5294,5541,5835,5820,
India,Market capitalization of listed domestic companies (% of GDP),CM.MKT.LCAP.GD.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,46.54705369,55.43194784,68.37347057,88.97792809,151.4513934,54.52658211,98.68422723,98.50372584,55.24713748,69.1239511,61.33572746,76.56012072,72.55092611,69.20601107,
India,Market capitalization of listed domestic companies (current US$),CM.MKT.LCAP.CD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2.79E+11,3.88E+11,5.53E+11,8.19E+11,1.82E+12,6.47E+11,1.31E+12,1.63E+12,1.01E+12,1.26E+12,1.14E+12,1.56E+12,1.52E+12,1.57E+12,
India,S&P Global Equity Indices (annual % change),CM.MKT.INDX.ZG,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-2,5.801000118,-22.97540092,81,-31.08166313,-19.91509628,6.829999924,76.51999664,20.09000015,33.56282272,46.70103093,78.58046381,-64.13702188,94.13996825,18.72242586,-38.04853051,23.33122262,-6.335899385,31.62886129,-3.910217675,-0.150059362,
India,"Personal remittances, received (% of GDP)",BX.TRF.PWKR.DT.GD.ZS,,,,,,,,,,,,,,,,0.442452799,0.633806611,0.779545554,0.859811913,0.951977928,1.499661453,1.20550048,1.321804494,1.235231955,1.096245495,1.076328873,0.911772629,0.968145185,0.791195409,0.894866266,0.752687094,1.234176819,1.018914742,1.278362463,1.813723981,1.750609481,2.261204058,2.517780629,2.280153084,2.457318507,2.787743197,2.979968086,3.097165497,3.502234752,2.679816468,2.735203365,3.078684492,3.098525571,4.210553166,3.716475143,3.228263245,3.428270092,3.765544552,3.768488566,3.458232729,3.297326852,2.771648201,
India,Net barter terms of trade index (2000 = 100),TT.PRI.MRCH.XD.WD,,,,,,,,,,,,,,,,,,,,,71.64179104,65.4676259,72.30769231,75.80645161,94.11764706,80.99173554,83.76068376,100,97.56097561,94.61538462,85.81560284,93.6,98.31932773,113.1313131,118.75,108,99.03846154,113.592233,117.5824176,105.2083333,100,97.82157676,88.63089839,96.20109988,91.67678262,87.81584285,85.70074227,81.60530857,81.60530857,95.01264904,93.47190338,89.99280028,90.08306387,92.44620825,94.9438212,104.2709273,113.2595189,
India,Travel services (% of commercial service imports),TM.VAL.TRVL.ZS.WT,,,,,,,,,,,,,,,,2.390466803,3.489509847,4.164110773,4.753246047,5.277636707,3.879684845,4.552229745,5.581053,6.246155456,8.562010425,9.284388207,7.888811978,7.784094952,7.686334398,7.249108922,6.615903949,7.481023274,7.107575624,7.46340914,9.571243721,9.900240587,8.299077664,10.92779965,12.07046737,11.79091184,14.23650561,15.18747959,14.38304549,14.52567789,13.72299209,13.24775619,11.79341373,11.78221838,17.44590278,17.79737855,13.41198413,17.81073993,15.57975642,14.95677127,18.20710173,18.14624903,17.1951517,
India,Transport services (% of commercial service imports),TM.VAL.TRAN.ZS.WT,,,,,,,,,,,,,,,,72.22921114,64.95604719,64.40551918,66.79180983,63.85501977,61.34786057,61.12541056,61.80914055,57.64368704,59.37996283,58.32299641,56.44965319,56.22661017,58.61084517,57.49758108,57.5196443,55.93254711,60.55196431,62.55991034,56.83307194,56.67847951,58.60750875,55.4951881,49.98067904,40.94713691,46.33161554,43.60541927,43.43563146,38.97037028,38.53356677,44.72548776,43.34752918,44.82297367,25.84183413,21.20201571,18.27314438,19.99067884,19.82641369,18.04265971,20.43436137,18.86535504,14.80913363,
India,Commercial service imports (current US$),TM.VAL.SERV.CD.WT,,,,,,,,,,,,,,,,1011288821,1088254783,1234808904,1490190463,2010383972,2914594803,3178450157,3398551291,3622400851,3550012166,3815194909,3827926653,4515961320,5167884705,5738469741,5942595183,5796636459,6614564439,6356161518,8030392452,10062141167,11000427519,12277011575,14191837256,17044738890,18897585609,19791960830,20776267074,24678773632,35092846077,46699475817,58040553581,69757132293,55061627135,52308542315,78210856251,76915514527,79215876738,77654804413,80160943501,81766553453,95239277835,
India,"Computer, communications and other services (% of commercial service imports)",TM.VAL.OTHR.ZS.WT,,,,,,,,,,,,,,,,19.55904657,26.58781262,26.2709921,22.72868104,25.35308882,29.39128366,29.28554758,27.8028176,31.63210432,27.25755612,27.56480557,30.86178382,31.42745694,28.54110912,29.4697902,30.0780713,30.55505362,26.25022755,23.07356007,27.47335369,27.86800555,27.75427089,28.27894341,33.52232166,43.65865572,28.37083872,28.11704085,30.98278006,39.80935522,40.51042491,35.17642407,36.89716947,34.1830457,48.24929629,51.35334874,57.81671141,49.51158775,56.03015778,57.94107849,54.78091224,57.78082443,61.35691732,
India,Import value index (2000 = 100),TM.VAL.MRCH.XD.WD,,,,,,,,,,,,,,,,,,,,,28.85008414,29.92494599,28.69811288,27.29019523,29.64177094,30.91440893,29.93057456,32.36483195,37.07419419,39.88401274,45.76528107,39.68681887,45.76334018,44.22965322,52.09858141,67.3620856,73.64142935,80.41453412,83.41902339,91.18120292,100,97.80505368,109.6929715,140.8261181,193.6525312,277.294174,346.2732106,445.1804926,623.0850748,499.1997733,679.7614265,901.4671146,950.4393192,903.2819775,898.4541243,762.5082245,698.2801434,
India,Merchandise imports from low- and middle-income economies within region (% of total merchandise imports),TM.VAL.MRCH.WR.ZS,2.249488753,1.739484028,2.604707511,1.935378055,1.87892225,2.592953226,1.057949262,1.421836414,1.447668576,1.876529908,1.426926733,1.054410049,1.468667239,1.76213361,1.048607189,1.227169088,1.601384048,1.147679502,0.982800669,0.909650233,1.042921854,1.326912979,0.872898087,0.728218485,0.793079173,0.762541641,0.613451687,0.615497408,0.608431948,0.346629579,0.464181122,0.54042589,0.858647793,0.476234095,0.517313087,0.599625419,0.55955398,0.598768719,1.023431603,0.913247252,0.943051791,1.162234909,0.926826103,0.898929342,0.891106173,0.937434303,0.840575843,0.835487979,0.622901879,0.593460073,0.589867717,0.547846795,0.553774912,0.52735894,0.583225108,0.773178971,0.763967885,
India,Merchandise imports by the reporting economy (current US$),TM.VAL.MRCH.WL.CD,2249400000,2213300000,2311200000,2438800000,2661100000,2772900000,2731700000,2672600000,2507480000,2116140000,2093310000,2408930000,2235360000,3233580000,5063860000,6197190000,5098090000,6663010000,7819490000,9898310000,14821820000,14549560000,15634832072,13892733307,15115251169,16328998485,15051439900,16838039379,19034715452,19297491942,23991423128,19509428000,23196569257,21268794080,25484480716,34486530000,36054758486,40896425000,42162075000,47900500000,50259700014,50129318493,58811451691,73931350649,99815185141,1.40E+11,1.77E+11,2.35E+11,3.21E+11,2.58E+11,3.51E+11,4.65E+11,4.90E+11,4.68E+11,4.61E+11,3.92E+11,3.56E+11,
India,"Merchandise imports by the reporting economy, residual (% of total merchandise imports)",TM.VAL.MRCH.RS.ZS,4.983551169,6.488049519,10.12461059,9.451369526,10.52948029,10.89112482,11.15056558,9.806929582,12.21545137,18.45624581,12.77546087,9.385079683,11.83075657,10.45250156,15.62148243,10.71937443,8.129319019,10.82318652,12.57089657,14.38659731,12.74661276,14.2951402,12.94228346,16.18395554,16.42007506,15.54909583,11.37909667,14.59850988,14.31851732,15.47621296,15.28628889,21.12152135,8.413243202,9.137741156,4.818722028,10.38243047,4.778728629,0.220434916,0.165788804,0.134654127,23.40160208,27.89854542,28.664795,27.08261282,27.88709398,29.31537892,6.640838504,0.706731637,0.615297086,0.473234305,0.54762213,0.755067614,0.273908887,0.440908744,1.514500627,2.228307008,2.270671191,
India,Merchandise imports from low- and middle-income economies in Sub-Saharan Africa (% of total merchandise imports),TM.VAL.MRCH.R6.ZS,3.143060372,2.84191027,3.033056421,2.070690504,2.739468641,1.7634967,1.489914705,2.031729402,3.716879098,5.680626046,6.844662281,5.879788952,6.314419154,4.880967844,2.703668743,1.48309153,3.370870267,4.386005724,2.055632784,1.895070977,1.195872032,1.275983604,0.925188089,1.651730944,1.641530665,1.476957146,1.488584438,1.864087023,1.766045754,1.641663201,1.714496363,2.350063774,4.244598061,4.987636267,3.499444842,3.395499634,5.846702012,5.229369071,6.611688348,10.22979927,5.150647559,3.921032729,4.578706273,3.746204351,3.103088556,2.765596866,5.40513582,5.982903662,6.55665278,6.705114322,7.480776497,7.125451032,7.202841518,7.012049207,7.974774619,7.868987855,6.608570917,
India,Merchandise imports from low- and middle-income economies in South Asia (% of total merchandise imports),TM.VAL.MRCH.R5.ZS,2.249488753,1.739484028,2.604707511,1.935378055,1.87892225,2.592953226,1.057949262,1.421836414,1.447668576,1.876529908,1.426926733,1.054410049,1.468667239,1.76213361,1.048607189,1.227169088,1.601384048,1.147679502,0.982800669,0.909650233,1.042921854,1.326912979,0.872898087,0.728218485,0.793079173,0.762541641,0.613451687,0.615497408,0.608431948,0.346629579,0.464181122,0.54042589,0.858647793,0.476234095,0.517313087,0.599625419,0.55955398,0.598768719,1.023431603,0.913247252,0.943051791,1.162234909,0.926826103,0.898929342,0.891106173,0.937434303,0.840575843,0.835487979,0.622901879,0.593460073,0.589867717,0.547846795,0.553774912,0.52735894,0.583225108,0.773178971,0.763967885,
India,Merchandise imports from low- and middle-income economies in Middle East & North Africa (% of total merchandise imports),TM.VAL.MRCH.R4.ZS,5.370320974,4.527176614,5.880062305,5.75282926,4.197512307,4.114825634,4.389208185,3.838958318,4.506516503,4.593741435,8.412514152,9.174197673,9.957680195,9.451753165,18.67567429,13.46610319,14.50641319,16.00672969,15.79578719,15.15834521,19.04226337,16.83061206,12.51875473,11.78021871,9.124864652,9.440939782,5.560472723,4.817723161,4.494503725,3.588185056,5.982579584,6.628636165,7.779352882,5.73485975,5.01074888,3.837846255,4.177208697,4.379967198,4.158357956,5.73313431,2.940327954,1.87532257,1.809704361,1.350281879,1.212254505,1.328217694,8.350809632,10.02957759,10.01341962,8.697651703,7.64970077,8.169898213,8.409142089,7.84828383,7.018187459,5.52652442,6.107694424,
India,Merchandise imports from low- and middle-income economies in Latin America & the Caribbean (% of total merchandise imports),TM.VAL.MRCH.R3.ZS,0.235618387,0.26657028,0.164416753,0.057405281,0.285596182,0.274081287,0.373393857,0.912968645,0.405985292,0.963546835,0.784403648,0.471163546,0.341332045,2.607017609,1.576070428,1.091301057,0.857183769,2.705684068,1.601766867,1.108067943,2.315505113,3.251713454,2.502682141,1.800909896,3.148560984,2.602326201,2.017636472,2.539883316,2.26888363,2.051650542,1.867294348,1.66833697,1.537913452,1.204885256,2.807473886,1.294302442,1.101671071,1.211475086,1.491328404,1.677487709,1.395849955,1.716584396,1.487367699,1.322207201,1.447210553,1.448106867,2.035763157,1.813301414,2.639410552,2.890799334,3.395570253,3.177610427,5.136294195,6.365028415,6.480219206,4.950859911,4.648817126,
India,Merchandise imports from low- and middle-income economies in Europe & Central Asia (% of total merchandise imports),TM.VAL.MRCH.R2.ZS,0.391215435,0.483441016,0.42834891,0.520747909,0.338206005,0.407515597,0.46491196,0.333009055,0.634102765,1.084521818,1.74603857,1.681659492,1.274962422,1.043425553,1.32310135,1.210871379,0.629451422,0.92825915,0.920904049,0.888737572,0.904207446,1.688367208,1.093219622,0.737199158,0.993721628,1.145421602,1.374523742,1.046478477,1.223788318,0.669688928,0.672386182,0.51108623,1.620791755,0.581553747,2.654253208,3.659196794,3.238747289,2.525098465,2.1120877,1.948988006,1.613419897,1.735946702,1.598484224,1.773513656,1.985850453,2.274586414,2.456359296,2.422079171,2.796995419,2.982841886,1.943453194,1.840035377,2.296659931,1.943931269,2.16427606,2.168245096,2.608391828,
India,Merchandise imports from low- and middle-income economies in East Asia & Pacific (% of total merchandise imports),TM.VAL.MRCH.R1.ZS,2.822975016,1.436768626,1.557632399,1.070198458,1.367855398,2.506401241,5.403228759,2.514405448,2.699921834,3.379738581,1.041412882,1.461644797,0.912604681,1.113626383,0.651479306,0.892017188,0.875033591,3.697428039,4.504130065,3.840352545,3.712027268,3.075625655,3.009076675,3.439027299,4.755854917,4.049526342,4.848870884,4.961664872,5.091817167,4.586743322,4.125304004,3.40189369,4.431957043,3.810845255,6.598713918,6.980609531,7.188525872,8.347734551,9.477949081,9.787841463,8.758757002,9.466540854,10.49050996,11.76739345,12.18091961,12.41947008,15.66513521,16.62916624,16.27884694,18.00248119,18.20237132,18.72652713,17.67049149,18.42583488,20.67324624,24.34491241,25.80649703,
India,Merchandise imports from low- and middle-income economies outside region (% of total merchandise imports),TM.VAL.MRCH.OR.ZS,11.96319018,9.555866805,11.06351679,9.471871412,8.928638533,9.066320459,12.12065747,9.631070867,11.96340549,15.70217471,18.82903153,18.66845446,18.8009985,19.09679055,24.92999412,18.14338434,20.23895224,27.72410667,24.87822096,22.89057425,27.16987522,26.12230198,20.04892125,19.40908601,19.66453285,18.71517107,15.29008826,15.22983685,14.84503859,12.53793105,14.36206048,14.56001683,19.61461319,16.31978028,20.57063473,19.16745466,21.55285494,21.69364437,23.85141149,29.37725076,19.85900237,18.71542725,19.96477252,19.95960054,19.92932368,20.23597792,33.91320311,36.87702808,38.28532532,39.27888843,38.67187204,39.03952218,40.71542923,41.5951276,44.31070359,44.85952969,45.77997132,
India,Merchandise imports from high-income economies (% of total merchandise imports),TM.VAL.MRCH.HI.ZS,80.80376989,82.21659965,76.20716511,79.14138101,78.66295893,77.4496015,75.67082769,79.14016314,74.37347456,63.96504957,66.96858086,70.89205581,67.8995777,68.68857427,58.39991627,69.91007215,70.0303447,60.30502731,61.56808181,61.81317821,59.04059016,58.25564484,66.1358972,63.67873996,63.12231292,64.97319145,72.71736338,69.55615586,70.22801214,71.63922641,69.8874695,63.77803593,71.11349581,74.06624447,74.09333015,69.85048945,73.10886245,77.48715199,74.95936811,69.57484786,55.79634376,52.22379242,50.44360638,52.0588573,51.29247617,49.51120885,58.60538254,61.58075231,60.47647572,59.65441719,60.19063811,59.65756342,58.45688697,57.43660471,53.59157068,52.13898433,51.1853896,
India,Merchandise imports (current US$),TM.VAL.MRCH.CD.WT,2303280000,2285640000,2362080000,2477160000,2875530000,2838360000,3439830000,2772800000,2569730000,2211870000,2124400000,2423700000,2223240000,3210950000,5135880000,6380660000,5664950000,6646630000,7864860000,9827440000,14864000000,15418000000,14786000000,14061000000,15323000000,15928000000,15421000000,16675000000,19149000000,20535000000,23580000000,20448000000,23579000000,22788000000,26843000000,34707000000,37942000000,41432000000,42980000000,46979000000,51523000000,50392000000,56517000000,72557700000,99775400000,1.43E+11,1.78E+11,2.29E+11,3.21E+11,2.57E+11,3.50E+11,4.64E+11,4.90E+11,4.65E+11,4.63E+11,3.93E+11,3.60E+11,
India,Merchandise imports from economies in the Arab World (% of total merchandise imports),TM.VAL.MRCH.AL.ZS,5.254734596,4.843446437,4.543094496,4.366901755,3.878095524,3.299794439,3.441080646,4.272992591,5.044905642,4.009186538,5.889715331,6.946652663,8.721190323,8.726550758,15.41294586,13.69959611,13.01350113,13.99037372,15.7620254,19.4924184,19.25384332,16.93796926,23.40901066,17.48871892,18.01386088,17.26886214,14.1083877,14.67195903,14.74822086,15.37946552,17.00865945,16.16755243,22.06083715,22.91432763,22.68521217,20.32880664,22.4676607,21.01320592,17.30957264,18.86415591,8.450508067,4.806397762,4.526941753,4.950124602,6.859181269,6.343616093,19.31404626,23.41816582,26.16641196,22.11155863,24.87522818,26.25543365,27.78526438,28.20851803,25.06594982,19.11362727,18.12259362,
India,Ores and metals imports (% of merchandise imports),TM.VAL.MMTL.ZS.UN,,,6.069707518,6.321639262,6.325997178,7.062249131,5.118442191,8.008187483,6.839310548,6.782552938,9.871067964,8.934272547,8.348941392,7.106342014,6.906893498,5.378180308,5.280853268,5.880466288,5.97735561,6.735591764,5.929919132,5.954250092,,5.645865605,5.943272118,7.016469434,7.062316195,7.058389943,7.690427471,8.931111978,8.071878669,6.338791565,6.649453888,5.280420665,7.562416941,6.952650475,6.791601129,6.447961491,6.246565148,5.462798853,4.950706886,5.78186667,4.760132603,4.306471012,4.763252972,5.226260911,6.378649518,6.724358391,5.846771677,5.564412842,5.345037208,6.216143023,5.588463646,6.252468294,6.32012264,7.044234608,5.534774049,
India,Manufactures imports (% of merchandise imports),TM.VAL.MANF.ZS.UN,,,58.38579676,60.08297971,61.05399857,57.60731482,46.77072491,47.51647296,54.30206605,49.87293288,49.42326486,56.98683677,60.80899757,53.72078858,43.37124625,55.64089926,38.36849249,43.19276109,48.45194147,47.31704843,38.69334956,39.32712036,,49.07265622,48.92640957,54.39202962,66.78496812,53.33251242,56.8649531,58.9930326,51.20368308,49.90493495,49.84423929,53.56825311,51.31129116,53.77260781,49.93673595,54.6978953,53.85372696,50.655302,46.74999108,49.11838052,52.1422203,53.16877293,52.49382637,52.1854573,50.18929326,50.41075581,47.03992158,52.36002692,50.55232146,46.91266028,43.21611384,42.36078288,43.52731666,52.69980307,55.81947206,
India,Insurance and financial services (% of commercial service imports),TM.VAL.INSF.ZS.WT,,,,,,,,,,,,,,,,5.821275494,4.966630344,5.159377955,5.72626308,5.514254702,5.381170929,5.036812114,4.806988851,4.478053181,4.800470625,4.827809816,4.799751009,4.561837933,5.161711314,5.78351979,5.786380446,6.031375988,6.090232516,6.903120459,6.122330642,5.553274358,5.339142704,5.298068843,4.426531926,3.603295521,11.06104013,13.09006029,11.19854298,6.694596608,7.233016227,6.850331979,7.961887621,9.211762255,8.462966802,9.647256999,10.49816008,12.68699348,8.56367211,9.059490526,6.577624658,5.207571505,6.638797341,
India,ICT goods imports (% total goods imports),TM.VAL.ICTG.ZS.UN,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5.450758254,5.936395516,7.039299194,8.41673495,8.307327436,7.636875634,7.649593873,7.378689099,4.08829509,7.788600699,6.30845334,5.973562352,5.311031088,5.775121902,6.311804078,8.563985275,,
India,Fuel imports (% of merchandise imports),TM.VAL.FUEL.ZS.UN,,,8.473512602,9.147487238,6.9365625,5.035746656,3.851331806,3.710270701,4.322261255,4.066053533,7.714515046,10.1846181,11.94256076,13.87299196,27.98270946,4.394248875,25.71196344,25.53925583,26.0979168,33.17286864,44.63224686,43.63319865,,30.67655979,31.82366041,26.49115079,15.05738132,19.12837318,17.00303766,19.51949604,27.29540735,29.93304798,29.80841431,27.28255605,23.91655021,23.82163918,29.5320629,24.89919023,20.35800974,30.83859336,38.60276591,33.41339821,32.44465905,32.19817939,34.34939341,35.70433251,37.23352319,36.34793898,39.16367572,33.98157392,35.55495383,38.49467135,42.55378735,43.00807446,41.31986448,29.43289386,26.78743589,
India,Food imports (% of merchandise imports),TM.VAL.FOOD.ZS.UN,,,17.08001257,15.19791207,16.86303837,22.00813199,34.14901954,32.08561913,25.04454366,23.30304345,20.92414117,14.58376817,9.59593929,20.07248975,19.68763028,31.84554112,27.48079027,16.43469,13.84690967,8.918821306,8.98622238,8.540796165,,11.65884893,10.17999063,8.414072803,7.041373242,8.439771803,8.049490172,3.50929601,3.238412109,2.699533197,3.815987402,3.126318834,6.032387597,4.30779806,4.711903774,5.621810704,8.934854777,7.22927048,4.662568059,5.81003209,5.893395638,5.91148046,4.731834472,3.670243104,3.042741665,3.420520282,2.492371879,4.21172291,3.951091965,3.741041478,4.048245884,3.89521493,4.458509339,5.758037572,6.505293221,
India,Agricultural raw materials imports (% of merchandise imports),TM.VAL.AGRI.ZS.UN,,,9.242249308,8.603457071,8.383790138,7.394065716,7.546464871,7.324467768,7.117123898,8.875219597,9.207277055,8.625123349,8.665130818,4.890866767,1.942384026,2.542802904,3.003358344,8.798452376,5.441364065,3.493392765,1.741334868,2.521702284,,2.903893688,3.076247866,3.422505143,3.618060895,4.023251744,4.525851677,3.917145797,3.990510395,3.119578898,3.724381989,3.415865304,4.413485798,4.022419934,3.184360855,3.591948884,3.288471402,3.442591551,3.491979322,4.026226954,3.317816503,3.291205219,2.836810025,2.149814351,1.793607656,1.870574638,1.565038738,1.635343283,1.776209565,1.771862,1.827499091,1.788991089,1.896625912,2.005692719,2.166929344,
India,"Tariff rate, most favored nation, weighted mean, primary products (%)",TM.TAX.TCOM.WM.FN.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27.13,,9.14,,,,,16.2,,23.31,15.84,23.25,19.75,19.83,18.74,15.28,8.31,13.02,6,6.04,8.75,7.96,4.92,4.99,,7.44,7.33,
India,"Tariff rate, applied, weighted mean, primary products (%)",TM.TAX.TCOM.WM.AR.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27.13,,9.14,,,,,16.19,,23.29,15.84,23.11,19.75,19.83,18.72,15.03,8.31,13.02,5.87,5.81,6.55,7.96,4.92,4.99,,7.18,5.91,
India,"Share of tariff lines with specific rates, primary products (%)",TM.TAX.TCOM.SR.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.071942,,1.730988,,,,,0,,0.2576582,0.2275994,0.2361715,0.1860974,0.06494,0.0602546,0.073599,0,0.0664982,0.1962003,0.0664739,0.2141576,0.4811722,0.3819283,0.3814545,,0.3622498,0.0678755,
India,"Tariff rate, most favored nation, simple mean, primary products (%)",TM.TAX.TCOM.SM.FN.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,74.75,,45.42,,,,,26.01,,28.78,34.09,34.62,30.86,30.43,31.15,28.35,24.82,27.84,22.93,22.77,22.48,23.29,24.77,24.74,,24.33,24.31,
India,"Tariff rate, applied, simple mean, primary products (%)",TM.TAX.TCOM.SM.AR.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,71.56,,51.52,,,,,27.81,,30.62,32.19,32.85,29.89,28.91,30.58,25.43,20.27,24.21,17.58,17.65,16.46,19,19.63,19.62,,18.4,16.65,
India,"Share of tariff lines with international peaks, primary products (%)",TM.TAX.TCOM.IP.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,89.58273,,79.11464,,,,,73.65854,,73.77612,87.35027,82.53574,76.92392,78.56979,78.7,51.98191,41.70282,51.08392,45.00507,36.0787,31.94999,36.3642,37.29856,37.24298,,33.65427,38.94114,
India,"Bound rate, simple mean, primary products (%)",TM.TAX.TCOM.BR.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,90.5,,90.51,90.92,90.92,89.53,89.53,89.53,89.53,89.53,89.27,89.27,89.27,89.27,93.32,93.32,93.32,,93.32,93.32,
India,"Binding coverage, primary products (%)",TM.TAX.TCOM.BC.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,79.69,,79.69,79.69,79.69,79.41,79.41,79.41,79.41,79.41,78.69,78.69,78.69,78.69,77.03,77.03,77.03,,77.03,77.03,
India,"Tariff rate, most favored nation, weighted mean, all products (%)",TM.TAX.MRCH.WM.FN.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,53.95,,27.48,,,,,20.14,,28.57,23.28,26.53,23.04,21.41,22.95,14.03,8.99,11.97,6.11,7.01,7.32,7.29,6.28,6.3,,7.49,7.54,
India,"Tariff rate, applied, weighted mean, all products (%)",TM.TAX.MRCH.WM.AR.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,53.95,,27.47,,,,,20.13,,28.55,23.28,26.4,23.04,21.41,22.94,13.87,8.99,11.97,5.96,6.81,6.07,7.29,6.28,6.3,,7.32,6.32,
India,"Share of tariff lines with specific rates, all products (%)",TM.TAX.MRCH.SR.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.012948,,1.979077,,,,,0,,0.5913799,3.379818,0.113701,3.303638,3.913158,0.0077196,0.0092764,0,0.0082598,0.0588966,0.0081939,4.080048,4.304851,4.31389,4.28835,,4.010149,3.457088,
India,"Tariff rate, most favored nation, simple mean, all products (%)",TM.TAX.MRCH.SM.FN.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,84.01,,55.84,,,,,30.08,,32.96,33.2,32.32,29,26.46,29.12,18.31,16.57,16.48,12.16,12.37,11.92,12.77,13.3,13.28,,13.16,13.38,
India,"Tariff rate, applied, simple mean, all products (%)",TM.TAX.MRCH.SM.AR.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,81.56,,56.41,,,,,28.9,,32.47,32.32,31.03,28.18,25.37,28.39,16.05,13.71,14.09,9.44,9.74,8.31,9.91,10.12,10.1,,9.75,8.55,
India,"Share of tariff lines with international peaks, all products (%)",TM.TAX.MRCH.IP.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,97.63212,,94.37146,,,,,93.78449,,93.57119,86.64384,92.13514,88.46409,88.42723,92.55346,12.13794,11.39509,12.32649,7.11961,5.960268,5.232859,6.295092,6.527793,6.557241,,5.802677,6.151065,
India,"Bound rate, simple mean, all products (%)",TM.TAX.MRCH.BR.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,49.89,,49.84,49.62,49.62,49.52,49.52,49.52,49.52,49.52,49.6,49.6,49.6,49.6,52.09,52.09,52.09,,52.09,52.09,
India,"Binding coverage, all products (%)",TM.TAX.MRCH.BC.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,73.82,,73.81,74.72,74.72,74.24,74.24,74.24,74.24,74.24,74.4,74.4,74.4,74.4,74.34,74.34,74.34,,74.34,74.34,
India,"Tariff rate, most favored nation, weighted mean, manufactured products (%)",TM.TAX.MANF.WM.FN.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,76.28,,42.92,,,,,20.53,,31.5,29.13,28.08,24.84,22.24,25.41,12.75,9.08,10.96,5.65,7.3,5.33,5.86,7.26,7.24,,7.06,7.39,
India,"Tariff rate, applied, weighted mean, manufactured products (%)",TM.TAX.MANF.WM.AR.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,76.28,,42.92,,,,,20.52,,31.48,29.13,27.93,24.84,22.24,25.4,12.63,9.08,10.96,5.45,7.1,4.68,5.86,7.26,7.24,,7,6.22,
India,"Secondary education, pupils (% female)",SE.SEC.ENRL.FE.ZS,,,,,,,,,,,,27.92712975,28.27444077,28.73563957,,29.87158012,30.05290031,30.35675049,30.67798996,,31.09420967,31.73040962,31.55264091,33.91154099,32.34812164,,33.30221176,33.50925064,34.02342987,34.58568954,,,,36.66117859,37.25653839,37.23123169,37.42464828,38.14220047,,39.33039093,39.57881165,39.78754044,40.65430069,42.56015015,42.58345032,43.01821136,43.30393982,43.97257996,44.57865906,45.49483109,45.62131882,45.98162079,46.1481514,47.57302094,47.64561844,47.5998497,,
India,"Secondary education, pupils",SE.SEC.ENRL,,,,,,,,,,,,21143698,21964372,22823568,,24494950,25196116,26265096,27178592,,30592436,32748396,35016992,37922992,40266884,,44484544,44873656,45879040,47021876,,,,62245636,64115976,65206356,66633720,68872392,,67089892,71030512,72392728,76215688,81050128,84569080,89461792,91529432,96049056,101783936,101110384,107686864,113727864,119148200,119400528,129438992,129542056,,
India,"Secondary education, duration (years)",SE.SEC.DURS,,,,,,,,,,,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,,
India,"Educational attainment, at least completed upper secondary, population 25+, total (%) (cumulative)",SE.SEC.CUAT.UP.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.8885498,,,,,,
India,"Educational attainment, at least completed upper secondary, population 25+, male (%) (cumulative)",SE.SEC.CUAT.UP.MA.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34.15032959,,,,,,
India,"Educational attainment, at least completed upper secondary, population 25+, female (%) (cumulative)",SE.SEC.CUAT.UP.FE.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.4339695,,,,,,
India,"Educational attainment, at least completed post-secondary, population 25+, total (%) (cumulative)",SE.SEC.CUAT.PO.ZS,,,,,,,,,,,,1.106870055,,,,,,,,,,2.497040033,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.01237965,,,,,,
India,"Educational attainment, at least completed post-secondary, population 25+, male (%) (cumulative)",SE.SEC.CUAT.PO.MA.ZS,,,,,,,,,,,,1.812759995,,,,,,,,,,3.834579945,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.78052044,,,,,,
India,"Educational attainment, at least completed post-secondary, population 25+, female (%) (cumulative)",SE.SEC.CUAT.PO.FE.ZS,,,,,,,,,,,,0.340530008,,,,,,,,,,1.063699961,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.170740128,,,,,,
India,"Educational attainment, at least completed lower secondary, population 25+, total (%) (cumulative)",SE.SEC.CUAT.LO.ZS,,,,,,,,,,,,5.043640137,,,,,,,,,,16.23134995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,37.56583023,,,,,,
India,"Educational attainment, at least completed lower secondary, population 25+, male (%) (cumulative)",SE.SEC.CUAT.LO.MA.ZS,,,,,,,,,,,,8.166339874,,,,,,,,,,24.25045013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,47.13063812,,,,,,
India,"Educational attainment, at least completed lower secondary, population 25+, female (%) (cumulative)",SE.SEC.CUAT.LO.FE.ZS,,,,,,,,,,,,1.653560042,,,,,,,,,,7.637909889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27.74707985,,,,,,
India,"Lower secondary completion rate, total (% of relevant age group)",SE.SEC.CMPT.LO.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,42.41989136,43.60174942,43.96065903,,,,,,,,,,,,,53.46231842,56.66387939,,,62.76539993,,68.30474854,,,76.45265961,,80.92217255,85.63790894,85.52655029,,
India,"Lower secondary completion rate, male (% of relevant age group)",SE.SEC.CMPT.LO.MA.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,54.18421173,55.17718887,55.81013107,,,,,,,,,,,,,60.50503922,61.86582947,,,66.94821167,,71.07704163,,,77.41197968,,78.68251038,83.36659241,83.18653107,,
India,"Lower secondary completion rate, female (% of relevant age group)",SE.SEC.CMPT.LO.FE.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,29.73645973,31.12487984,31.19548035,,,,,,,,,,,,,45.84666824,51.01860046,,,58.16476822,,65.2368927,,,75.38789368,,83.41506195,88.17005157,88.13825989,,
India,Lower secondary school starting age (years),SE.SEC.AGES,,,,,,,,,,,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,,
India,Children out of school (% of primary school age),SE.PRM.UNER.ZS,,,,,,,,,,,,38.68470001,,,,,,,,,,,,,,,,,,,22.54796982,,,,,,,,,,15.86345959,15.93690968,16.1300106,11.29693985,,,,3.033440113,3.012959957,4.356389999,3.807189941,4.237010002,3.015490055,2.261130095,,,,
India,"Children out of school, male (% of male primary school age)",SE.PRM.UNER.MA.ZS,,,,,,,,,,,,26.46117973,,,,,,,,,,,,,,,,,,,11.30842972,,,,,,,,,,8.988829613,9.821900368,10.58129978,10.03246975,,,,2.345769882,3.596950054,5.46502018,4.694600105,5.502739906,3.654659986,2.901230097,,,,
India,"Children out of school, primary, male",SE.PRM.UNER.MA,,,,,,,,,,,,9926844,,,,,,,,,,,,,,,,,,,6207504,,,,,,,,,,5637621,6197319,6724853,6422672,,,,1542717,2380111,3636203,3137944,3690124,2458114,1954726,,,,
India,"Children out of school, female (% of female primary school age)",SE.PRM.UNER.FE.ZS,,,,,,,,,,,,51.85507965,,,,,,,,,,,,,,,,,,,34.62665939,,,,,,,,,,23.37561035,22.65105057,22.24451065,12.69414997,,,,3.797329903,2.36345005,3.121720076,2.817450047,2.823349953,2.301069975,1.545549989,,,,
India,"Children out of school, primary, female",SE.PRM.UNER.FE,,,,,,,,,,,,18054748,,,,,,,,,,,,,,,,,,,17687004,,,,,,,,,,13416546,13016778,12829139,7354612,,,,2248144,1406158,1865020,1688497,1695210,1384677,931474,,,,
India,"Children out of school, primary",SE.PRM.UNER,,,,,,,,,,,,27981592,,,,,,,,,,,,,,,,,,,23894508,,,,,,,,,,19054168,19214096,19553992,13777284,,,,3790861,3786269,5501223,4826441,5385334,3842791,2886200,,,,
India,"Adjusted net enrollment rate, primary, male (% of primary school age children)",SE.PRM.TENR.MA,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,91.01116943,90.17810059,89.41870117,89.9675293,,,,97.65422821,96.40305328,94.53498077,95.30539703,94.49726105,96.34533691,97.09877014,,,,
India,"Adjusted net enrollment rate, primary, female (% of primary school age children)",SE.PRM.TENR.FE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,76.62438965,77.34895325,77.75549316,87.30584717,,,,96.20266724,97.6365509,96.87828064,97.18254852,97.176651,97.69892883,98.45445251,,,,
India,"Adjusted net enrollment rate, primary (% of primary school age children)",SE.PRM.TENR,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,84.13654327,84.06308746,83.86998749,88.70305634,,,,96.96656036,96.98703766,95.64360809,96.19281006,95.76299286,96.98451233,97.73886871,,,,
India,"Primary education, teachers (% female)",SE.PRM.TCHR.FE.ZS,,,,,,,,,,,,24.33205986,24.36150932,24.70902061,24.50206947,24.46006966,24.82925034,,,,,,,,,,,,,,,,,,,,,,,35.59000015,35.5900116,36.00001144,35.99998856,43.99996948,,,,,,,,,,48.18408966,49.48841858,49.49015045,,
India,"Primary education, teachers",SE.PRM.TCHR,,,,,,,,,,,,1376176,1413221,1467031,1484589,1546696,1559137,,,1599182,,,,,,,,,,,,,,,,,,,,2774647,2840314,2835044,2832912,3038204,,,,,,,,3918312,,4367637,4404451,4398590,,
India,Trained teachers in primary education (% of total teachers),SE.PRM.TCAQ.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,77.24506378,,,
India,"Trained teachers in primary education, male (% of male teachers)",SE.PRM.TCAQ.MA.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,76.54163361,,,
India,"Trained teachers in primary education, female (% of female teachers)",SE.PRM.TCAQ.FE.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,77.96304321,,,
India,"Repeaters, primary, total (% of total enrollment)",SE.PRM.REPT.ZS,,,,,,,,,,,,20.83242989,,,17.44360924,,,,,,,,,,,,,3.924109936,4.071410179,,,,,,,3.685539961,,,,4.012159824,4.169320107,3.685960054,3.649310112,3.592449903,,,,3.5136199,3.537810087,,,5.017570019,2.634809971,2.140850067,1.307250023,,,
India,"Repeaters, primary, male (% of male enrollment)",SE.PRM.REPT.MA.ZS,,,,,,,,,,,,20.51379013,,,17.41114998,,,,,,,,,,,,,3.933310032,4.1521101,,,,,,,3.49887991,,,,3.963969946,4.238399982,3.66802001,3.637300014,3.577419996,,,,3.539170027,3.560290098,,,5.075349808,2.670639992,2.158790112,1.321660042,,,
India,"Repeaters, primary, female (% of female enrollment)",SE.PRM.REPT.FE.ZS,,,,,,,,,,,,21.36692047,,,17.49695015,,,,,,,,,,,,,3.910690069,3.954560041,,,,,,,3.933900118,,,,4.07475996,4.079880238,3.709009886,3.664479971,3.609519958,,,,3.484719992,3.513040066,,,4.954870224,2.596090078,2.121740103,1.291810036,,,
India,"Persistence to last grade of primary, total (% of cohort)",SE.PRM.PRSL.ZS,,,,,,,,,,,,,,38.28499985,,,,,,,,,,,,,52.73543167,61.95471954,,,,,,,58.62834167,,,,,62.04666901,59.00634003,61.37311172,,,,,,,,,,,,81.8377533,,,,
India,"Persistence to last grade of primary, male (% of cohort)",SE.PRM.PRSL.MA.ZS,,,,,,,,,,,,,,42.01977158,,,,,,,,,,,,,54.83543015,65.21060181,,,,,,,61.49900818,,,,,63.32656097,59.23255157,59.70518112,,,,,,,,,,,,82.18843079,,,,
India,"Persistence to last grade of primary, female (% of cohort)",SE.PRM.PRSL.FE.ZS,,,,,,,,,,,,,,32.60126877,,,,,,,,,,,,,49.74515152,57.47808075,,,,,,,54.97079849,,,,,60.40161133,58.71371841,63.53697968,,,,,,,,,,,,81.47132874,,,,
India,"Persistence to grade 5, total (% of cohort)",SE.PRM.PRS5.ZS,,,,,,,,,,,,,,38.28499985,,,,,,,,,,,,,52.73543167,61.95471954,,,,,,,58.62834167,,,,,62.04666901,59.00634003,61.37311172,,,,,,,,,,,,81.8377533,,,,
India,"Persistence to grade 5, male (% of cohort)",SE.PRM.PRS5.MA.ZS,,,,,,,,,,,,,,42.01977158,,,,,,,,,,,,,54.83543015,65.21060181,,,,,,,61.49900818,,,,,63.32656097,59.23255157,59.70518112,,,,,,,,,,,,82.18843079,,,,
India,"Persistence to grade 5, female (% of cohort)",SE.PRM.PRS5.FE.ZS,,,,,,,,,,,,,,32.60126877,,,,,,,,,,,,,49.74515152,57.47808075,,,,,,,54.97079849,,,,,60.40161133,58.71371841,63.53697968,,,,,,,,,,,,81.47132874,,,,
India,"School enrollment, primary, private (% of total primary)",SE.PRM.PRIV.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.53000069,16.53000069,15.35319042,17.0443306,,,,,,,,,,,34.96453857,34.7806282,,
India,"Over-age students, primary (% of enrollment)",SE.PRM.OENR.ZS,,,,,,,,,,,,11.81527996,,,,,,,,,,,,,,,,,,,6.740260124,,,,,,,,,,6.740260124,6.740029812,6.66286993,6.048049927,,,,5.891109943,5.838870049,5.89109993,5.741000175,5.909220219,5.909210205,5.909220219,,,,
India,"Over-age students, primary, male (% of male enrollment)",SE.PRM.OENR.MA.ZS,,,,,,,,,,,,12.49833012,,,,,,,,,,,,,,,,,,,6.78565979,,,,,,,,,,6.791399956,6.791399956,6.720829964,6.133180141,,,,5.849579811,5.796820164,5.847959995,5.721220016,5.879670143,5.051109791,1.868280053,,,,
India,"Over-age students, primary, female (% of female enrollment)",SE.PRM.OENR.FE.ZS,,,,,,,,,,,,10.66952991,,,,,,,,,,,,,,,,,,,6.674039841,,,,,,,,,,6.674039841,6.674039841,6.589670181,5.951369762,,,,5.938059807,5.885159969,5.938059807,5.762619972,5.941279888,6.836329937,9.958410263,,,,
India,Net intake rate in grade 1 (% of official school-age population),SE.PRM.NINT.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,57.46604919,59.24140167,,
India,"Net intake rate in grade 1, male (% of official school-age population)",SE.PRM.NINT.MA.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,56.2659111,57.91659164,,
India,"Net intake rate in grade 1, female (% of official school-age population)",SE.PRM.NINT.FE.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,58.80593109,60.71902847,,
India,"School enrollment, primary, male (% net)",SE.PRM.NENR.MA,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,86.1918335,85.54479218,84.416008,84.88414764,,,,91.93531036,90.45709229,89.63404846,90.08191681,89.16264343,90.97673798,91.66670227,,,,
India,"School enrollment, primary, female (% net)",SE.PRM.NENR.FE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,72.76206207,73.1289978,73.51483154,82.60458374,,,,90.57678986,91.6233902,92.00270844,92.07450867,91.81320953,92.23013306,92.91999817,,,,
India,"School enrollment, primary (% net)",SE.PRM.NENR,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,79.77449799,79.62680817,79.22982788,83.80120087,,,,91.29171753,91.00926971,90.75467682,91.02390289,90.41475677,91.56858826,92.258461,,,,
India,"Gross intake ratio in first grade of primary education, total (% of relevant age group)",SE.PRM.GINT.ZS,,,,,,,,,,,,99.5541687,,,106.9678116,,,,,,,,,,,,,107.7791367,108.8880997,,,,,,,118.6510162,,,121.7684708,121.9499512,122.4347,120.2334976,116.2454605,125.7477036,127.3873825,127.7793579,128.3256073,126.0820999,123.9773026,111.8317413,116.9041824,108.8713913,,105.0920181,100.2652588,101.7019806,,
India,"Gross intake ratio in first grade of primary education, male (% of relevant age group)",SE.PRM.GINT.MA.ZS,,,,,,,,,,,,117.9302902,,,124.4511414,,,,,,,,,,,,,119.8039627,121.0763702,,,,,,,128.4283905,,,130.0852661,130.7532043,131.067688,128.405777,124.3192215,125.7061996,128.4147644,130.1800995,130.8312988,128.6763458,124.8617783,111.1802216,115.8729782,107.683197,,103.4409637,98.64328766,100.1156006,,
India,"Gross intake ratio in first grade of primary education, female (% of relevant age group)",SE.PRM.GINT.FE.ZS,,,,,,,,,,,,79.83804321,,,88.24166107,,,,,,,,,,,,,94.89549255,95.82241058,,,,,,,108.0947495,,,112.7034912,112.3091125,112.9338989,111.2009125,107.3017502,125.7937164,126.247467,125.1141586,125.5400009,123.1950607,122.9917068,112.5587616,118.0563278,110.2001801,,106.9371338,102.0761032,103.4713593,,
India,"School enrollment, primary, male (% gross)",SE.PRM.ENRR.MA,,,,,,,,,,,,95.26698303,95.9872818,99.22664642,98.40866852,99.27783966,98.75121307,101.704277,97.78302765,96.79000854,98.2088089,99.69065094,100.5005493,102.3481979,104.0828934,103.017807,104.3177414,101.1056137,102.3307037,106.664772,105.1715622,103.5149765,103.242157,103.4551926,104.2128677,103.8210373,103.1228638,102.2599335,100.1749573,100.7290878,102.2086792,101.4414063,101.1539536,104.3035583,,,,111.150177,110.3414383,108.3737411,108.1333618,106.8947525,107.9971085,104.8587723,102.405159,102.8125534,,
India,"School enrollment, primary, female (% gross)",SE.PRM.ENRR.FE,,,,,,,,,,,,61.19380951,61.8995285,64.83146667,64.38381958,65.17005157,65.33889771,67.52465057,63.83374023,64.43572235,65.76387024,67.4593811,67.97888184,70.03204346,71.52812195,72.33677673,75.43501282,74.41863251,75.84127808,77.35540009,77.50047302,78.65846252,79.53677368,82.82824707,84.3392334,84.1710968,84.62962341,84.76772308,83.59867096,84.36470795,86.25984192,86.69484711,88.26805878,101.4803467,,,,109.1897507,111.4441299,110.9086838,110.3550568,110.0276566,111.7256775,116.9858017,114.0862885,115.0651169,,
India,"School enrollment, primary (% gross)",SE.PRM.ENRR,,,,,,,,,,,,78.8656311,79.57206726,82.65651703,82.01222229,82.84013367,82.65158844,85.23052979,81.41600037,81.19017029,82.5671463,84.15773773,84.82649231,86.76937866,88.38440704,88.21999359,90.38838959,88.23335266,89.55368805,92.53076935,91.83390808,91.54216766,91.8289032,93.52689362,94.64933014,94.36852264,94.23313904,93.85736847,92.22186279,92.89160156,94.58763123,94.41246796,95.02355957,102.9623489,,,,110.2214432,110.8635025,109.5730286,109.1836472,108.3747177,109.7577515,110.5846481,107.9214325,108.6006165,,
India,"Pupil-teacher ratio, primary",SE.PRM.ENRL.TC.ZS,,,,,,,,,,,,41.45214081,41.62026978,42.53532028,42.52024841,41.93172836,42.11304855,,,42.89831924,,,,,,,,,,,,,,,,,,,,40,39.99998856,40.14999008,40.66296005,41.32987976,,,,,,,,35.15462875,,32.31832886,31.28854942,31.4914608,,
India,"Primary education, pupils (% female)",SE.PRM.ENRL.FE.ZS,,,,,,,,,,,,37.34965897,37.46060181,37.7865181,37.83134842,37.91358948,38.0916481,38.18497086,37.79893112,38.26586151,38.39865112,38.62989044,38.62345123,38.90856171,39.02511978,39.54761124,40.2487793,40.68218994,40.84877014,40.31467056,40.67750168,41.38851929,41.70143127,42.62675095,42.87984848,42.90639877,43.17113876,43.3839798,43.49250031,43.49726105,43.57727814,43.7686615,44.19226074,46.82275009,,,,46.93090057,47.59236908,47.88721848,47.78125,47.96006012,48.06707001,49.94894028,49.92134857,50.05157852,,
India,"Primary education, pupils",SE.PRM.ENRL,,,,,,,,,,,,57045440,58818644,62400628,63125100,64855640,65660024,69060728,67360992,68602224,71183224,73873184,76105904,79506944,82590192,83932704,87440512,87129224,90459728,95739976,97318112,99118320,101577088,105370216,108200536,109043664,109734288,110390408,109412904,110985880,113612544,113826976,115194576,125568600,,,,137742640,139317984,138368128,138413840,137746816,139869904,141154752,137808912,138518032,,
India,"Primary education, duration (years)",SE.PRM.DURS,,,,,,,,,,,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,,
India,"Educational attainment, at least completed primary, population 25+ years, total (%) (cumulative)",SE.PRM.CUAT.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,51.42446136,,,,,,
India,"Educational attainment, at least completed primary, population 25+ years, male (%) (cumulative)",SE.PRM.CUAT.MA.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,62.23197174,,,,,,
India,"Educational attainment, at least completed primary, population 25+ years, female (%) (cumulative)",SE.PRM.CUAT.FE.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,40.3300209,,,,,,
India,"Primary completion rate, total (% of relevant age group)",SE.PRM.CMPT.ZS,,,,,,,,,,,,39.66374969,,,41.61735916,,,,,,,,,,,,,63.17137909,64.55854034,,,,,,,71.86660767,,,,68.92706299,71.75483704,72.43009949,75.81871796,80.30370331,,,,,94.96790314,95.92668152,,92.88214111,,96.20903778,97.54572296,,,
India,"Primary completion rate, male (% of relevant age group)",SE.PRM.CMPT.MA.ZS,,,,,,,,,,,,50.82184982,,,53.11909103,,,,,,,,,,,,,75.22279358,76.47701263,,,,,,,81.21224213,,,,76.7410202,79.34993744,78.82785797,82.08866882,83.04038239,,,,,94.80893707,95.28988647,,92.5185318,,93.70839691,95.24944305,,,
India,"Primary completion rate, female (% of relevant age group)",SE.PRM.CMPT.FE.ZS,,,,,,,,,,,,27.59653091,,,29.20804024,,,,,,,,,,,,,50.21340179,51.74998093,,,,,,,61.78842926,,,,60.47912979,63.51913834,65.45852661,68.95529938,77.29547882,,,,,95.14434052,96.63423157,,93.28742218,,99.00335693,100.1131134,,,
India,Primary school starting age (years),SE.PRM.AGES,,,,,,,,,,,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,,
India,Trained teachers in preprimary education (% of total teachers),SE.PRE.TCAQ.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,"Trained teachers in preprimary education, male (% of male teachers)",SE.PRE.TCAQ.MA.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,"Trained teachers in preprimary education, female (% of female teachers)",SE.PRE.TCAQ.FE.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,"School enrollment, preprimary, male (% gross)",SE.PRE.ENRR.MA,,,,,,,,,,,,1.156769991,1.358780026,1.449100018,,1.625090003,1.744590044,2.014760017,2.024369955,,,2.526129961,2.245150089,2.72258997,2.569220066,2.678999901,3.089509964,3.10213995,3.358649969,3.292949915,3.049799919,3.392580032,3.244460106,3.275979996,4.24406004,4.507669926,4.589829922,4.980730057,,,,3.66704011,6.261340141,7.174359798,6.585390091,6.188330173,6.816860199,7.053520203,8.63158989,7.506999969,7.223090172,7.820759773,8.045559883,10.00333023,12.09971046,12.57878971,,
India,"School enrollment, preprimary, female (% gross)",SE.PRE.ENRR.FE,,,,,,,,,,,,1.088420033,1.188539982,1.31625998,,1.413900018,1.525320053,1.751739979,1.759739995,,,2.246510029,2.010809898,2.367039919,2.223370075,2.281810045,2.739599943,2.743210077,3.008369923,3.014110088,2.774359941,3.04824996,2.801609993,2.83555007,3.81994009,4.253530025,4.223239899,4.778779984,,,,3.319849968,5.999390125,7.342539787,6.632349968,6.248129845,6.906509876,6.862249851,8.368330002,7.582809925,7.179399967,7.550849915,7.705530167,9.16520977,11.32750034,11.79224014,,
India,"School enrollment, preprimary (% gross)",SE.PRE.ENRR,,,,,,,,,,,,1.12372005,1.276440024,1.384829998,,1.52294004,1.638589978,1.887590051,1.896420002,,,2.39102006,2.131860018,2.550630093,2.40192008,2.486900091,2.920429945,2.928740025,3.189500093,3.158380032,2.916980028,3.226690054,3.031169891,3.063930035,4.039999962,4.385550022,4.414080143,4.884109974,,,,3.502370119,6.13711977,7.254119873,6.607659817,6.216660023,6.859290123,6.963049889,8.507149696,7.542819977,7.202459812,7.693290234,7.884890079,9.607040405,11.7343502,12.20660019,,
India,"Pupil-teacher ratio, preprimary",SE.PRE.ENRL.TC.ZS,,,,,,,,,,,,42.90584946,46.50397873,47.99958038,,53.88055038,,,,,,,,,,62.05350876,,,,,,,,,,,,,,,,,8.636770248,9.173290253,8.021519661,6.641089916,7.130350113,,,,,,,,,20.10149956,,
India,"Preprimary education, duration (years)",SE.PRE.DURS,,,,,,,,,,,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,,
India,"School enrollment, tertiary (gross), gender parity index (GPI)",SE.ENR.TERT.FM.ZS,,,,,,,,,,,,0.289440006,,0.293969989,,,0.33265999,0.358619988,0.360150009,0.38014999,0.377319992,0.389169991,0.419099987,0.418170005,0.418790013,0.44957,0.462639987,0.459769994,0.497779995,0.504320025,0.520839989,0.535560012,,,,0.568639994,0.609679997,0.615260005,,,0.655539989,0.680719972,0.693880022,0.675369978,0.668600023,0.703859985,0.718739986,0.695749998,,0.703419983,0.726119995,0.783879995,,0.936029971,0.983009994,0.98992002,,
India,"Annual freshwater withdrawals, total (billion cubic meters)",ER.H2O.FWTL.K3,,,,,,,,,,,,,,,,,,380,,,,,438.3,,,,,497.4,,,,,500,,,,,,,,,,610.4,,,,,,,,,,761,,761,,,
India,"Annual freshwater withdrawals, industry (% of total freshwater withdrawal)",ER.H2O.FWIN.ZS,,,,,,,,,,,,,,,,,,4,,,,,2.875,,,,,2.211,,,,,3,,,,,,,,,,1.638,,,,,,,,,,2.234,,2.234,,,
India,"Annual freshwater withdrawals, domestic (% of total freshwater withdrawal)",ER.H2O.FWDM.ZS,,,,,,,,,,,,,,,,,,3,,,,,3.206,,,,,3.691,,,,,5,,,,,,,,,,6.881,,,,,,,,,,7.359,,7.359,,,
India,"Annual freshwater withdrawals, agriculture (% of total freshwater withdrawal)",ER.H2O.FWAG.ZS,,,,,,,,,,,,,,,,,,93,,,,,93.93,,,,,94.09,,,,,92,,,,,,,,,,91.48,,,,,,,,,,90.41,,90.41,,,
India,"Water productivity, total (constant 2010 US$ GDP per cubic meter of total freshwater withdrawal)",ER.GDP.FWTL.M3.KD,,,,,,,,,,,,,,,,,,0.668692928,,,,,0.679952701,,,,,0.765201669,,,,,0.99462233,,,,,,,,,,1.431010887,,,,,,,,,,2.448070042,,2.799872836,,,
India,Total fisheries production (metric tons),ER.FSH.PROD.MT,1161400,961000,973900,1045800,1321600,1331300,1367200,1400400,1525600,1605000,1758500,1853000,1639100,1960700,2256991,2267192,2177096,2314703,2309709,2343292,2445337,2448342,2369320,2508598.5,2874519.1,2839347.6,3007532.9,2994385,3200962,3718189,3879722,4132494,4324546,4566914,4867135,5016547,5301693,5485270,5381977,5686963,5668958,5937726,5973298,6074846,6230871,6698488,7060154,7005055,7984490,7893598,8505837,8013716,9109609,9222391,9884999,10100057,,
India,Capture fisheries production (metric tons),ER.FSH.CAPT.MT,1116557,911641,919532,985873,1255504,1258353,1286639,1311378,1427129,1495679,1636829,1716303,1485142,1787620,2064670,2053375,1938973,2049755,2014855,2015210,2080157,2041720,1916381,2003865.5,2302519.1,2206097.6,2321272.9,2206075,2307632,2713689,2862586,2907233,2929102,3150212,3347607,3357740,3542954,3620948,3473492,3552149,3726427,3817092,3783853,3757899,3426509,3725362,3877337,3890293,4128727,4094756,4715816,4336132,4895629,4667182,5000978,4862038,,
India,Aquaculture production (metric tons),ER.FSH.AQUA.MT,44843,49359,54368,59927,66096,72947,80561,89022,98471,109321,121671,136697,153958,173080,192321,213817,238123,264948,294854,328082,365180,406622,452939,504733,572000,633250,686260,788310,893330,1004500,1017136,1225261,1395444,1416702,1519528,1658807,1758739,1864322,1908485,2134814,1942531,2120634,2189445,2316947,2804362,2973126,3182817,3114762,3855763,3798842,3790021,3677584,4213980,4555209,4884021,5238019,,
India,Pump price for gasoline (US$ per liter),EP.PMP.SGAS.CD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.56,,,,0.48,,,0.56,,0.6,,0.66,,0.87,,1.01,,1.09,,1.15,,1.25,,1.1,,,
India,Pump price for diesel fuel (US$ per liter),EP.PMP.DESL.CD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.23,,,,0.19,,,0.21,,0.39,,0.41,,0.62,,0.75,,0.7,,0.82,,0.86,,0.91,,,
India,Population in urban agglomerations of more than 1 million (% of total population),EN.URB.MCTY.TL.ZS,7.125130079,7.216025839,7.316043901,7.416410603,7.518214296,7.620846045,7.725816575,7.832516585,7.940259644,8.04644184,8.151324508,8.258342625,8.377217213,8.495919004,8.617656046,8.743392341,8.874359457,9.009008401,9.148091669,9.290110411,9.435040783,9.566324919,9.671062129,9.780180099,9.895893857,10.01813751,10.14892543,10.28794611,10.43608572,10.59207005,10.75774937,10.91303463,11.0284422,11.14911125,11.27603575,11.40857448,11.5473305,11.69128687,11.8425691,12.00149751,12.16930127,12.32099034,12.43361559,12.55383538,12.68219276,12.81748881,12.96115851,13.11317421,13.27503602,13.44653012,13.6300432,13.82571245,14.03340402,14.25231983,14.48120517,14.68400096,14.88871394,
India,Population in urban agglomerations of more than 1 million,EN.URB.MCTY,32026078,33085115,34228297,35415435,36650132,37929131,39259659,40642128,42080781,43571891,45123981,46760785,48538561,50385806,52313503,54322847,56420669,58602251,60880759,63257830,65741809,68219188,70585989,73052964,75628894,78308442,81108328,84031197,87088021,90273039,93606779,96913736,99920014,103024234,106243288,109577395,113036035,116609517,120317428,124160198,128148938,132016683,135502427,139099992,142818710,146647283,150605774,154693656,158921683,163277199,167783200,172439267,177251134,182224775,187366419,192221499,197152085,
India,Population in the largest city (% of urban population),EN.URB.LCTY.UR.ZS,7.015759617,6.985743303,6.91424574,6.842003466,6.769186293,6.696748366,6.624888823,6.553177056,6.481242362,6.407415072,6.331344476,6.253826064,6.177310374,6.100714327,6.024903772,5.951411737,5.880525444,5.811304548,5.743843215,5.677165377,5.610857137,5.539172955,5.457482999,5.421629216,5.439798645,5.459699993,5.482093443,5.506862846,5.534092478,5.562929787,5.594608467,5.614304379,5.608144428,5.603491427,5.600668992,5.599502342,5.599741166,5.601112586,5.604445715,5.609809513,5.617615256,5.600520658,5.532904048,5.529305986,5.554493626,5.581894671,5.612008157,5.644515488,5.680027836,5.718621022,5.761151411,5.807343692,5.855923588,5.9066446,5.958707946,5.995944157,6.028985493,
India,Population in largest city,EN.URB.LCTY,5652240,5775520,5893245,6013370,6136115,6261017,6388638,6518862,6651924,6787325,6925675,7078956,7273302,7472427,7677289,7887768,8104319,8326195,8554464,8788991,9030285,9249912,9419173,9670233,10024594,10390912,10771149,11165300,11574447,11997400,12436423,12852422,13202723,13561569,13930684,14309845,14699869,15099407,15510378,15932535,16366787,16753128,17030562,17504993,18079156,18670494,19282029,19913595,20566759,21239462,21935142,22653608,23395607,24161909,24953311,25703168,26453827,
India,Population living in slums (% of urban population),EN.POP.SLUM.UR.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,54.9,,,,,48.2,,,,,41.5,,,,,34.8,,32.1,,29.4,,,,,24,,,
India,Population living in areas where elevation is below 5 meters (% of total population),EN.POP.EL5M.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2.731374086,,,,,,,,,,2.653426761,,,,,,,,,,2.664960354,,,,,,,
India,Urban population living in areas where elevation is below 5 meters (% of total population),EN.POP.EL5M.UR.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.127296167,,,,,,,,,,1.112924965,,,,,,,,,,1.13790464,,,,,,,
India,Rural population living in areas where elevation is below 5 meters (% of total population),EN.POP.EL5M.RU.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.604077919,,,,,,,,,,1.540501796,,,,,,,,,,1.527055714,,,,,,,
India,Population density (people per sq. km of land area),EN.POP.DNST,,154.2097757,157.3570936,160.6113198,163.9601018,167.3967574,170.9147195,174.5229128,178.2487217,182.129321,186.1900898,190.4435344,194.8787373,199.4688957,204.1747265,208.9680512,213.8348824,218.7835389,223.8344283,229.0185975,234.3555296,239.8494654,245.4831386,251.2281647,257.0455309,262.9050518,268.7959518,274.719322,280.6713738,286.6517222,292.6598973,298.6875629,304.7303085,310.7967594,316.9001137,323.0479031,329.2400476,335.4663906,341.7117783,347.9559712,354.1821787,360.3798799,366.5447254,372.673071,378.7634753,384.8118264,390.8185212,396.7729069,402.6472933,408.4065035,414.0269176,419.494223,424.8184112,430.030441,435.1754493,440.286016,445.3705797,
India,"Mammal species, threatened",EN.MAM.THRD.NO,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,92
India,"Plant species (higher), threatened",EN.HPT.THRD.NO,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,387
India,"Fish species, threatened",EN.FSH.THRD.NO,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,225
India,CO2 emissions from transport (% of total fuel combustion),EN.CO2.TRAN.ZS,,,,,,,,,,,,24.26385283,23.47003825,22.82614476,22.662012,22.01906692,20.33350569,20.5531591,21.61632013,21.0473475,20.9029845,19.26974872,15.47545463,15.06093845,13.81564308,13.99909529,13.1273755,12.87668136,12.66329721,12.89429112,12.18491356,11.74517172,11.55298897,11.05872888,10.79804337,11.06573593,11.31576105,10.98377659,11.17814499,10.8943963,10.67562104,10.48253463,10.44401214,10.43025182,10.50405049,10.6189444,10.39696885,11.20669207,12.03296989,11.71459351,11.99427948,12.37513741,12.23893766,12.04182546,11.47860789,,,
India,"CO2 emissions from other sectors, excluding residential buildings and commercial and public services (% of total fuel combustion)",EN.CO2.OTHX.ZS,,,,,,,,,,,,3.966631678,3.98958776,4.440780726,3.859769889,3.306774743,3.438469493,3.582001184,3.809772896,5.132324003,4.434775971,5.542829377,5.624776343,6.06337599,7.401535381,5.832734627,4.168697008,3.999095739,4.99207607,4.365846368,5.41467921,5.884820414,5.653947523,5.29847144,5.784557244,5.754013113,5.849627309,6.052729298,4.501486221,4.880754946,4.492161179,4.530390402,4.621830775,4.985008282,4.914078987,4.579558717,4.209538376,3.49072566,4.278058968,5.43993338,4.320499793,2.82344788,3.431503942,2.965786036,3.018314873,,,
India,CO2 emissions from manufacturing industries and construction (% of total fuel combustion),EN.CO2.MANF.ZS,,,,,,,,,,,,35.13618032,35.42286443,34.66468117,34.68875996,35.55934233,35.49638056,35.81155375,35.96181509,33.17537448,31.02053278,30.09162849,33.06223364,31.25228519,31.36125946,30.28658099,32.36526654,30.43743642,29.3977813,29.33944406,27.90294301,26.5769466,26.02024543,24.56476267,24.73523003,21.99440425,20.97331749,21.74475332,22.39155625,21.50498704,21.04914424,20.80820132,21.61486169,19.86979221,19.6631235,21.43518776,22.39641268,22.92256361,23.47209525,24.28175828,25.97380603,26.86397744,25.18483772,26.9695432,26.40827462,,,
India,"CO2 emissions from electricity and heat production, total (% of total fuel combustion)",EN.CO2.ETOT.ZS,,,,,,,,,,,,21.54577095,23.08223544,23.88448652,26.28577048,26.91475153,28.3953809,27.45496067,25.0250643,26.94269306,31.02434929,32.09426628,33.55671948,35.27422303,34.48486871,38.09371757,39.82311666,42.35334012,42.11461858,43.01484507,43.74728983,45.28882286,46.79111618,49.40466613,48.78320101,51.61796292,52.46165064,51.53463001,52.72557811,53.73852515,55.21427609,55.86708204,54.92646116,56.26402197,56.88778239,55.56049575,55.53305756,55.45391293,53.62066787,52.29103743,51.50289162,51.76420685,53.44267238,52.31799877,53.60529195,,,
India,CO2 emissions from residential buildings and commercial and public services (% of total fuel combustion),EN.CO2.BLDG.ZS,,,,,,,,,,,,15.08756422,14.03527412,14.18390682,12.50368768,12.20927555,12.33626336,12.60255434,13.58702759,13.69824505,12.61735745,12.99805637,12.27756271,12.34917733,12.93669337,11.79053245,10.51310788,10.33118571,10.83222684,10.38557338,10.75017439,10.50249061,9.981701892,9.674979887,9.89896835,9.567883789,9.399643513,9.682830326,9.20323442,8.981336572,8.569920489,8.312896312,8.393903117,8.450925712,8.029992123,7.806739658,7.464891546,6.926105726,6.596951251,6.272677404,6.208523077,6.173230416,5.70148987,5.704306706,5.490005793,,,
India,"Droughts, floods, extreme temperatures (% of population, average 1990-2009)",EN.CLC.MDAT.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.356108992,,,,,,,,
India,GHG net emissions/removals by LUCF (Mt of CO2 equivalent),EN.CLC.GHGR.MT.CE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.2921,,,,,,,,,,,,,,,,,,,,,,,
India,Disaster risk reduction progress score (1-5 scale; 5=best),EN.CLC.DRSK.XQ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3.25,,,,,,
India,"Bird species, threatened",EN.BIR.THRD.NO,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,87
India,SF6 gas emissions (thousand metric tons of CO2 equivalent),EN.ATM.SF6G.KT.CE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5757.5,,,,,,,,,,3434.7,,,,,4578.7,,,5301.4,,5772,,,,,,,
India,"PM2.5 air pollution, population exposed to levels exceeding WHO guideline value (% of total)",EN.ATM.PM25.MC.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,99.99,,,,,99.99,,,,,99.98,,,,,99.99,,,,,99.98,99.98,99.99,99.99,99.99,99.99,,
India,"PM2.5 air pollution, mean annual exposure (micrograms per cubic meter)",EN.ATM.PM25.MC.M3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,59.86864301,,,,,60.60455536,,,,,61.49603362,,,,,65.66193004,,,,,64.63060009,63.86602195,66.08989937,68.96813884,71.62337709,74.32984681,,
India,PFC gas emissions (thousand metric tons of CO2 equivalent),EN.ATM.PFCG.KT.CE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2104,,,,,,,,,,2008.8,,,,,1115.8,,,1551.8,,1740,,,,,,,
India,Nitrous oxide emissions (% change from 1990),EN.ATM.NOXE.ZG,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3.667756063,6.642027301,8.676420054,13.56992974,17.59283631,19.78917623,24.41033684,26.2913733,24.29353747,22.46569133,19.42506928,15.61236501,20.14158496,23.35311063,23.57866684,25.67922763,27.86807338,29.68531801,33.58722116,38.05301485,39.70965103,41.36628721,,,,,
India,Nitrous oxide emissions (thousand metric tons of CO2 equivalent),EN.ATM.NOXE.KT.CE,,,,,,,,,,,84290.24,86999.95,89779.41,90769.24,92701.16,95722.42,100665.99,105445.57,108230.92,113167.67,114802.92,120368.97,124244.59,132439.75,139792.95,142780.11,151711.21,147987.49,161676.78,165019.2,169598.52,175818.98,180863.3,184313.6,192612.92,199435.71,203160.67,210998.09,214188.3,210800,207700,202543.15,196076.86,203758.35,209205.05,209587.59,213150.11,216862.36,219944.38,226561.95,234135.87,236945.5004,239755.1309,,,,,
India,Nitrous oxide emissions in energy sector (% of total),EN.ATM.NOXE.EG.ZS,,,,,,,,,,,13.6717355,13.44461633,13.31171942,13.31619189,13.2201359,13.02106732,12.63981689,12.34304583,12.20188725,11.96275382,12.03768213,11.77572388,11.58645397,11.2489649,10.90360165,10.9145251,10.56033555,10.88427308,10.38657701,10.45927471,10.38351657,10.22767933,10.11854683,10.07387974,10.43976871,10.2247124,10.27814343,10.02928203,10.06945824,10.56450694,10.83015252,11.17986621,11.76356437,11.58679857,11.60683623,11.74844002,11.93174484,12.11104951,12.27354714,,,,,,,,,
India,Nitrous oxide emissions in energy sector (thousand metric tons of CO2 equivalent),EN.ATM.NOXE.EG.KT.CE,,,,,,,,,,0,11523.93867,11696.80949,11951.18316,12087.00618,12255.21934,12464.08075,12723.99681,13015.19503,13206.21483,13537.96976,13819.61059,14174.31755,14395.54223,14898.10099,15242.4664,15583.77094,16021.21285,16107.36253,16792.68326,17259.81145,17610.29043,17982.20147,18300.73771,18567.53041,20108.34336,20391.72777,20881.14507,21161.59353,21567.60143,22269.98063,22494.22678,22644.05318,23065.62765,23609.06958,24282.08753,24623.27231,25432.52726,26264.30779,26994.97717,,,,,,,,,
India,Agricultural nitrous oxide emissions (% of total),EN.ATM.NOXE.AG.ZS,,,,,,,,,,,71.58134489,72.22300771,71.1748656,69.89978621,70.32077409,69.90987169,70.30202107,70.84383517,71.15303095,71.44684529,71.75974801,71.70203226,71.34055326,71.61359237,71.86098526,72.25818477,72.28627417,70.8993965,71.74566762,71.23590134,71.43318126,71.23005582,71.24898445,71.61071381,71.23551338,70.65637663,71.22292888,70.6319297,70.90251545,74.13725882,72.15695075,75.29217665,74.61622815,74.91453783,74.89832631,74.57427055,74.42832335,74.12694995,73.81076761,,,,,,,,,
India,Agricultural nitrous oxide emissions (thousand metric tons of CO2 equivalent),EN.ATM.NOXE.AG.KT.CE,,,,,,,,,,0,60336.0874,62833.9806,63900.3744,63447.5047,65188.1733,66919.421,70770.2255,74701.6858,77009.58,80854.7301,82382.2861,86306.9977,88636.7779,94844.8627,100456.5912,103170.3157,109666.3812,104922.2373,115996.0852,117552.9145,121149.6182,125235.9576,128863.2645,131988.2846,137208.8024,140914.0464,144696.9795,149032.0226,151864.8925,156281.3416,149869.9867,152499.1463,146305.1572,152644.6262,156691.081,156298.4164,158644.0531,160753.4531,162342.6352,,,,,,,,,
India,Methane emissions (% change from 1990),EN.ATM.METH.ZG,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.412291904,2.105687322,3.00036597,4.306760313,5.560789871,6.594459066,7.248337564,7.696260882,11.18562441,9.349547599,10.66217121,10.16830704,11.98803202,12.46087241,13.81573825,14.79470668,16.42288166,18.03762478,20.87077383,20.98017535,22.43199656,23.88375936,,,,,
India,Methane emissions (kt of CO2 equivalent),EN.ATM.METH.KT.CE,,,,,,,,,,,398212,401434,401638,408086,411441,420853,421451,429250,433220,435572,444528,453572,455044,469097,477063,480438,493758,498274,519788,532933,513704,520959,524521,529117,535828,542270,547580,550939,553240,571165,561733,568476,565939,575287,577716,584676,589705,598069,606364,620918,621480,628938.0636,636395.8272,,,,,
India,Energy related methane emissions (% of total),EN.ATM.METH.EG.ZS,,,,,,,,,,,10.77740766,10.77073949,11.06577619,11.00166661,11.40621034,11.80691723,11.85285382,11.66405796,11.40335715,11.46638603,11.74871259,12.14034535,12.29039131,12.336333,12.68104975,12.72306505,13.88753688,15.29204948,16.47495276,17.37377418,13.10297371,13.54104043,13.43310264,13.51463379,13.80410027,14.19421835,14.22939292,14.58965527,14.29196717,14.15400187,14.64641293,14.71655154,15.56509312,15.90287126,15.77828511,16.02882835,16.276736,16.72119458,17.20738566,,,,,,,,,
India,Methane emissions in energy sector (thousand metric tons of CO2 equivalent),EN.ATM.METH.EG.KT.CE,,,,,,,,,,0,42916.93058,43237.41035,44444.36219,44896.2612,46929.82589,49689.76538,49953.97097,50067.96878,49401.62386,49944.36695,52226.31709,55065.20722,55926.68825,57869.36803,60496.59637,61126.43926,68570.82432,76196.30665,85634.82743,92590.57597,67310.50009,70543.2688,70459.44427,71508.22485,73966.23439,76970.98785,77917.30976,80380.10085,79068.8792,80842.7048,82273.73477,83660.06352,88088.93232,91487.15097,91153.67763,93716.71243,95984.72601,100004.2812,104339.392,,,,,,,,,
India,Agricultural methane emissions (% of total),EN.ATM.METH.AG.ZS,,,,,,,,,,,76.93750321,76.75146643,76.16484391,76.12879911,75.52238903,75.10171938,74.74160058,74.84774792,74.8890926,74.56957633,74.27147995,73.8034943,73.34965819,73.399788,72.79964334,72.68538046,71.55439662,69.93631211,68.99709487,68.09837489,71.4404059,70.81016251,70.60341465,70.24903639,69.73789898,69.0841577,68.77929332,68.07885052,68.09075848,66.36307875,66.93976956,66.35293765,65.37928707,64.97636548,64.63991965,64.30520083,63.88397368,63.31921962,62.67342211,,,,,,,,,
India,Agricultural methane emissions (thousand metric tons of CO2 equivalent),EN.ATM.METH.AG.KT.CE,,,,,,,,,,0,306374.3703,308106.4817,305906.9558,310670.9711,310730.0727,316067.8391,314999.223,321283.958,324434.527,324804.195,330157.5244,334751.9852,333773.2186,344316.2035,347300.1625,349208.1882,353305.5577,348474.4598,358638.6195,362918.7123,366992.2227,368891.9145,370329.7365,371699.5939,373675.1893,374622.6619,376621.6544,375072.9382,376705.3122,379042.6787,376022.7757,377200.5258,370006.8834,373800.5837,373435.1582,375977.076,376726.987,378692.6236,380029.0693,,,,,,,,,
India,"Personal remittances, received (current US$)",BX.TRF.PWKR.CD.DT,,,,,,,,,,,,,,,,429883697.5,642343811,934415893.6,1164776733,1437018555,2756975586,2301415527,2617671387,2660081543,2294750488,2469209229,2239903076,2665414307,2315296143,2613844482,2383739990,3289109375,2897425537,3522788086,5856694336,6222996282,8765693607,10330965043,9479300350,11124280843,12883465957,14273018778,15735736286,20999150983,18750377107,22125089480,28333642280,37216755275,49977276916,49203912009,53479960083,62499075445,68820517838,69970360847,70388642797,68909693353,62744364090,
India,"Personal transfers, receipts (BoP, current US$)",BX.TRF.PWKR.CD,,,,,,,,,,,,,,,,429883687.2,641780814.4,933730101.5,1164170856,1436396089,2755694909,2299525528,2615757643,2657601857,2291684624,2466923709,2236889150,2661944603,2308571906,2583987295,2351865793,3274878700,2891408013,3495314608,5781754405,6138999222,8452993711,10296654634,9452583926,11001994466,12738252470,14143960159,15628842475,20884266043,18397249158,21859147408,28024797011,36769757385,49179627878,48331658602,52489564633,60259412355,65961872968,66799009274,66831611586,65229600361,59083771822,
India,"Secondary income receipts (BoP, current US$)",BX.TRF.CURR.CD,,,,,,,,,,,,,,,,635684141.6,1051623344,1317433898,1646682204,2067558262,3347428383,3026494348,2939129395,3090983677,2820922879,2835402831,2668386790,3055014830,2768064706,3106182298,2853512512,3736209889,4156846419,5375011742,8207787230,8409548154,11349543839,13975354925,10401782021,11957906539,13548379016,15140086134,16788466327,22401419609,20614739139,24512007176,30015197182,38885426199,52065208183,50526404973,54379872006,62735305514,68611473093,69441152030,69906411366,67805662177,61544776815,
India,"Portfolio equity, net inflows (BoP, current US$)",BX.PEF.TOTL.CD.WD,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4636519.763,283578511.9,1369117146,5491125009,1590475624,3958322334,2555657284,-601151966.9,2317070163,2481311864,2949583339,1063391576,8216187274,9053979533,12151206548,9509114658,32862817217,-15030005085,24688929528,30442226311,-4048294106,22809104593,19891607287,12369281295,1932581388,2336743636,
India,"Primary income on FDI, payments (current US$)",BX.KLT.DREM.CD.DT,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2143240331,2323415258,2413012643,3479235563,5244341660,7737524083,10909992105,11988871923,12278774182,21763448889,23759933902,16389049089,12554794807,14026683899,13684345931,19126101136,
India,"Foreign direct investment, net inflows (% of GDP)",BX.KLT.DINV.WD.GD.ZS,,,,,,,,,,,,,,,,-0.010628169,-0.007604007,-0.030083406,0.01335363,0.032176041,0.043059214,0.048148456,0.036397108,0.002618983,0.00919131,0.046244655,0.047923052,0.077119938,0.031182439,0.086308037,0.074736972,0.027593624,0.097238944,0.199720325,0.301406511,0.603030361,0.625827257,0.871838424,0.633739715,0.479034915,0.77555818,1.070660341,1.025248066,0.614080764,0.775952192,0.898676912,2.176329406,2.100365807,3.656950691,2.687536065,1.653785022,2.002065552,1.312934337,1.516275965,1.698769519,2.105852937,1.96389782,
India,"Foreign direct investment, net inflows (BoP, current US$)",BX.KLT.DINV.CD.WD,,,,,,,,,,,,,,,,-10326246.71,-7706430.543,-36060000,18090000,48570000,79160000,91920000,72080000,5640000,19240000,106090000,117730000,212320000,91250000,252100000,236690000,73537638.39,276512439,550370024.9,973271468.7,2143628110,2426057022,3577330042,2634651658,2168591054,3584217307,5128093562,5208967106,3681984671,5429250990,7269407226,20029119267,25227740887,43406277076,35581372930,27396885034,36498654598,23995685014,28153031270,34576643694,44009492130,44458571546,
India,"Travel services (% of service exports, BoP)",BX.GSR.TRVL.ZS,,,,,,,,,,,,,,,,23.43767549,27.06833908,39.20975017,42.75723038,42.61056699,52.22844702,45.7069223,40.56982193,35.62128091,22.75275639,26.51743232,35.82768868,39.92369004,37.10579559,34.99483694,33.69539185,37.38840946,46.51944019,42.276545,37.62993839,38.10543712,39.11449456,31.71939878,25.22006352,20.74311563,20.73637305,18.44647913,15.92644477,18.6707681,16.19431381,14.35991785,12.43362299,12.39648773,11.15663106,11.98831531,12.37712857,12.7826316,12.34946007,12.33347398,12.53221153,13.44567448,13.85953854,
India,"Transport services (% of service exports, BoP)",BX.GSR.TRAN.ZS,,,,,,,,,,,,,,,,35.51545717,31.96205466,25.99737114,20.98896385,18.81903074,15.01896553,16.2946835,15.14759955,13.27725406,15.40681657,15.22622351,16.51936951,18.86521062,22.80186048,20.53063892,20.7447903,19.79935394,20.98118789,24.32283553,28.38970925,27.90413443,27.47403337,21.31711542,15.16570423,12.70819307,13.65358251,15.0089449,14.69864502,14.66878945,12.91320627,12.52811834,12.4590655,11.79719297,12.07333688,12.09230363,11.33963963,12.77827391,12.03007809,11.34039299,11.83051352,9.162527083,9.378083058,
India,"Exports of goods, services and primary income (BoP, current US$)",BX.GSR.TOTL.CD,,,,,,,,,,,,,,,,5636968909,6661560792,7840968129,8514619552,10428503620,12332288193,12206338970,12766863801,13539767310,13910878312,13377661332,13993904624,15697155997,17728231448,20729919596,23347444194,23252022609,25330278382,27498376329,32381442656,39498835731,42386680922,46296383983,47572909237,53305746338,62452794818,65653991098,73807543012,88285790487,1.21E+11,1.60E+11,2.02E+11,2.53E+11,3.21E+11,2.75E+11,3.58E+11,4.57E+11,4.54E+11,4.80E+11,4.98E+11,4.43E+11,4.46E+11,
India,"Charges for the use of intellectual property, receipts (BoP, current US$)",BX.GSR.ROYL.CD,,,,,,,,,,,,,,,,0,111523.9269,113459.9949,0,0,0,111305.3895,625124.1753,896690.4899,173389.2016,165407.7301,397330.0379,771836.3135,1032024.352,1292412.288,1323398.81,615524.7633,731658.9889,290980.4537,446175.1355,1395550.263,6899307.428,12414145.52,19303913.32,22883886.56,82548708.77,37156159.54,20159947.94,24088615.69,52796059.57,205974583.7,60913260.31,163126496.6,147815443.4,191939516.6,127378163.3,302615975.5,321445174,445568319.5,658722433,466556838.1,524879155.1,
India,"Service exports (BoP, current US$)",BX.GSR.NFSV.CD,,,,,,,,,,,,,,,,840616811.9,1055835076,1316486937,1606852918,2082933822,2971257228,2797358479,2932696123,3290114666,3232033318,3384170908,3228227514,3363400779,3791282738,4139799057,4624863458,4925463517,4934088263,5107023139,6038145747,6774717629,7238385384,9110607257,11691135747,14508990007,16685072488,17337028679,19478164642,23901712153,38097905007,52178951919,69439848438,86552459544,1.06E+11,92889486182,1.17E+11,1.39E+11,1.46E+11,1.49E+11,1.57E+11,1.56E+11,1.62E+11,
India,"Goods exports (BoP, current US$)",BX.GSR.MRCH.CD,,,,,,,,,,,,,,,,4666099650,5410356407,6249084081,6517736183,7597036165,8303140035,8437352247,9226332696,9769874985,10191575183,9465033878,10248046788,11884034801,13509794583,16143880746,18286186694,18094877656,20019380807,22015873054,25522526248,31238525606,33737287503,35702052076,34075707693,36877276369,43246625500,44793193849,51141118294,60893318399,77921854646,1.02E+11,1.24E+11,1.54E+11,1.99E+11,1.68E+11,2.31E+11,3.08E+11,2.98E+11,3.19E+11,3.28E+11,2.72E+11,2.69E+11,
India,"Insurance and financial services (% of service exports, BoP)",BX.GSR.INSF.ZS,,,,,,,,,,,,,,,,2.47435895,2.2817592,2.113557026,1.805977901,1.624513281,1.244803614,1.346075755,1.307109407,1.254914007,1.334520282,1.245736153,1.414386367,1.571592858,1.882732635,2.645462798,2.666018297,2.164973799,3.042556175,2.768021538,2.406540598,2.512091298,2.900327001,2.511785685,1.96826127,1.6402532,3.194385775,3.392139874,4.775497364,3.240048051,3.105203689,3.994125632,4.99735631,5.643358198,5.517791446,5.524417524,6.504422633,6.376217934,5.228909948,5.71179831,5.042174381,4.68990276,4.454988633,
India,"Exports of goods and services (BoP, current US$)",BX.GSR.GNFS.CD,,,,,,,,,,,,,,,,5506716462,6466191483,7565571018,8124589101,9679969987,11274397263,11234710726,12159028819,13059989651,13423608501,12849204786,13476274302,15247435580,17301077322,20283679803,22911050152,23020341172,24953469071,27122896193,31560671995,38013243235,40975672886,44812659334,45766843440,51386266375,59931697988,62130222527,70619282936,84795030553,1.16E+11,1.55E+11,1.93E+11,2.40E+11,3.05E+11,2.61E+11,3.48E+11,4.46E+11,4.44E+11,4.68E+11,4.86E+11,4.29E+11,4.30E+11,
India,"Primary income receipts (BoP, current US$)",BX.GSR.FCTY.CD,,,,,,,,,,,,,,,,130252447.1,195369308.6,275397111.2,390030451.1,748533633.1,1057890929,971628244.1,607834981.7,479777659.9,487269811.5,528456546.1,517630321.9,449720417,427154126.5,446239793.5,436394041.4,231681436.2,376809311.5,375480135.4,820770661.2,1485592496,1411008035,1483724649,1806065797,1919479962,2521096831,3523768571,3188260076,3490759934,4689926581,5645943586,8199428181,12649780190,15593350461,13732805904,9961068802,10147279650,9898986816,11229751633,12636626812,14533393863,15485024323,
India,"Communications, computer, etc. (% of service exports, BoP)",BX.GSR.CMCP.ZS,,,,,,,,,,,,,,,,38.57250838,38.68784706,32.67932166,34.44782787,36.94588899,31.50778384,36.65231845,42.97546912,49.84655102,60.50590676,57.01060802,46.23855544,39.63950648,38.2096113,41.82906134,42.89379956,40.64726281,29.45681574,30.63259793,31.57381176,31.47833715,30.51114507,44.45170011,57.64597098,64.90843809,62.41565866,63.1524361,64.59941284,63.42039439,67.78727623,69.11783817,70.1099552,70.1629611,71.25224061,70.39496354,65.90241992,63.33763833,67.70741005,69.76817676,68.38519099,69.90334748,70.03375198,
India,"ICT service exports (% of service exports, BoP)",BX.GSR.CCIS.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,54.99487249,59.46020134,61.49637388,61.03988554,65.25497405,67.21862599,68.29495729,68.14956209,69.28963278,66.34159697,64.09686954,61.83745354,65.89388319,67.34610962,65.52066309,67.27947976,67.02528532,
India,"ICT service exports (BoP, current US$)",BX.GSR.CCIS.CD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9175934340,10308632159,11978364953,14589577740,24860778026,35073974538,47423914835,58985122161,73484592821,61624368553,75037123007,85662135486,95891807671,1.00E+11,1.03E+11,1.05E+11,1.08E+11,
India,"Technical cooperation grants (BoP, current US$)",BX.GRT.TECH.CD.WD,2420000,4730000,5970000,7470000,8820000,7670000,33830000,36720000,27900000,48090000,45890000,58320000,49870000,46430000,54750000,76190000,63080000,82510000,105150000,119600000,147440000,143970000,166430000,176420000,168120000,173980000,221020000,264030000,330500000,404700000,333200000,329210000,428870000,375530000,380510000,426520000,403630000,330440000,308830000,291250000,286860000,313940000,327970000,418440000,387080000,352370000,358350000,276030000,276290000,266040000,282580000,329020000,356150000,371020000,404050000,389370000,,
India,"Grants, excluding technical cooperation (BoP, current US$)",BX.GRT.EXTA.CD.WD,519920000,335760000,410010000,432940000,589550000,554450000,618500000,536910000,128140000,140610000,147350000,230260000,171200000,148610000,242690000,511050000,465430000,469580000,640430000,716990000,648520000,809270000,455610000,545160000,582540000,449840000,595470000,531450000,699650000,698080000,512250000,565260000,587300000,494930000,620780000,573420000,600930000,550650000,494430000,480430000,471170000,554680000,703790000,611950000,897710000,1092030000,891780000,1090910000,1185860000,1199620000,1026210000,1055980000,825640000,1025730000,863700000,911220000,,
India,"Net capital account (BoP, current US$)",BN.TRF.KOGT.CD,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,0,0,,0,,,,,,,,,293000000,49662310.11,67915809.28,-597232816.4,961829664.6,-74333637.35,37069432.58,136835869.9,
India,"Net secondary income (BoP, current US$)",BN.TRF.CURR.CD,,,,,,,,,,,,,,,,610141244.6,1036045026,1305990814,1627066020,2045056928,3333701862,3005557067,2917382176,3077534085,2802072726,2812562401,2651302321,3027214325,2751844045,3083019915,2836929007,3723059000,4138714781,5352166696,8184678409,8382256974,11283779509,13912943151,10334408363,11922988941,13434458565,14732958218,16090810168,21831498410,19792616190,23642751295,28716229728,37143828986,48752392609,48762516063,52109769922,60212408129,65435024619,64814792695,65600118581,64152710185,56826569388,
India,"Reserves and related items (BoP, current US$)",BN.RES.INCL.CD,,,,,,,,,,,,,,,,357327833.9,2209649658,2081272808,1920296095,986058664.3,-1505743077,-2029798481,-1698093918,-752299908.9,1069859766,-396764546.9,-408972282.5,133049339.7,-15720271.2,237137465.9,-1941058213,-234620811.9,1072244807,4211488258,10390918393,-732638270.1,3957574354,5321073796,3070648000,6663743667,6067106189,8693982532,18854234993,26221809756,23649195107,14554076076,29169925268,87488219725,25372730029,17035954591,13113304924,-3096087696,-4022754897,10928470382,37583451814,44065483031,15739273666,
India,"Portfolio investment, net (BoP, current US$)",BN.KLT.PTXL.CD,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4636519.763,-283578511.9,-1369117146,-5491125009,-1590475624,-3958322334,-2555657284,601151966.9,-2317070163,-2345216989,-2852793642,-1022422260,-8216187274,-9037076534,-12144114068,-9545718947,-33016300605,15074790314,-17756860244,-36875471079,-2664809742,-29285240146,-6857994918,-37740318603,-9486642829,4725209437,
India,"Foreign direct investment, net (BoP, current US$)",BN.KLT.DINV.CD,,,,,,,,,,,,,,,,10326246.71,7706430.543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-73537638.39,-276512439,-550019384.4,-890688166,-2026439031,-2186732315,-3464411052,-2587058630,-2089233597,-3074684332,-4073961343,-3947895992,-2444138426,-3592188066,-4628652265,-5992285935,-8201628958,-24149749830,-19485789183,-11428785746,-23890659988,-15442447343,-26388082470,-22890162761,-36495216491,-39411278940,
India,"Net errors and omissions (BoP, current US$)",BN.KAC.EOMS.CD,,,,,,,,,,,,,,,,-441679812.4,-289390001,-452982178.4,432158231.2,303290753.1,-371939164.9,-327581364.1,371956743.1,-845978923,373266645.8,503146951.9,195917912.6,-408594212.6,-91895602.25,-290939518.2,-573936385.7,629065409.6,1183461072,-969104315.1,1601950738,829068811.6,-1920944522,-1295370509,1384306173,5356471.476,331250079.5,-715295724.7,-190688502.1,470002058.3,591866085.9,-541016113.4,899655318.5,1338398158,1145758509,-279420427.5,-1969864183,-1940805909,1830745984,128654167.3,-2601653249,-460012929.1,150327348.1,
India,"Net trade in goods (BoP, current US$)",BN.GSR.MRCH.CD,,,,,,,,,,,,,,,,-286205132.9,787005792.9,932137783.5,-884155916.3,-2221565915,-5643555549,-5711148537,-4819968799,-4097695768,-4024728084,-5616169910,-5438418173,-5776859517,-6581412615,-6110394115,-5150872511,-2991949367,-2911157011,-2092517089,-4150091577,-6718787335,-10051664889,-10028030528,-10752254720,-8678932808,-10640580424,-6419076590,-3561161456,-7187862551,-17617201854,-32288927608,-42695648388,-55081319693,-1.25E+11,-1.07E+11,-1.29E+11,-1.67E+11,-2.02E+11,-1.63E+11,-1.44E+11,-1.37E+11,-1.07E+11,
India,"Net trade in goods and services (BoP, current US$)",BN.GSR.GNFS.CD,,,,,,,,,,,,,,,,-500017600.2,702501190.1,962429102,-832488641.2,-2258339166,-5653548461,-6162724659,-5358708522,-4512606727,-4434193037,-6134931260,-6155516301,-7042634827,-8111530902,-7844247653,-6615557120,-4011561595,-4712170095,-3482052608,-6311718423,-10211864221,-13984314681,-13360131754,-13601016314,-11441228840,-13143494266,-9180938409,-5122207192,-8164091361,-14960253368,-27276336271,-31769964257,-38703712439,-74360043516,-67410018791,-91023662479,-1.07E+11,-1.36E+11,-92135051692,-67969807624,-63249171395,-41579107877,
India,"Net primary income (BoP, current US$)",BN.GSR.FCTY.CD,,,,,,,,,,,,,,,,-257640448.8,-159678817.2,-149175589.6,-102199480.6,263619215.9,534720867.3,458835324.6,-82217500.14,-501868995,-678949494.7,-818214290,-1063485271,-1155748293,-1783545622,-2051541632,-3257026299,-4003231737,-3911768312,-3745916368,-3549241504,-3733620331,-3255604409,-3518006704,-3636497422,-3709782917,-4892212951,-4141838243,-3909106939,-4894896785,-4052167101,-6649958332,-6245325788,-6515811031,-5364336274,-7538933229,-15601985068,-16043262742,-20842871438,-21802411391,-24944592950,-23360376800,-27361174991,
India,"Net financial account (BoP, current US$)",BN.FIN.TOTL.CD,,,,,,,,,,,,,,,,-589196616.8,1289477398,1666262148,1124536130,353627731.1,-2157064896,-3025913631,-2151587102,-2782920560,-1937803160,-3637436196,-4371781338,-5579763007,-7235128083,-7103708889,-7609590798,-3662668922,-3301762554,-2844906595,-74330780.23,-4734158767,-7877084104,-4260565816,-5518799201,-3222666345,-4269998573,694885841.7,6868807535,9242512322,1372061807,-10824559421,-8399404999,-6737296326,-29826228672,-26172856384,-56436079497,-64390527321,-90237732678,-48032186556,-29990268879,-22879781506,-11826550262,
India,Current account balance (% of GDP),BN.CAB.XOKA.GD.ZS,,,,,,,,,,,,,,,,-0.151829956,1.557883142,1.768000206,0.511097748,0.033346606,-0.971022109,-1.41340875,-1.274274385,-0.899435662,-1.10404154,-1.80488115,-1.859322933,-1.878297927,-2.441023696,-2.332394881,-2.22157043,-1.610393095,-1.577283149,-0.680698119,-0.519117409,-1.565007997,-1.536449664,-0.722653816,-1.660474553,-0.713060046,-0.995624909,0.294422373,1.389475977,1.463077737,0.111506096,-1.271298011,-1.010419787,-0.672351624,-2.609369832,-1.977916681,-3.290795351,-3.429288264,-5.004888982,-2.645666243,-1.341965695,-1.074559055,-0.53510706,
India,"Current account balance (BoP, current US$)",BN.CAB.XOKA.CD,,,,,,,,,,,,,,,,-147516804.4,1578867399,2119244327,692377898.6,50336977.94,-1785125731,-2698332267,-2523543846,-1936941637,-2311069806,-4140583148,-4567699251,-5171168794,-7143232480,-6812769371,-7035654412,-4291734332,-4485223626,-1875802280,-1676281518,-5563227578,-5956139582,-2965195307,-6903105373,-3228022816,-4601248652,1410181566,7059496037,8772510264,780195721.5,-10283543308,-9299060317,-8075694484,-30971987181,-26186435957,-54515877624,-62517637222,-91471245846,-49122670388,-27314281993,-22456838010,-12113713480,
India,"Personal remittances, paid (current US$)",BM.TRF.PWKR.CD.DT,,,,,,,,,,,,,,,,,9138853.073,11641249.66,57404830.93,10211729.05,29241802.22,15402512.55,13516844.75,39727378.85,27499765.4,30896383.29,42055763.24,65468292.24,93125846.86,98650077.82,105592307.8,51584170.43,67776932.45,259423927.2,350832857.5,419173566.7,537989269.7,161582930.3,44157098.01,36167394.58,486141918.9,751084697.3,1186800148,1265419810,1652783174,1348282858,1561865362,2059330846,3812363581,2889988305,3828678498,4077745356,4963082154,6431771261,6221785953,4882832496,5622661096,
India,"Secondary income, other sectors, payments (BoP, current US$)",BM.TRF.PRVT.CD,,,,,,,,,,,,,,,,15540581.68,7925275.591,7655250.956,17659839.45,11908448.13,12467070.86,18880009.08,16582262.14,7715857.526,13456599.69,11373330.81,13837233.8,25486419.1,13993627.4,16868428.37,14944442.72,12202795.08,16744498.56,20677412.8,16064063.19,22389026.54,54618484.51,58007970.05,67373657.95,33740285.02,113461572.3,407127916.1,697656158.9,569921199.4,555977680,475507398,857016412.5,1233747716,2894628689,1652988824,2270102083,2522897385,3135735444,4156511171,3674946326,2801029500,3932777977,
India,"Foreign direct investment, net outflows (% of GDP)",BM.KLT.DINV.WD.GD.ZS,,,,,,,,,,,,,,,,,,,,,0.002175807,0.001047617,0.000504954,0.002321793,0.001910875,0.001307701,-0.000407059,0.001816125,0.003758979,0.003423564,0.001894553,-0.004127544,0.00843989,0.000127242,0.02557472,0.032966806,0.061736358,0.027519718,0.011448038,0.017529812,0.11025349,0.220085212,0.248208655,0.206447782,0.262554265,0.32646204,1.525217996,1.417529357,1.622349931,1.215733353,0.963898027,0.691588004,0.467994118,0.09505724,0.574163235,0.359557874,0.222957387,
India,"Foreign direct investment, net outflows (BoP, current US$)",BM.KLT.DINV.CD.WD,,,,,,,,,,,,,,,,,,,,,4000000,2000000,1000000,5000000,4000000,3000000,-1000000,5000000,11000000,10000000,6000000,-11000000,24000000,350640.5619,82583302.7,117189079.2,239324706.5,112918990.4,47593027.49,79357457.32,509532974.7,1054132218,1261071115,1237846245,1837062923,2640754960,14036833332,17026111929,19256527246,16095583747,15968099288,12607994610,8553237671,1764948800,11686480933,7514275639,5047292606,
India,"Travel services (% of service imports, BoP)",BM.GSR.TRVL.ZS,,,,,,,,,,,,,,,,2.29266429,3.330126848,3.99774419,4.554595753,5.005444566,3.79294214,4.453470792,5.463875965,6.106861633,8.346905288,9.075676514,7.65406873,7.593721008,7.464592461,7.082269767,6.456249053,7.29423377,6.980372609,7.302117392,9.373533529,9.701948964,8.172331469,10.78227646,11.78152119,11.63625067,14.02104311,14.95555196,14.20328944,14.40938851,13.58820123,13.11662087,11.69795843,11.71208402,17.28852265,17.55520362,13.29265321,17.61773419,15.44256701,14.75396835,17.99215777,17.95378334,17.07266579,
India,"Transport services (% of service imports, BoP)",BM.GSR.TRAN.ZS,,,,,,,,,,,,,,,,69.27405679,61.98918649,61.83235848,64.00040949,60.56172098,59.97623386,59.79931722,60.51142634,56.35819078,57.8881479,57.01190395,54.76991041,54.851488,56.91998946,56.17426701,56.1315811,54.53599849,59.4682766,61.207928,55.65908893,55.54326794,57.71243595,54.75617045,48.78422772,40.41003405,45.63040936,42.93952197,42.89278274,38.65838206,38.1550799,44.28276442,42.99667644,44.55616224,25.608714,20.91351274,18.11056209,19.77405024,19.65182983,17.79801439,20.1931235,18.66526225,14.703644,
India,"Imports of goods, services and primary income (BoP, current US$)",BM.GSR.TOTL.CD,,,,,,,,,,,,,,,,6394626958,6118738419,7027714616,9449307674,12423223570,17451115786,17910228304,18207789822,18554243032,19024020844,20330806882,21212906196,23895539116,27623307973,30625708882,33220027613,31266815941,33954216789,34726345305,42242402583,53444320283,59626600012,63174522441,64810422974,68456758095,80488502035,78976767750,82838857143,1.01E+11,1.40E+11,1.94E+11,2.40E+11,2.98E+11,4.00E+11,3.50E+11,4.65E+11,5.79E+11,6.11E+11,5.93E+11,5.91E+11,5.30E+11,5.15E+11,
India,"Charges for the use of intellectual property, payments (BoP, current US$)",BM.GSR.ROYL.CD,,,,,,,,,,,,,,,,0,17776013.3,23026309.47,13068415.52,13496502.35,12455736.62,15153361.08,38854328.11,24571485.05,22207099.13,25143719.35,24934650.13,40558650.91,108393928.2,127039845.2,72465533.69,49565207.9,68598351.54,75336944.71,93836422.84,90293739.53,118039538.7,150485539.5,200807738.7,315298932.6,282463092.3,317035850.7,345233067,549887942.1,611481232.4,671829366.3,845949436,1159824391,1528826913,1860070100,2438302981,2819291079,3990055617,3903908830,4848711889,5009034407,5466041710,
India,"Service imports (BoP, current US$)",BM.GSR.NFSV.CD,,,,,,,,,,,,,,,,1054429279,1140339679,1286195618,1555185643,2119707072,2981250140,3248934601,3471435846,3705025624,3641498271,3902932258,3945325643,4629176088,5321401026,5873652595,6089548067,5945075745,6735101347,6496558658,8199772593,10267794516,11171035176,12442708484,14539897341,17271286039,19187986330,20098890498,21039210378,24877940963,35440956520,47166360582,58514164307,70174852290,55562861740,53030141320,78912971414,77758139080,79919618509,78722220355,81118589091,82643096048,95922561258,
India,"Goods imports (BoP, current US$)",BM.GSR.MRCH.CD,,,,,,,,,,,,,,,,4952304783,4623350614,5316946297,7401892099,9818602080,13946695585,14148500784,14046301495,13867570753,14216303267,15081203788,15686464961,17660894318,20091207198,22254274861,23437059205,21086827022,22930537818,24108390143,29672617824,37957312941,43788952391,45730082604,44827962413,45556209177,53887205924,51212270439,54702279750,68081180951,95539056500,1.35E+11,1.67E+11,2.09E+11,3.24E+11,2.75E+11,3.60E+11,4.75E+11,5.00E+11,4.82E+11,4.72E+11,4.09E+11,3.76E+11,
India,"Insurance and financial services (% of service imports, BoP)",BM.GSR.INSF.ZS,,,,,,,,,,,,,,,,5.583106375,4.73978002,4.953247971,5.486947919,5.229859076,5.260857723,4.927540324,4.706063685,4.378189329,4.679867422,4.719281355,4.656927331,4.450270039,5.012801859,5.650411354,5.646743599,5.88078192,5.98123671,6.75393711,5.995863571,5.442047992,5.257601592,5.227515584,4.32056838,3.556031159,10.89363674,12.8901623,11.05858612,6.641001138,7.161971629,6.782522727,7.8974445,9.15692869,8.38662207,9.515983522,10.40475443,12.54951112,8.48826367,8.936650437,6.499972503,5.152338117,6.591507318,
India,"Imports of goods and services (BoP, current US$)",BM.GSR.GNFS.CD,,,,,,,,,,,,,,,,6006734062,5763690293,6603141916,8957077742,11938309152,16927945724,17397435385,17517737341,17572596377,17857801538,18984136046,19631790604,22290070407,25412608224,28127927456,29526607272,27031902767,29665639166,30604948802,37872390417,48225107457,54959987568,58172791088,59367859754,62827495216,73075192253,71311160936,75741490128,92959121914,1.31E+11,1.82E+11,2.25E+11,2.79E+11,3.79E+11,3.28E+11,4.39E+11,5.53E+11,5.80E+11,5.60E+11,5.54E+11,4.92E+11,4.72E+11,
India,"Primary income payments (BoP, current US$)",BM.GSR.FCTY.CD,,,,,,,,,,,,,,,,387892895.9,355048125.7,424572700.8,492229931.8,484914417.2,523170061.9,512792919.5,690052481.8,981646654.9,1166219306,1346670836,1581115593,1605468710,2210699749,2497781426,3693420341,4234913173,4288577624,4121396503,4370012165,5219212827,4666612445,5001731353,5442563219,5629262880,7413309782,7665606814,7097367015,8385656719,8742093682,12295901918,14444753970,19165591221,20957686735,21271739133,25563053870,26190542392,30741858254,33032163023,37581219762,37893770662,42846199314,
India,"Communications, computer, etc. (% of service imports, BoP)",BM.GSR.CMCP.ZS,,,,,,,,,,,,,,,,22.85017255,29.94090664,29.21664936,25.95804684,29.20297537,30.96996628,30.81967167,29.31863401,33.15675826,29.08507939,29.19313818,32.91909353,33.10452095,30.60261622,31.09305186,31.76542625,32.28898582,27.57011408,24.7360175,28.97151397,29.31273511,28.85763099,29.23403751,35.11368271,44.39768412,29.45491079,29.21476377,31.8453417,40.2912283,41.09474724,35.81809198,37.40792063,34.57482505,48.71614127,52.01530012,47.42692264,43.04431473,50.09037828,49.84121072,49.02385617,51.00848505,48.85373969,
India,Trade in services (% of GDP),BG.GSR.NFSV.GD.ZS,,,,,,,,,,,,,,,,1.950454163,2.166986051,2.171313254,2.334145547,2.784112534,3.237876278,3.167098303,3.233794151,3.248254113,3.283615398,3.176449952,2.920059129,2.903103951,3.114035146,3.428168797,3.383170694,4.078966685,4.103611697,4.210750987,4.409254172,4.794279474,4.748906173,5.25280268,6.309618726,7.020162615,7.762264906,7.815995072,7.974778788,8.13546207,10.5102234,12.28151566,13.90326139,13.04852021,13.61613592,11.02161691,11.83021027,11.86396771,12.33527824,12.27355723,11.7085336,11.4323759,11.38538819,
India,Cereal yield (kg per hectare),AG.YLD.CREL.KG,,947.3,929.7,965.8,993.6,854.4,864.2,993.7,1036.6,1053.7,1134.8,1136.1,1107.8,1152.8,1074.5,1260.8,1198.7,1331.1,1370.2,1222.3,1350,1398.8,1346.4,1564.4,1563.8,1592.2,1585.4,1583.7,1775.8,1916.4,1891.2,1926.3,2024.8,2084.9,2115.5,2111.7,2181,2228.6,2248.4,2313.7,2294.2,2423.1,2187.3,2399.4,2350,2411.6,2446.5,2583.3,2637.9,2580.8,2676.4,2860.7,2963.5,2961,2984.1,,,
India,Surface area (sq. km),AG.SRF.TOTL.K2,,3287260,3287260,3287260,3287260,3287260,3287260,3287260,3287260,3287260,3287260,3287260,3287260,3287260,3287260,3287260,3287260,3287260,3287260,3287260,3287260,3287260,3287260,3287260,3287260,3287260,3287260,3287260,3287260,3287260,3287260,3287260,3287260,3287260,3287260,3287260,3287260,3287260,3287260,3287260,3287260,3287260,3287260,3287260,3287260,3287260,3287260,3287260,3287260,3287260,3287260,3287260,3287260,3287260,3287259,3287259,3287259,3287259
India,Livestock production index (2004-2006 = 100),AG.PRD.LVSK.XD,,24.54,24.66,24.71,24.66,24.76,25.09,25.54,26.76,27.24,26.99,28.53,28.92,29.56,30.84,32.02,33.68,34.95,35.67,37.2,38.72,41.19,43.67,46.36,48.71,51.29,53.19,54.4,56,58.73,60.77,61.64,63.76,66.02,68.29,71.72,74.15,76.26,79.07,82.48,84.6,87.85,89.61,91.61,95.84,99.83,104.33,110.93,114.57,118.57,123.53,128.25,131.95,136.39,142.75,,,
India,Food production index (2004-2006 = 100),AG.PRD.FOOD.XD,,32.13,31.69,32.42,33.25,31.69,31.64,33.56,35.42,36.64,38.54,38.98,37.36,40.33,39.06,43.4,43.01,46.56,48.02,45.8,47.68,51.04,50.73,56.82,57.89,59.13,60.11,59.57,65.27,68.97,70.17,71.12,74.12,76.89,79.02,81.05,84.11,86.52,88.03,92.14,91.53,94.63,87.37,96.38,94.73,100.03,105.24,114.53,117.04,114.28,123.2,130.89,133.82,138.96,142.55,,,
India,Crop production index (2004-2006 = 100),AG.PRD.CROP.XD,,34.96,34.64,35.66,36.61,34.47,34.15,36.78,38.59,39.94,42.44,43.02,40.6,44.16,42.24,47.05,46,50.24,52.41,48.82,50.43,54.02,52.74,59.44,60.31,61.21,61.16,59.85,67,71.58,72.59,73.68,77.08,79.74,82.07,83.68,87.09,88.86,90.18,94.32,92.08,94.78,84.74,96.97,94.12,99.9,105.98,116.27,117.32,112.83,124.91,134.07,136.18,141.55,144.02,,,
India,Cereal production (metric tons),AG.PRD.CREL.MT,,87376496,87257552,90373008,93706000,79699504,80137608,95453504,102443708,106291244,113909504,113238296,108615456,119648216,106793000,127807800,121625108,138062904,142964696,126470304,140490600,147583816,136101404,166781704,164477600,165682196,164955216,156114500,183867008,199413216,193919312,193101196,201468404,208626900,211941400,210012500,218750900,223232400,226877000,236205608,234931192,242963796,206636708,236592700,229845504,239997492,242785588,260485904,266835300,250783392,267838308,287860000,293290000,293940000,295360000,,,
India,"Agricultural machinery, tractors per 100 sq. km of arable land",AG.LND.TRAC.ZS,,1.990680718,2.233567326,2.540166381,2.789541754,3.033827173,3.405763289,4.130679685,4.872898562,5.625843877,6.228201295,8.951150505,10.61266278,11.44364273,12.59131522,14.06764789,15.48121957,18.160855,20.46925061,23.17087198,23.5099537,25.64384453,28.27432219,30.88396873,33.83215783,37.16356855,39.71213336,42.74182776,46.10697006,56.60555678,60.44757401,65.14272407,69.82901675,73.50036288,77.38071066,83.67955235,93.27744139,102.1033286,111.3320819,120.7640938,129.9322687,,,,,,,,,,,,,,,,,
India,Urban land area (sq. km),AG.LND.TOTL.UR.K2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,222688.2344,,,,,,,,,,222688.2344,,,,,,,,,,222688.2344,,,,,,,
India,"Share of tariff lines with specific rates, manufactured products (%)",TM.TAX.MANF.SR.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.008102,,2.015389,,,,,0,,0.6451759,3.824678,0.0953824,3.770308,4.478346,0,0,0,0,0.0407477,0,4.641657,4.862819,4.886819,4.859451,,4.527079,3.927029,
India,"Tariff rate, most favored nation, simple mean, manufactured products (%)",TM.TAX.MANF.SM.FN.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,86.72,,58.89,,,,,31.24,,34.16,32.92,31.65,28.42,25.22,28.53,15.36,14.14,13.07,8.91,9.23,8.57,8.88,9.02,9.02,,9,9.29,
India,"Tariff rate, applied, simple mean, manufactured products (%)",TM.TAX.MANF.SM.AR.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,82.96,,57.07,,,,,29.04,,32.75,32.34,30.76,27.91,24.83,28.06,14.7,12.76,12.65,8.3,8.61,7.11,8.59,8.72,8.7,,8.51,7.41,
India,"Share of tariff lines with international peaks, manufactured products (%)",TM.TAX.MANF.IP.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,98.75266,,96.46526,,,,,96.65074,,96.7196,86.54237,93.57384,90.15955,89.86376,94.58649,6.361296,7.43144,6.779061,2.050388,1.672529,1.338177,1.930441,2.049413,2.076889,,1.864644,1.617956,
India,"Bound rate, simple mean, manufactured products (%)",TM.TAX.MANF.BR.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,36.34,,36.27,35.27,35.27,35.28,35.28,35.28,35.28,35.28,35.45,35.45,35.45,35.45,35.43,35.43,35.43,,35.43,35.43,
India,"Binding coverage, manufactured products (%)",TM.TAX.MANF.BC.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,72.28,,72.26,73.45,73.45,72.92,72.92,72.92,72.92,72.92,73.29,73.29,73.29,73.29,73.52,73.52,73.52,,73.52,73.52,
India,Import volume index (2000 = 100),TM.QTY.MRCH.XD.WD,,,,,,,,,,,,,,,,,,,,,21.52991354,21.52873813,22.07547144,22.00822196,29.06055975,25.54909829,25.58168766,32.69174944,30.1416213,30.6800098,32.45764615,31.7494551,38.45658839,44.6764174,54.26935563,67.3620856,70.80906668,78.07236322,91.66925647,94.98041971,100,101.4575246,105.8505949,130.4157343,152.6272553,195.832815,218.1513991,248.1971506,313.2394609,324.6564272,398.2751073,436.8679999,461.9868161,460.7184794,475.448244,523.4685166,562.7911911,
India,Merchandise trade (% of GDP),TG.VAL.TOTL.GD.ZS,9.948810649,9.485754958,9.051404221,8.587512396,8.219212289,7.700897373,11.91864311,8.866120215,8.268711813,7.01761261,6.739427576,6.711795414,6.624855709,7.262996494,9.228552975,11.04967678,11.06470152,10.8660912,10.72985207,11.68159881,12.75566648,12.42106545,12.19161728,10.77730061,12.05714529,10.92714699,10.10320353,10.16049369,11.09718936,12.45526651,13.11946614,14.32445525,15.19426426,16.09752204,16.06175581,18.38014463,18.32733061,18.62934881,18.38136274,18.2562404,20.31865202,19.57406155,20.81744999,21.93498281,25.21463637,29.97721314,32.62113526,31.59810019,43.46085357,31.88292564,34.80491716,42.09250544,43.03489863,42.02270232,38.59712215,31.5958361,27.57216486,
India,"International tourism, expenditures (% of total imports)",ST.INT.XPND.MP.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2.065314216,1.661208527,2.306920426,2.88539962,3.199236247,5.04411947,6.123866086,5.74321946,4.717127173,4.415177451,4.551344045,3.882071273,3.83448577,3.184099224,2.836190851,2.389200354,2.47693665,2.432624812,2.477478579,3.15995119,3.595591876,,
India,"International tourism, expenditures (current US$)",ST.INT.XPND.CD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,996000000,913000000,1342000000,1713000000,2010000000,3686000000,4367000000,4350000000,4385000000,5783000000,8277000000,8738000000,10690000000,12083000000,9310000000,10490000000,13699000000,14107000000,13884000000,17492000000,17686000000,,
India,"International tourism, expenditures for travel items (current US$)",ST.INT.TVLX.CD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,996000000,913000000,1342000000,1713000000,2010000000,2690000000,3006000000,2988000000,3585000000,4816000000,6187000000,6845000000,8219000000,9606000000,9310000000,10490000000,13699000000,12342000000,11615000000,14595000000,14838000000,,
India,"International tourism, receipts for travel items (current US$)",ST.INT.TVLR.CD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2582000000,2831000000,2890000000,2949000000,3010000000,3460000000,3198000000,3102000000,4463000000,6170000000,7493000000,8634000000,10730000000,11832000000,11136000000,14490000000,17708000000,17972000000,18397000000,19700000000,21013000000,,
India,"International tourism, expenditures for passenger transport items (current US$)",ST.INT.TRNX.CD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,996000000,1361000000,1362000000,800000000,967000000,2090000000,1893000000,2471000000,2477000000,,,,1765000000,2269000000,2897000000,2848000000,,
India,"International tourism, receipts for passenger transport items (current US$)",ST.INT.TRNR.CD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,138000000,144000000,198000000,97000000,137000000,166000000,281000000,504000000,630000000,,,,368000000,645000000,1056000000,459000000,,
India,"International tourism, receipts (% of total exports)",ST.INT.RCPT.XP.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.792369659,6.908977451,6.449070515,6.443529373,5.857596226,6.003500853,5.379024674,4.672944645,5.377673633,5.436142963,4.954650885,4.611618852,4.679233818,4.084303583,4.269166707,4.163369926,3.967064457,4.132071451,4.066427631,4.274449067,5.009438153,,
India,"International tourism, receipts (current US$)",ST.INT.RCPT.CD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2582000000,2831000000,2890000000,2949000000,3010000000,3598000000,3342000000,3300000000,4560000000,6307000000,7659000000,8915000000,11234000000,12462000000,11136000000,14490000000,17708000000,18340000000,19042000000,20756000000,21472000000,,
India,"International tourism, number of departures",ST.INT.DPRT,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3056000,3464000,3726000,3811000,4115000,4416000,4564000,4940000,5351000,6213000,7185000,8340000,9783000,10868000,11067000,12988000,13994000,14920000,16626000,18330000,20376000,,
India,"International tourism, number of arrivals",ST.INT.ARVL,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2124000,2288000,2374000,2359000,2482000,2649000,2537000,2384000,2726000,3457000,3919000,4447000,5082000,5283000,5168000,5776000,6309000,6578000,6968000,13107000,13284000,,
India,Unmet need for contraception (% of married women ages 15-49),SP.UWT.TFRT,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.3,,,,,,16.1,,,,,21.1,,13.9,,20.5,,,,,,,,,
India,Urban population (% of total),SP.URB.TOTL.IN.ZS,17.924,18.032,18.218,18.405,18.595,18.785,18.977,19.171,19.366,19.562,19.76,19.991,20.321,20.653,20.991,21.332,21.677,22.026,22.379,22.736,23.098,23.417,23.647,23.879,24.113,24.348,24.585,24.823,25.063,25.305,25.547,25.778,25.984,26.191,26.399,26.607,26.817,27.028,27.24,27.453,27.667,27.918,28.244,28.572,28.903,29.235,29.569,29.906,30.246,30.587,30.93,31.276,31.631,31.994,32.366,32.747,33.136,
India,Urban population,SP.URB.TOTL,80564904,82675812,85233375,87889023,90647749,93493389,96433890,99476360,102633471,105929223,109387114,113194002,117742214,122484460,127425919,132536083,137816239,143275833,148932756,154813017,160943057,166990850,172591889,178363968,184282446,190320201,196478756,202752462,209148059,215666932,222293000,228922786,235420524,242019983,248732500,255555657,262509794,269578709,276751329,284012050,291347596,299135188,307805121,316585717,325487024,334483094,343585192,352795471,362089053,371408805,380742328,390085540,399520360,409063193,418770499,428675907,438777420,
India,Urban population growth (annual %),SP.URB.GROW,2.33269452,2.586395997,3.046600207,3.068183386,3.090618878,3.090962279,3.096696794,3.106233214,3.124407961,3.160705594,3.212193157,3.421008338,3.939442907,3.948655723,3.955100349,3.93197646,3.906626346,3.885047808,3.872322765,3.87231447,3.883257243,3.68884013,3.2990764,3.289644215,3.264338661,3.223830885,3.18463914,3.143152245,3.105658147,3.06928187,3.026109537,2.938843616,2.798861113,2.764691834,2.735772468,2.706219973,2.684817027,2.657201156,2.625897038,2.589729309,2.550037547,2.637856268,2.857125371,2.812717403,2.772856331,2.726374115,2.684875537,2.645339419,2.600169759,2.54131719,2.481948564,2.424320654,2.389867921,2.360492261,2.345338456,2.337813711,2.329109667,
India,Rural population (% of total population),SP.RUR.TOTL.ZS,82.076,81.968,81.782,81.595,81.405,81.215,81.023,80.829,80.634,80.438,80.24,80.009,79.679,79.347,79.009,78.668,78.323,77.974,77.621,77.264,76.902,76.583,76.353,76.121,75.887,75.652,75.415,75.177,74.937,74.695,74.453,74.222,74.016,73.809,73.601,73.393,73.183,72.972,72.76,72.547,72.333,72.082,71.756,71.428,71.097,70.765,70.431,70.094,69.754,69.413,69.07,68.724,68.369,68.006,67.634,67.253,66.864,
India,Rural population growth (annual %),SP.RUR.TOTL.ZG,1.862959892,1.85398728,1.793209309,1.818039401,1.830454436,1.840693378,1.843103489,1.849406722,1.870843484,1.910340714,1.958659274,1.970458804,1.888869533,1.910538469,1.904894772,1.88799405,1.862760091,1.841283028,1.82863574,1.828671295,1.833986132,1.901541518,2.02089687,2.009014102,1.981289528,1.94382016,1.902191785,1.863651984,1.823699455,1.784886608,1.749810561,1.727945975,1.724974895,1.691142947,1.66253707,1.638394503,1.612108349,1.584731477,1.553640094,1.517659864,1.478128583,1.387118993,1.242896586,1.199947699,1.156557671,1.116190491,1.075783817,1.032447394,0.983445017,0.930143758,0.871429217,0.809676572,0.743307652,0.687062034,0.64081614,0.602608241,0.568122552,
India,Rural population,SP.RUR.TOTL,368915704,375819151,382619162,389638947,396836786,404208976,411728045,419413419,427333846,435575853,444191399,453030810,461669299,470574466,479624336,488765637,497955495,507209197,516569528,526102787,535840460,546127182,557276124,568585099,579962756,591346470,602702680,614040279,625341263,636603102,647840480,659132089,670600582,682037834,693471749,704927138,716383423,727826609,739222713,750527164,761703316,772342667,782001991,791442131,800648753,809635580,818392527,826885768,835057853,842861327,850238363,857150489,863545492,869499014,875088795,880378073,885393934,
India,Completeness of death registration with cause-of-death information (%),SP.REG.DTHS.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,,,,,,,,,,
India,Completeness of birth registration (%),SP.REG.BRTH.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,41.1,,,,,83.6,,,71.9,,,
India,"Completeness of birth registration, urban (%)",SP.REG.BRTH.UR.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,59.3,,,,,,,,83.2,,,
India,"Completeness of birth registration, rural (%)",SP.REG.BRTH.RU.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34.8,,,,,,,,67.1,,,
India,"Population, male (% of total)",SP.POP.TOTL.MA.ZS,51.59934439,51.62421075,51.64783044,51.66998007,51.69042604,51.7090407,51.72560973,51.74021868,51.75335565,51.76565029,51.77742747,51.78897901,51.79993153,51.80920793,51.81545734,51.81792505,51.81652145,51.811969,51.80535045,51.79805239,51.79106969,51.78473253,51.77895281,51.77375808,51.76906496,51.76485751,51.76112331,51.75804911,51.75601222,51.75546252,51.75663484,51.75964953,51.76423329,51.76975106,51.77538773,51.78060279,51.78520498,51.78939305,51.79349488,51.79798105,51.80315214,51.80884649,51.81484473,51.82125766,51.82822299,51.83570691,51.84386226,51.85230342,51.85985724,51.86504987,51.86693384,51.86514123,51.86013821,51.85285197,51.84458144,51.83623459,51.82802855,
India,"Population, male",SP.POP.TOTL.MA.IN,231929047,236694406,241635685,246738607,251982833,257357118,262849859,268474706,274275870,280313624,286628713,293242049,300134767,307259132,314545866,321945660,329434797,337029102,344765790,352701125,360871637,369286265,377918014,386723603,395642595,404628638,413665289,422755988,431898395,441096298,450351808,459654091,468994879,478382432,487829903,497343781,506921859,516550160,526208463,535870426,545513566,555120317,564681863,574193966,583656162,593062003,602414128,611691895,620838676,629781810,638471941,646880728,655027697,662970969,670795935,678564292,686291907,
India,"Population, female (% of total)",SP.POP.TOTL.FE.ZS,48.40065561,48.37578925,48.35216956,48.33001993,48.30957396,48.2909593,48.27439027,48.25978132,48.24664435,48.23434971,48.22257253,48.21102099,48.20006847,48.19079207,48.18454266,48.18207495,48.18347855,48.188031,48.19464955,48.20194761,48.20893031,48.21526747,48.22104719,48.22624192,48.23093504,48.23514249,48.23887669,48.24195089,48.24398778,48.24453748,48.24336516,48.24035047,48.23576671,48.23024894,48.22461227,48.21939721,48.21479502,48.21060695,48.20650512,48.20201895,48.19684786,48.19115351,48.18515527,48.17874234,48.17177701,48.16429309,48.15613774,48.14769658,48.14014276,48.13495013,48.13306616,48.13485877,48.13986179,48.14714803,48.15541856,48.16376541,48.17197145,
India,"Population, female",SP.POP.TOTL.FE.IN,217551561,221800557,226216852,230789363,235501702,240345247,245312076,250415073,255691447,261191452,266949800,272982763,279276746,285799794,292504389,299356060,306336937,313455928,320736494,328214679,335911880,343831767,351949999,360225464,368602607,377038033,385516147,394036753,402590927,411173736,419781672,428400784,437026227,445675385,454374346,463139014,471971358,480855158,489765579,498668788,507537346,516357538,525125249,533833882,542479615,551056671,559563591,567989344,576308230,584488322,592508750,600355301,608038155,615591238,623063359,630489688,637879447,
India,"Population, total",SP.POP.TOTL,449480608,458494963,467852537,477527970,487484535,497702365,508161935,518889779,529967317,541505076,553578513,566224812,579411513,593058926,607050255,621301720,635771734,650485030,665502284,680915804,696783517,713118032,729868013,746949067,764245202,781666671,799181436,816792741,834489322,852270034,870133480,888054875,906021106,924057817,942204249,960482795,978893217,997405318,1015974042,1034539214,1053050912,1071477855,1089807112,1108027848,1126135777,1144118674,1161977719,1179681239,1197146906,1214270132,1230980691,1247236029,1263065852,1278562207,1293859294,1309053980,1324171354,
India,Technicians in R&D (per million people),SP.POP.TECH.RD.P6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,111.11821,,99.03159,,85.47377,,,,,92.46314,,,,,100.8851,,,,,95.48373,,
India,Researchers in R&D (per million people),SP.POP.SCIE.RD.P6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,152.48388,,115.63131,,110.05039,,,,,135.2997,,,,,156.63804,,,,,215.85286,,
India,Population growth (annual %),SP.POP.GROW,1.946992987,1.98565941,2.020384857,2.046957974,2.063583274,2.074367085,2.079792876,2.089132228,2.112384986,2.153710175,2.205114997,2.258760336,2.3021762,2.328080768,2.331781668,2.32052454,2.302276466,2.287869451,2.282378521,2.289659284,2.30361073,2.317217951,2.32167642,2.313328572,2.289168329,2.253971506,2.215960108,2.179738085,2.143456764,2.108347059,2.074320724,2.038691209,2.002906432,1.971204062,1.944743372,1.921399359,1.898649353,1.873466192,1.844585364,1.81083241,1.773545774,1.734728697,1.696185068,1.658100247,1.621038435,1.584251766,1.548885996,1.5120782,1.469688199,1.420203435,1.366797957,1.31187648,1.261205511,1.219418944,1.189328211,1.167527075,1.148214693,
India,"Age dependency ratio, young (% of working-age population)",SP.POP.DPND.YG,71.16454351,72.05186402,73.08663212,74.06968884,74.68993931,74.81885137,75.17188501,74.98715683,74.43672918,73.78183589,73.16191654,72.89573886,72.55926794,72.15328127,71.63324124,70.9878264,70.76353243,70.34279818,69.80064586,69.23329511,68.69364121,68.50719326,68.31659705,68.08932006,67.75818249,67.29359868,67.19620519,66.85312313,66.34097047,65.7517966,65.12314526,64.62425383,64.05936438,63.41036257,62.64405165,61.7578061,60.9713715,60.0865319,59.12200712,58.10748608,57.06735155,56.22667269,55.32445614,54.38736076,53.44259911,52.50384642,51.69977248,50.88814093,50.06170053,49.1946887,48.27253584,47.41625001,46.4716307,45.48317783,44.51838826,43.61502645,42.72254493,
India,"Age dependency ratio, old (% of working-age population)",SP.POP.DPND.OL,5.401790393,5.526597963,5.65267984,5.76059987,5.826113246,5.83997255,5.9218819,5.956253061,5.959255647,5.951546824,5.944001325,6.024752385,6.095035849,6.149583314,6.181695224,6.190262767,6.262086041,6.308575094,6.335097671,6.347879269,6.351354185,6.410275914,6.450915931,6.474584839,6.482860823,6.478583424,6.530299945,6.561413214,6.57587084,6.578344314,6.572819565,6.653981443,6.720539924,6.773733465,6.815096984,6.847213759,6.94730756,7.031514112,7.103483262,7.167691002,7.227719189,7.333514758,7.429075258,7.512734697,7.581407393,7.635727341,7.727215495,7.804622805,7.871905263,7.932215906,7.989808854,8.09591392,8.191780404,8.292575681,8.417708867,8.577970717,8.800302181,
India,Age dependency ratio (% of working-age population),SP.POP.DPND,76.5663339,77.57846198,78.73931196,79.83028871,80.51605256,80.65882392,81.09376691,80.94340989,80.39598482,79.73338271,79.10591786,78.92049124,78.65430379,78.30286459,77.81493646,77.17808916,77.02561847,76.65137328,76.13574353,75.58117438,75.04499539,74.91746918,74.76751298,74.5639049,74.24104331,73.77218211,73.72650514,73.41453635,72.91684131,72.33014092,71.69596483,71.27823527,70.77990431,70.18409603,69.45914864,68.60501986,67.91867906,67.11804601,66.22549038,65.27517708,64.29507074,63.56018745,62.7535314,61.90009546,61.02400651,60.13957376,59.42698798,58.69276373,57.93360579,57.1269046,56.2623447,55.51216393,54.6634111,53.77575351,52.93609713,52.19299717,51.52284711,
India,Sex ratio at birth (male births per female births),SP.POP.BRTH.MF,,,1.06,,,,,1.06,,,,,1.06,,,,,1.06,,,,,1.065,,,,,1.07,,,1.082,,1.09,,,,,1.099,,,,,1.107,,,,,1.109,1.109,1.109,1.109,1.109,1.109,1.108,1.108,1.107,,
India,"Population ages 80 and above, male (% of male population)",SP.POP.80UP.MA.5Y,0.262127577,0.268038865,0.265363124,0.257729426,0.248662576,0.237657308,0.260027144,0.280026747,0.292983481,0.294527602,0.283364843,0.297759822,0.304712117,0.306141596,0.304092375,0.298230766,0.321555586,0.340713014,0.352786161,0.355207823,0.346999836,0.366043399,0.37720774,0.380778412,0.377499802,0.367209055,0.388491869,0.403601616,0.410629216,0.408033577,0.395197699,0.417054482,0.431695544,0.438551015,0.437533452,0.428497163,0.453270451,0.471700171,0.482819675,0.486068251,0.481215532,0.508633339,0.529231624,0.542337466,0.547801811,0.545565723,0.577855972,0.60348192,0.621441147,0.631249101,0.632832043,0.671059562,0.702430605,0.72618474,0.741870473,0.749110887,0.790350714,
India,"Population ages 80 and above, female (% of female population)",SP.POP.80UP.FE.5Y,0.373974328,0.377628448,0.371619973,0.361085963,0.351322303,0.342283865,0.367703862,0.39217407,0.409056699,0.411909342,0.399034577,0.408917029,0.409414683,0.404207783,0.397178653,0.388712695,0.411551086,0.431580931,0.444933466,0.447893126,0.439318189,0.455782202,0.463838899,0.465040971,0.461436241,0.453333842,0.475728196,0.492891332,0.502930608,0.504132152,0.495626446,0.520760715,0.539179767,0.550308608,0.554079481,0.550464097,0.578734694,0.601167928,0.61723039,0.626615919,0.629197642,0.659143085,0.682712553,0.699443054,0.709312373,0.712478989,0.747403886,0.775225459,0.795925124,0.810086845,0.818001595,0.864176924,0.903846077,0.936462484,0.96207599,0.980813025,1.035573574,
India,"Population ages 75-79, male (% of male population)",SP.POP.7579.MA.5Y,0.391378312,0.419729818,0.452909099,0.480383271,0.492375608,0.48787032,0.486901903,0.47596401,0.463927062,0.459583795,0.465052503,0.487575029,0.512479451,0.533845164,0.546122895,0.548744784,0.555138985,0.55478533,0.552005173,0.551079043,0.553447758,0.56646867,0.578573108,0.587842577,0.59242282,0.592454604,0.597556064,0.598686966,0.597900575,0.596953776,0.5966109,0.607289924,0.616233806,0.623712079,0.629810104,0.634803351,0.647350659,0.657449023,0.666385517,0.675225545,0.684472073,0.699949702,0.713988753,0.726863439,0.738527119,0.749223013,0.764841462,0.778035647,0.79037682,0.803367124,0.817812295,0.837840075,0.856909417,0.874284438,0.88887032,0.9010676,0.917418218,
India,"Population ages 75-79, female (% of female population)",SP.POP.7579.FE.5Y,0.451397352,0.486966315,0.531165116,0.568811739,0.584764354,0.57649611,0.565297065,0.539879634,0.513615142,0.500177927,0.503124934,0.52547274,0.554765847,0.581736954,0.597090866,0.599092269,0.599782712,0.591901078,0.58268954,0.579812271,0.5859495,0.602875068,0.62157693,0.638236944,0.649474522,0.655366776,0.662974309,0.666056143,0.666542839,0.666486881,0.667429323,0.679008557,0.689349931,0.6985811,0.706918876,0.715194982,0.730536278,0.744270478,0.757591213,0.771827935,0.788081123,0.806993546,0.825247691,0.843737005,0.863575682,0.885748101,0.910606249,0.93456947,0.958051734,0.981714911,1.006405902,1.034895996,1.063849029,1.091428952,1.114576532,1.132649766,1.146595022,
India,"Population ages 70-74, male (% of male population)",SP.POP.7074.MA.5Y,0.910942377,0.904058121,0.87875597,0.850987208,0.838192818,0.846074516,0.87291047,0.909462195,0.945507154,0.969820497,0.979556437,0.983423087,0.977504219,0.969164695,0.966404366,0.972260359,0.985364937,1.001883223,1.018039809,1.029439293,1.035074133,1.037406574,1.034557723,1.030158997,1.028081931,1.030051163,1.034535443,1.040107562,1.046136552,1.05181545,1.057262317,1.067244927,1.075421122,1.083141369,1.092042124,1.103093109,1.118119467,1.133174359,1.147959488,1.162122541,1.176065716,1.189706413,1.201986894,1.214217743,1.228071342,1.244750966,1.26295694,1.282823763,1.3029934,1.321739671,1.339166298,1.351743464,1.364915265,1.380223636,1.39851637,1.420885402,1.440585102,
India,"Population ages 70-74, female (% of female population)",SP.POP.7074.FE.5Y,1.02145439,0.998769809,0.950659949,0.899890686,0.871405171,0.873224258,0.899752259,0.942658497,0.986795612,1.015104039,1.022407588,1.018173814,1.000927234,0.982139627,0.974501268,0.98250158,1.000686372,1.027628685,1.057074597,1.081516823,1.098268084,1.10337856,1.103291948,1.102149178,1.103848686,1.109920388,1.111145942,1.11442574,1.119942524,1.127222535,1.136301624,1.145814188,1.155669998,1.167602292,1.183150211,1.203065345,1.223005568,1.244308993,1.268235101,1.296059462,1.328481358,1.354921057,1.383306554,1.413665425,1.445830745,1.479946515,1.506113904,1.533965574,1.561530014,1.585661966,1.605672329,1.614952002,1.622054954,1.630980492,1.64586359,1.669254259,1.689854256,
India,Population ages 65 and above (% of total),SP.POP.65UP.TO.ZS,3.059354676,3.112200602,3.16252747,3.203353512,3.227476539,3.232597458,3.270063902,3.29177673,3.303430313,3.311319652,3.318707386,3.367279144,3.411636731,3.448953739,3.476476919,3.49380829,3.537389726,3.571200708,3.596713276,3.615353008,3.628412324,3.664743118,3.691141346,3.709005503,3.720627873,3.728205139,3.758954306,3.783658136,3.802909416,3.817291786,3.828173581,3.884896077,3.935205346,3.980238825,4.021675453,4.061097211,4.137304795,4.207513359,4.273401899,4.336822461,4.399230699,4.4836796,4.564616936,4.640352234,4.70824665,4.768170142,4.846867894,4.918071008,4.984313011,5.048286241,5.113073703,5.205968276,5.29652123,5.392641877,5.504069363,5.636245344,5.80790445,
India,"Population ages 65 and above, total",SP.POP.65UP.TO,13751206,14269283,14795965,15296909,15733449,16088714,16617220,17080693,17507101,17930964,18371651,19066370,19767416,20454328,21103962,21707091,22489724,23230126,23936209,24617510,25282179,26133944,26940460,27704382,28434720,29142137,30040865,30904645,31734873,32533634,33310220,34500009,35653791,36779708,37892397,39006140,40499796,41965962,43416654,44866129,46326139,48041634,49745520,51416395,53021250,54553525,56319525,58017561,59669549,61299832,62940950,64930712,66898551,68948281,71214913,73781494,76906607,
India,"Population ages 65 and above, male (% of total)",SP.POP.65UP.MA.ZS,2.920243066,2.978796212,3.031873802,3.074560982,3.102146261,3.113152662,3.159149794,3.190523222,3.211646691,3.22684813,3.238335732,3.289777529,3.334204875,3.369587434,3.39402551,3.407472895,3.447935991,3.476915802,3.496189388,3.507569729,3.512551998,3.548140076,3.572273747,3.586292085,3.592530806,3.593166078,3.624968666,3.648771262,3.664801979,3.67346022,3.676060484,3.728854637,3.772484254,3.807412199,3.834631088,3.855527033,3.916893819,3.969057309,4.013697499,4.052817059,4.088241883,4.157691105,4.221377827,4.278346081,4.327165009,4.368399916,4.441509734,4.508251814,4.569986054,4.627910592,4.684440187,4.771448046,4.854145747,4.941371581,5.044145929,5.168313645,5.337639934,
India,"Population ages 65 and above, male",SP.POP.65UP.MA.IN,6772892,7050644,7326089,7586129,7816876,8011920,8303821,8565748,8808772,9045295,9282000,9647011,10007108,10353365,10675767,10970211,11358701,11718218,12053665,12371238,12675804,13102794,13500266,13869038,14213582,14538979,14995237,15425399,15828221,16203497,16555205,17139833,17692758,18213991,18706477,19175224,19855591,20502172,21120416,21717848,22301914,23080188,23837355,24566005,25255765,25907320,26756282,27576611,28372241,29145739,29908836,30865578,31795999,32759859,33835926,35070331,36631791,
India,"Population ages 65 and above, female (% of total)",SP.POP.65UP.FE.ZS,3.207662529,3.25445125,3.301953841,3.340955507,3.361533682,3.360496661,3.388892195,3.400310038,3.40185643,3.401954338,3.40500425,3.450509084,3.494811929,3.534234915,3.565107848,3.586659001,3.63355919,3.672528442,3.704719052,3.73114296,3.752882419,3.789945622,3.818737047,3.840709596,3.858098626,3.873125977,3.902711779,3.928346247,3.951027928,3.971551588,3.991365026,4.052262864,4.109753111,4.165684188,4.222452983,4.281849146,4.374044867,4.463655334,4.552384428,4.641967094,4.73348834,4.834072171,4.933638594,5.029690875,5.118247292,5.198413976,5.283268003,5.359386813,5.430576437,5.501162785,5.57495736,5.674068301,5.77296651,5.878556543,5.999184889,6.139857576,6.313845371,
India,"Population ages 65 and above, female",SP.POP.65UP.FE.IN,6978320,7218391,7469576,7710570,7916469,8076794,8313362,8514889,8698256,8885614,9089652,9419295,9760197,10100836,10428097,10736881,11130934,11511758,11882386,12246159,12606378,13031037,13440045,13835214,14221052,14603158,15045584,15479128,15906480,16329977,16755019,17359926,17960699,18565429,19185743,19830914,20644239,21463717,22296012,23148041,24024221,24961096,25907782,26850194,27765448,28646207,29563244,30440746,31296859,32153654,33032110,34064570,35101839,36187879,37378723,38711169,40274722,
India,"Population ages 65-69, male (% of male population)",SP.POP.6569.MA.5Y,1.3557948,1.386969407,1.434845608,1.485461078,1.52291526,1.541550518,1.539310277,1.52507027,1.509228994,1.502916237,1.510361949,1.521019591,1.539509088,1.56043598,1.577405875,1.588236986,1.585876482,1.579534235,1.573358245,1.571843569,1.57703027,1.578221433,1.581935176,1.587512098,1.594526254,1.603451257,1.60438529,1.606375118,1.610135636,1.616657417,1.626989568,1.637265304,1.649133782,1.662007737,1.675245408,1.68913341,1.698153242,1.706733756,1.716532819,1.729400722,1.746488562,1.75940165,1.776170555,1.794927434,1.812764737,1.828860214,1.835855359,1.843910484,1.855174687,1.871554696,1.894629552,1.910804946,1.929890461,1.960678767,2.014888766,2.097249756,2.1892859,
India,"Population ages 65-69, female (% of female population)",SP.POP.6569.FE.5Y,1.360836459,1.391086678,1.448508803,1.51116712,1.554041854,1.568492428,1.556139008,1.525597838,1.492388977,1.47476303,1.480437151,1.4979455,1.529704165,1.56615055,1.596337061,1.616352457,1.62153902,1.621417748,1.62002145,1.62192074,1.629346646,1.627909791,1.63002927,1.635282503,1.643339177,1.654504971,1.652863332,1.654973032,1.661611958,1.673710019,1.692007633,1.706679404,1.725553415,1.749192188,1.778304415,1.813124723,1.841768326,1.873907935,1.909327724,1.947463778,1.987728217,2.013014482,2.042371796,2.072845391,2.099528493,2.12024037,2.119143964,2.11562631,2.115069566,2.123699064,2.144877534,2.16004338,2.18321645,2.219684615,2.276668777,2.357140527,2.441822518,
India,"Population ages 60-64, male (% of male population)",SP.POP.6064.MA.5Y,2.210931317,2.208927151,2.184629734,2.154064587,2.137126945,2.141900337,2.147683804,2.169164827,2.197478011,2.220890611,2.234427582,2.226419794,2.213109494,2.200077512,2.194431942,2.199392303,2.195759835,2.200531355,2.211145131,2.224096091,2.237822013,2.234651748,2.232265912,2.232779926,2.238681876,2.251000083,2.248230469,2.251910386,2.260442749,2.271072341,2.282515963,2.281813463,2.281483329,2.28396369,2.291723406,2.3054405,2.310468323,2.321177663,2.335474592,2.349532725,2.361439541,2.358661649,2.357671611,2.360879916,2.370436401,2.387721343,2.397952073,2.41168227,2.438987862,2.494007893,2.582605287,2.685007323,2.817412323,2.961776148,3.092858621,3.197084225,3.262434207,
India,"School enrollment, secondary (gross), gender parity index (GPI)",SE.ENR.SECO.FM.ZS,,,,,,,,,,,,0.421860009,0.428880006,0.438190013,,0.46171999,0.465209991,0.471929997,0.478929996,,0.487459987,0.501590014,0.497550011,0.553759992,0.515850008,,0.538309991,0.54351002,0.556159973,0.570050001,,,,0.623600006,0.639729977,0.639100015,0.644569993,0.66494,,0.699859977,0.707449973,0.714070022,0.741630018,0.803870022,0.806699991,0.823660016,0.836189985,0.862339973,0.886690021,0.922580004,0.929170012,0.944090009,0.951910019,1.009220004,1.013280034,1.012420058,,
India,"School enrollment, primary and secondary (gross), gender parity index (GPI)",SE.ENR.PRSC.FM.ZS,,,,,,,,,,,,0.578419983,0.582109988,0.591809988,,0.599810004,0.603559971,0.607760012,0.600220025,,0.611479998,0.619539976,0.616460025,0.640569985,0.627839983,,0.656910002,0.666400015,0.675140023,0.671630025,,,,0.73071003,0.742340028,0.742460012,0.749719977,0.761969984,,0.782060027,0.787299991,0.79509002,0.815699995,0.900110006,,,,0.929660022,0.954829991,0.978510022,0.978630006,0.989059985,0.995000005,1.064939976,1.063719988,1.066059947,,
India,"School enrollment, primary (gross), gender parity index (GPI)",SE.ENR.PRIM.FM.ZS,,,,,,,,,,,,0.642340004,0.644869983,0.653370023,0.654250026,0.65644002,0.661650002,0.663929999,0.652809978,0.66573,0.669629991,0.676689982,0.676400006,0.684249997,0.687219977,0.702180028,0.723129988,0.73605001,0.741140008,0.725220025,0.736899972,0.759880006,0.770389974,0.800620019,0.809300005,0.81072998,0.820670009,0.828939974,0.834529996,0.837539971,0.843959987,0.854629993,0.872609973,0.972930014,,,,0.982360005,1.009989977,1.023390055,1.020550013,1.029309988,1.03452003,1.115650058,1.114070058,1.11916995,,
India,"Compulsory education, duration (years)",SE.COM.DURS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,8,8,8,8,8,8,8,
India,"Literacy rate, adult total (% of people ages 15 and above)",SE.ADT.LITR.ZS,,,,,,,,,,,,,,,,,,,,,,40.76359,,,,,,,,,,48.22207,,,,,,,,,,61.01456,,,,,62.75447,,,,,69.30256,,,,,,
India,"Literacy rate, adult male (% of males ages 15 and above)",SE.ADT.LITR.MA.ZS,,,,,,,,,,,,,,,,,,,,,,54.84102,,,,,,,,,,61.64192,,,,,,,,,,73.41186,,,,,75.1919,,,,,78.87723,,,,,,
India,"Literacy rate, adult female (% of females ages 15 and above)",SE.ADT.LITR.FE.ZS,,,,,,,,,,,,,,,,,,,,,,25.67625,,,,,,,,,,33.72953,,,,,,,,,,47.8421,,,,,50.82376,,,,,59.27732,,,,,,
India,"Literacy rate, youth total (% of people ages 15-24)",SE.ADT.1524.LT.ZS,,,,,,,,,,,,,,,,,,,,,,53.78457,,,,,,,,,,61.90028,,,,,,,,,,76.4257,,,,,81.13086,,,,,86.14488,,,,,,
India,"Literacy rate, youth male (% of males ages 15-24)",SE.ADT.1524.LT.MA.ZS,,,,,,,,,,,,,,,,,,,,,,66.31487,,,,,,,,,,73.50972,,,,,,,,,,84.19224,,,,,88.41184,,,,,90.04483,,,,,,
India,"Literacy rate, youth (ages 15-24), gender parity index (GPI)",SE.ADT.1524.LT.FM.ZS,,,,,,,,,,,,,,,,,,,,,,0.60803,,,,,,,,,,0.67133,,,,,,,,,,0.80467,,,,,0.84102,,,,,0.90899,,,,,,
India,"Literacy rate, youth female (% of females ages 15-24)",SE.ADT.1524.LT.FE.ZS,,,,,,,,,,,,,,,,,,,,,,40.32152,,,,,,,,,,49.34919,,,,,,,,,,67.74658,,,,,74.35573,,,,,81.84981,,,,,,
India,Real effective exchange rate index (2010 = 100),PX.REX.REER,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,Coverage of social insurance programs in richest quintile (% of population),per_si_allsi.cov_q5_tot,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,Coverage of social insurance programs in 4th quintile (% of population),per_si_allsi.cov_q4_tot,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,Coverage of social insurance programs in 3rd quintile (% of population),per_si_allsi.cov_q3_tot,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,Coverage of social insurance programs in 2nd quintile (% of population),per_si_allsi.cov_q2_tot,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,Coverage of social insurance programs in poorest quintile (% of population),per_si_allsi.cov_q1_tot,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,Coverage of social insurance programs (% of population),per_si_allsi.cov_pop_tot,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,Benefit incidence of social insurance programs to poorest quintile (% of total social insurance benefits),per_si_allsi.ben_q1_tot,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,Adequacy of social insurance programs (% of total welfare of beneficiary households),per_si_allsi.adq_pop_tot,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,Coverage of social safety net programs in richest quintile (% of population),per_sa_allsa.cov_q5_tot,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.54337109,,,,,9.569631912,,5.312702679,,,,,,
India,Coverage of social safety net programs in 4th quintile (% of population),per_sa_allsa.cov_q4_tot,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.68668415,,,,,16.41149944,,13.21921967,,,,,,
India,Coverage of social safety net programs in 3rd quintile (% of population),per_sa_allsa.cov_q3_tot,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.76922262,,,,,19.87727543,,18.14951273,,,,,,
India,Coverage of social safety net programs in 2nd quintile (% of population),per_sa_allsa.cov_q2_tot,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27.09335284,,,,,19.60785986,,23.11276092,,,,,,
India,Coverage of social safety net programs in poorest quintile (% of population),per_sa_allsa.cov_q1_tot,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,29.06915773,,,,,20.75439947,,26.55621833,,,,,,
India,Coverage of social safety net programs (% of population),per_sa_allsa.cov_pop_tot,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24.032302,,,,,17.24391696,,17.2699577,,,,,,
India,Benefit incidence of social safety net programs to poorest quintile (% of total safety net benefits),per_sa_allsa.ben_q1_tot,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,Adequacy of social safety net programs (% of total welfare of beneficiary households),per_sa_allsa.adq_pop_tot,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,Coverage of unemployment benefits and ALMP in richest quintile (% of population),per_lm_alllm.cov_q5_tot,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.764870446,,,,,9.36485562,,27.96398688,,,,,,
India,Coverage of unemployment benefits and ALMP in 4th quintile (% of population),per_lm_alllm.cov_q4_tot,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3.868224541,,,,,5.177578856,,17.40285879,,,,,,
India,Coverage of unemployment benefits and ALMP in 3rd quintile (% of population),per_lm_alllm.cov_q3_tot,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2.56745788,,,,,3.376896965,,12.31536739,,,,,,
India,Coverage of unemployment benefits and ALMP in 2nd quintile (% of population),per_lm_alllm.cov_q2_tot,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2.086461171,,,,,2.314483656,,9.232475306,,,,,,
India,Coverage of unemployment benefits and ALMP in poorest quintile (% of population),per_lm_alllm.cov_q1_tot,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.500488119,,,,,1.962462118,,5.510413493,,,,,,
India,Coverage of unemployment benefits and ALMP (% of population),per_lm_alllm.cov_pop_tot,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3.557524133,,,,,4.439384156,,14.48515261,,,,,,
India,Benefit incidence of unemployment benefits and ALMP to poorest quintile (% of total U/ALMP benefits),per_lm_alllm.ben_q1_tot,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,Adequacy of unemployment benefits and ALMP (% of total welfare of beneficiary households),per_lm_alllm.adq_pop_tot,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,Coverage of social protection and labor programs (% of population),per_allsp.cov_pop_tot,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27.22058407,,,,,21.45402606,,29.70666052,,,,,,
India,Benefit incidence of social protection and labor programs to poorest quintile (% of total SPL benefits),per_allsp.ben_q1_tot,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,Adequacy of social protection and labor programs (% of total welfare of beneficiary households),per_allsp.adq_pop_tot,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,"2005 PPP conversion factor, private consumption (LCU per international $)",PA.NUS.PRVT.PP.05,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.60153979,,,,,,,,,,,,
India,"PPP conversion factor, private consumption (LCU per international $)",PA.NUS.PRVT.PP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5.417302327,5.918067466,6.421192229,6.633900961,7.125527804,7.639777196,8.088520336,8.470000107,9.444054265,9.673417687,9.732610612,9.81388147,10.08497584,10.23642004,10.34508791,10.43049655,10.72550622,11.0922938,11.57435088,12.87912956,14.19089615,14.97516165,16.03783847,17.53039769,18.39763092,19.2775294,19.97807826,
India,Price level ratio of PPP conversion factor (GDP) to market exchange rate,PA.NUS.PPPC.RF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.320893087,0.25860149,0.255761831,0.231113099,0.248617002,0.249221561,0.24817419,0.248211372,0.234294639,0.230862452,0.221912742,0.214516091,0.215897699,0.231603451,0.24372443,0.249790401,0.252347364,0.292166446,0.272562377,0.278141851,0.311838769,0.315295527,0.294312945,0.27658165,0.27706946,0.260045539,0.259683304,
India,"2005 PPP conversion factor, GDP (LCU per international $)",PA.NUS.PPP.05,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.66854168,,,,,,,,,,,,
India,"PPP conversion factor, GDP (LCU per international $)",PA.NUS.PPP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5.759549577,6.340546488,6.755002444,7.248700576,7.806002043,8.339501724,8.810382269,9.223112615,9.854947953,10.00423967,10.13819459,10.23104463,10.45076562,10.64275756,10.95097736,11.05912031,11.41859204,11.76282564,12.53612494,13.19607855,14.20806038,15.10943462,16.01330243,16.73371534,16.94102424,17.02479135,17.41747859,
India,"Official exchange rate (LCU per US$, period average)",PA.NUS.FCRF,4.761900004,4.761900004,4.761900004,4.761900004,4.761900004,4.761900004,6.359125005,7.500000007,7.500000007,7.500000007,7.500000007,7.491935231,7.594468374,7.742038562,8.101603227,8.375891946,8.960412728,8.738576171,8.192840348,8.125790946,7.862944701,8.658522817,9.455131933,10.09889824,11.36258333,12.36875,12.61083333,12.9615,13.91708333,16.2255,17.5035,22.74243333,25.91808333,30.49329167,31.3737425,32.42707667,35.43317333,36.31328583,41.259365,43.05542833,44.941605,47.18641417,48.61031917,46.58328417,45.31646667,44.099975,45.30700833,41.34853333,43.50518333,48.40526667,45.72581212,46.67046667,53.43723333,58.59784542,61.02951446,64.15194446,67.19531281,
India,DEC alternative conversion factor (LCU per US$),PA.NUS.ATLS,4.7619,4.7619,4.7619,4.7619,4.7619,4.762,7,7.5,7.5,7.5,7.5,7.4416,7.7306,7.863,7.9756,8.6534,8.9383,8.5625,8.2062,8.0764,7.8928,8.9294,9.6283,10.3121,11.8868,12.2374,12.7865,12.9685,14.4767,16.6624,17.9485,24.5186,26.4113,31.3643,31.3977,33.4622,35.5008,37.1583,42.0622,43.3342,45.6855,47.6936,48.4061,45.9525,44.9318,44.2736,45.2495,40.2607,45.9936,47.4437,45.5622,47.9215,54.4091,60.5019,61.1436,65.4685,67.072,
India,Terms of trade adjustment (constant LCU),NY.TTF.GNFS.KN,27514800701,27463656776,27304413880,29599095915,27671587877,23835152377,29994240870,31480795527,32468675608,31839432309,16845544048,62606726394,1.09E+11,17229562585,-1.38E+11,-1.99E+11,-1.88E+11,-51367472145,-1.50E+11,-2.21E+11,-3.23E+11,-2.24E+11,-2.11E+11,-19477197609,-1.51E+11,-1.19E+11,53352455630,-5587579271,24533772224,-16755778483,-1.70E+11,-44239968446,67151470887,3.71E+11,5.58E+11,3.80E+11,96117775088,5.97E+11,8.03E+11,3.99E+11,2.82E+11,2.22E+11,-2.21E+11,1.68E+11,-5.63E+11,-5.78E+11,-6.61E+11,-7.03E+11,41789373886,-2.18E+11,1.50E+11,0,-3.01E+11,-1.01E+12,-1.52E+12,-1.29E+12,-9.88E+11,
India,Net current transfers from abroad (constant LCU),NY.TRF.NCTR.KN,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
India,Net current transfers from abroad (current LCU),NY.TRF.NCTR.CN,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,92753800800,1.02E+11,1.65E+11,2.54E+11,2.85E+11,4.39E+11,4.40E+11,4.32E+11,5.31E+11,5.87E+11,7.34E+11,7.93E+11,9.93E+11,9.22E+11,1.09E+12,1.36E+12,1.68E+12,2.03E+12,2.47E+12,2.42E+12,3.05E+12,3.50E+12,3.96E+12,4.05E+12,4.13E+12,3.76E+12,
India,Net current transfers from abroad (current US$),NY.TRF.NCTR.CD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3782997431,3852004862,5265005596,8093012889,8506012710,12367011611,11830010611,10279991853,12255990573,12854000000,15397994620,16386994358,21608000000,20524977161,24521385205,30000110498,41604095309,44182016628,52085524527,53114423799,63625303882,64342361848,65438936628,66262699612,63096450965,56049171040,
India,HFC gas emissions (thousand metric tons of CO2 equivalent),EN.ATM.HFCG.KT.CE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1702.1,,,,,,,,,,8107.2,,,,,9845.2,,,13553.7,,13425,,,,,,,
India,Total greenhouse gas emissions (% change from 1990),EN.ATM.GHGT.ZG,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.028801738,7.139310354,9.684215728,13.95850753,19.03824095,23.17080002,26.96937941,27.50475211,40.98880861,35.88203053,35.19092885,38.19616575,42.45994632,50.66868304,52.62387195,60.93451502,71.69238453,75.7794302,87.01835222,99.76308558,103.8996171,116.4448552,,,,,
India,Total greenhouse gas emissions (kt of CO2 equivalent),EN.ATM.GHGT.KT.CE,,,,,,,,,,,746498.11,754018.475,767242.36,773571.615,796885.36,827298.045,852598.24,871680.045,875174.32,905452.595,929414.77,979738.35,1011305.49,1059291.57,1117754.1,1140356.79,1199500.61,1202058.62,1305250.63,1365390.78,1387371.82,1443266.28,1486420.6,1521727.9,1581028.22,1651503.01,1708836.97,1761537.39,1768965,1956039,1885189,1875600.85,1917294.66,1976449.15,2090334.85,2117460.59,2232760.11,2382011.76,2438714.28,2594639.917,2771456.756,2828845.829,3002894.928,,,,,
India,Other greenhouse gas emissions (% change from 1990),EN.ATM.GHGO.ZG,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.117011414,0.089360913,-0.625526392,-2.099981458,-2.59146648,-3.172312415,-2.122321686,-23.65294009,214.246587,26.50377662,-34.80741606,-19.48849813,4.404376004,41.10937106,-19.09039527,10.7070012,102.1576192,13.41217945,66.41280721,243.2754796,243.2754796,243.2754796,,,,,
India,"Other greenhouse gas emissions, HFC, PFC and SF6 (thousand metric tons of CO2 equivalent)",EN.ATM.GHGO.KT.CE,,,,,,,,,,,33066.87,33612.525,34174.95,34226.375,34382.2,35135.625,36162.25,37051.475,37739.4,38535.925,39018.85,39369.38,39680.9,39989.82,49832.15,43290.68,42751.4,42938.13,43092.85,44442.58,44762.3,45262.3,44802.3,44482.3,43822.3,43602.3,43342.3,43812.3,34174.7,140664,56626,29181.7,36038.8,46733.8,63163.8,36217,49555,90490.4,50765.9,74490.2,153658,153658,153658,,,,,
India,CO2 emissions from solid fuel consumption (% of total),EN.ATM.CO2E.SF.ZS,80.61612383,80.48705042,79.6186484,79.27128204,77.77615501,77.61428161,75.33784505,76.48711944,73.11644841,71.55024899,70.03532772,68.22286742,68.23155131,67.94978669,69.44281988,70.76305688,70.83617154,70.36584404,68.25818318,67.29740746,69.51525697,68.65652259,67.42739677,67.92396188,65.9782126,65.66713936,66.03890015,66.09188499,66.50332249,64.88470332,65.48135864,66.05604769,65.09863987,66.20286389,65.91942228,64.29704268,63.24954699,63.61151625,61.92706905,62.26781269,61.41391455,61.84309237,62.80752281,62.96341996,64.20266467,65.27852764,65.63524008,66.20651387,64.23810092,62.60163288,63.58888955,65.74303594,67.66324341,65.36092358,66.68900134,,,
India,CO2 emissions from solid fuel consumption (kt),EN.ATM.CO2E.SF.KT,97208.503,104956.874,114227.05,122144.103,117167.984,128818.043,129404.763,131740.642,136973.451,136463.738,136669.09,140449.767,148641.845,152440.857,161102.311,178465.556,186855.652,196356.849,193236.232,199800.162,218289.176,232634.48,235751.43,257207.047,256073.944,280184.469,302175.468,322846.347,350847.559,375687.817,405430.854,434774.188,455096.702,479108.218,504106.157,521810.433,558066.062,583753.397,579774.702,620042.029,633701.604,643881.196,662153.857,692344.268,741104.367,798071.212,855698.117,931927.713,1007497.249,1088420.605,1093532.403,1210839.733,1365785.151,1329932.892,1492751.359,,,
India,CO2 emissions (kg per 2011 PPP $ of GDP),EN.ATM.CO2E.PP.GD.KD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.405481852,0.426538068,0.429495301,0.424449706,0.420514334,0.414843846,0.419355747,0.419185974,0.402745803,0.393548542,0.392726304,0.378029699,0.368760707,0.356590058,0.346855013,0.336149982,0.328071376,0.32259574,0.345979646,0.353558804,0.317163452,0.318534264,0.331036538,0.313670004,0.320970523,,,
India,CO2 emissions (kg per PPP $ of GDP),EN.ATM.CO2E.PP.GD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.627357455,0.638676975,0.628771818,0.606944381,0.588786808,0.568980139,0.564856688,0.555126991,0.527629183,0.507808925,0.495473369,0.466305131,0.447994422,0.42473919,0.402087367,0.377530138,0.357474484,0.342395795,0.360150191,0.365265819,0.323711695,0.318534264,0.325048969,0.303101439,0.304700765,,,
India,CO2 emissions (metric tons per capita),EN.ATM.CO2E.PC,0.268269551,0.284413565,0.306651555,0.32266942,0.309030714,0.333476589,0.338014194,0.331937527,0.353486004,0.35221154,0.352512006,0.363581819,0.375983444,0.378281792,0.382164002,0.405924503,0.414906217,0.428989682,0.42538707,0.436017668,0.450665384,0.475150142,0.479042022,0.506954362,0.507846102,0.545851321,0.572550746,0.598047761,0.632199768,0.679371884,0.7115628,0.741158963,0.771602203,0.783172984,0.811640203,0.844952257,0.901348777,0.92007238,0.921501664,0.962521771,0.979870442,0.97169808,0.967381128,0.992391683,1.025027608,1.068563218,1.121981504,1.19320986,1.310097833,1.431844254,1.397008906,1.47668635,1.598098637,1.591437853,1.730000432,,,
India,CO2 emissions from liquid fuel consumption (% of total),EN.ATM.CO2E.LF.ZS,16.13903841,16.35499564,17.36018812,17.60632095,18.6821479,18.5811184,20.78734442,18.99936129,22.57129994,23.79688912,25.30066146,26.95356335,27.04854565,27.54703411,26.15506204,24.5390834,24.06895114,24.58803122,26.6265981,27.86581525,26.50963998,26.49834419,27.02339874,26.21048962,27.3608526,27.38773581,26.65309622,26.1579461,25.3475408,26.05115993,25.56664396,25.30558806,26.92204802,25.843915,26.03767071,26.67193819,27.58174987,26.63243492,28.10309036,28.66970112,29.4375402,28.62868715,27.01748528,26.72353708,25.71715388,24.53958656,24.3075772,23.85178894,25.72100603,26.16038116,24.08905588,22.68061968,21.69112237,22.66481883,22.96796748,,,
India,CO2 emissions from liquid fuel consumption (kt),EN.ATM.CO2E.LF.KT,19460.769,21327.272,24906.264,27128.466,28144.225,30839.47,35705.579,32724.308,42284.177,45386.459,49372.488,55489.044,58925.023,61799.951,60677.849,61887.959,63490.438,68613.237,75378.852,82731.187,83244.567,89786.495,94483.922,99251.022,106192.653,116856.289,121957.086,127776.615,133724.489,150838.378,158297.056,166558.807,188208.775,187031.668,199118.1,216459.343,243360.455,244401.883,263107.25,285483.284,303752.278,298068.428,284834.225,293851.378,296858.318,300011.938,316902.14,335739.519,403403.003,454836.345,414257.323,417726.305,437836.133,461172.921,514109.733,,,
India,CO2 emissions (kt),EN.ATM.CO2E.KT,120581.961,130402.187,143467.708,154083.673,150647.694,165972.087,171765.947,172238.99,187336.029,190724.337,195143.072,205869.047,217849.136,224343.393,231992.755,252201.592,263785.645,279051.366,283096.067,296891.321,314016.211,338838.134,349637.449,378669.088,388118.947,426673.785,457571.927,488481.07,527563.956,579008.299,619154.615,658189.83,699087.881,723697.118,764730.848,811562.105,882324.204,917685.085,936221.77,995766.516,1031853.463,1041152.975,1054258.833,1099597.621,1154320.262,1222563.132,1303717.509,1407607.286,1568379.567,1738645.711,1719690.988,1841776.419,2018503.817,2034752.294,2238377.137,,,
India,CO2 emissions (kg per 2010 US$ of GDP),EN.ATM.CO2E.KD.GD,0.881792994,0.919380282,0.982692721,0.995720554,0.905993317,1.025175286,1.061550104,0.987214564,1.038559917,0.99244144,0.965634507,1.002244119,1.066468258,1.063221829,1.086594353,1.082224733,1.113415917,1.098180749,1.053894247,1.166345772,1.155770723,1.176469358,1.173188424,1.18428142,1.169164972,1.221144527,1.249874264,1.283411861,1.264365962,1.309762032,1.327139477,1.396056336,1.405735342,1.389221141,1.376340696,1.357781224,1.372548648,1.371992982,1.318184407,1.288081831,1.285390652,1.237288759,1.206951408,1.167116951,1.135254214,1.100216716,1.073775491,1.055853769,1.132389143,1.157195679,1.038073925,1.042560586,1.083480449,1.026639893,1.050534447,,,
India,CO2 emissions from gaseous fuel consumption (% of total),EN.ATM.CO2E.GF.ZS,0,0.002812069,0.007667928,0.007139627,0.014604936,0.17012439,0.181464956,0.283159463,0.401276254,0.522966296,0.473541792,0.527243904,0.553797468,0.521420749,0.586422192,0.687739909,0.870230069,0.889642303,0.968899367,1.021454245,0.792918618,0.851713166,1.248072829,1.385768516,1.591065844,1.688797215,2.255151025,2.617671346,2.884588651,3.200820788,3.410228316,3.582929411,3.902057773,3.733392787,3.79536213,4.815760342,4.508503317,5.019280334,5.087932318,4.253023407,4.255319149,4.188077837,4.474450346,4.549744383,4.299111142,4.129023744,3.795492325,3.746697998,4.023137659,5.248105489,5.833496814,4.964988044,3.871734269,5.007190718,4.141144245,,,
India,CO2 emissions from gaseous fuel consumption (kt),EN.ATM.CO2E.GF.KT,0,3.667,11.001,11.001,22.002,282.359,311.695,487.711,751.735,997.424,924.084,1085.432,1206.443,1169.773,1360.457,1734.491,2295.542,2482.559,2742.916,3032.609,2489.893,2885.929,4363.73,5247.477,6175.228,7205.655,10318.938,12786.829,15218.05,18533.018,21114.586,23582.477,27278.813,27018.456,29024.305,39082.886,39779.616,46061.187,47634.33,42350.183,43908.658,43604.297,47172.288,50028.881,49625.511,50479.922,49482.498,52738.794,63098.069,91245.961,100318.119,91443.979,78151.104,101883.928,92694.426,,,
India,CO2 intensity (kg per kg of oil equivalent energy use),EN.ATM.CO2E.EG.ZS,,,,,,,,,,,,1.356024117,1.402495027,1.404279931,1.397304983,1.466979682,1.475129512,1.517035884,1.51804988,1.522355844,1.569963127,1.61245188,1.601866107,1.680322869,1.653665731,1.727470145,1.789321556,1.839983674,1.884630109,1.975301272,2.025278198,2.066455991,2.117487638,2.140785394,2.178522355,2.186327753,2.306373732,2.307272817,2.298703657,2.311676141,2.340356419,2.328078585,2.28896965,2.331567739,2.323984249,2.368593406,2.399725558,2.452386556,2.60438403,2.621576834,2.480663848,2.548609021,2.66153159,2.622351787,2.714030011,,,
India,Energy use (kg of oil equivalent per capita),EG.USE.PCAP.KG.OE,,,,,,,,,,,,268.1234163,268.0818374,269.3777667,273.5007796,276.7076518,281.2676538,282.7814992,280.219429,286.4098231,287.0547568,294.6755482,299.052474,301.700567,307.1032391,315.9830707,319.982031,325.0288411,335.4503175,343.9332997,351.340769,358.6618665,364.3951392,365.8344205,372.564551,386.4709924,390.8077708,398.7705197,400.8788435,416.3739694,418.6842801,417.3819934,422.6273282,425.6327906,441.0647829,451.1383065,467.5457576,486.5504816,503.0355807,546.1767267,563.1592957,579.4087432,600.4432348,606.8742801,637.4286299,,,
India,Electric power consumption (kWh per capita),EG.USE.ELEC.KH.PC,,,,,,,,,,,,98.05645889,100.5951706,100.9225178,104.292848,114.8910388,124.4865032,126.630124,136.3256028,136.1563345,142.148885,152.3618744,158.6136095,166.2375729,183.9226463,194.2017047,208.7035465,220.9997603,240.8826509,257.9640152,273.0466135,291.9538052,305.5359287,321.7114714,342.4618392,360.0470532,361.0925011,376.8006779,387.1969004,393.3731989,394.9638097,395.1047593,411.9673978,431.8411318,453.0102057,469.4539231,510.7516179,543.3586454,562.8991702,600.2017021,642.1116154,698.5478127,724.7911885,765.5638456,805.5991906,,,
India,Combustible renewables and waste (% of total energy),EG.USE.CRNW.ZS,,,,,,,,,,,,63.08812812,63.07745016,62.73016683,61.74261009,61.00103863,60.00115288,59.67779675,60.22185393,58.90836665,58.2254304,56.18064361,54.82990826,53.83430727,52.39936654,50.47482497,49.42039807,48.25701856,46.39404368,44.91347921,43.65468404,42.47536632,41.54017266,40.78975376,39.49412769,37.71654892,36.94573149,35.90008989,35.41337483,34.05881655,33.7548216,33.72348493,33.21188149,32.91757817,31.83649745,31.18945349,30.16744641,29.15050987,28.37045821,26.31003253,25.72493886,25.2439052,24.5599364,24.47055544,23.46519123,,,
India,"Energy use (kg of oil equivalent) per $1,000 GDP (constant 2011 PPP)",EG.USE.COMM.GD.PP.KD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,200.2104462,206.410429,202.8324952,198.2682182,193.0273212,189.7445821,181.8247153,181.6802812,175.2056214,170.2438049,167.8061943,162.37841,161.1033623,152.9400376,149.2501567,141.9196647,136.7120398,131.5435932,132.8450958,134.8649407,127.8542644,124.983574,124.3782113,119.6140065,118.2634393,,,
India,Fossil fuel energy consumption (% of total),EG.USE.COMM.FO.ZS,,,,,,,,,,,,35.11979343,35.22633466,35.31958299,36.46745679,36.9354604,37.85033548,38.22397866,37.21770194,38.70258161,39.38335072,41.41914116,43.0251332,43.85183637,45.17457373,47.22557302,48.25300177,49.68344915,51.24904856,52.81420226,53.76395973,55.0634924,56.07028245,56.95683361,58.01455003,59.98794193,60.8251558,61.77329025,62.01581767,63.46040016,63.72739451,63.64796634,64.32920579,64.51923944,65.58374371,65.98980361,66.80589128,67.8832307,69.00512159,71.14349792,71.40469516,71.4717185,72.41907946,72.28013726,73.46341619,,,
India,Alternative and nuclear energy (% of total energy use),EG.USE.COMM.CL.ZS,,,,,,,,,,,,1.792079103,1.696214535,1.950842946,1.790502894,2.064401979,2.149665301,2.099392878,2.562473232,2.390551068,2.392810764,2.403857586,2.147795859,2.317100573,2.429907585,2.302770922,2.323136269,2.031835791,2.320041358,2.234266043,2.54264807,2.421908459,2.358129753,2.216626301,2.45643542,2.260246902,2.194381084,2.303613391,2.547263638,2.453770732,2.492387641,2.603819268,2.43379908,2.53236454,2.550410869,2.794850719,2.983272904,2.892241854,2.541034491,2.477729675,2.801540288,3.223469738,2.968356726,3.18726186,3.019171705,,,
India,"Energy imports, net (% of energy use)",EG.IMP.CONS.ZS,,,,,,,,,,,,9.762031651,9.232099671,9.831581034,9.081814991,7.295552195,8.573584314,8.777171119,7.484055027,9.902650728,9.463231669,7.809565662,6.552875036,4.815674412,4.00055812,6.315665435,5.300916205,5.947143571,6.184235008,7.615272913,8.259887793,8.797442832,11.04552069,11.98499323,12.19736885,13.05507749,14.2569889,14.93412171,17.23037626,20.06241322,20.44553977,20.08046084,20.3527755,19.663346,21.38063836,22.05265263,23.46924171,24.96960723,25.79397946,27.4526763,28.34760875,29.38204199,31.49652228,32.47555404,34.30552375,,,
India,GDP per unit of energy use (constant 2011 PPP $ per kg of oil equivalent),EG.GDP.PUSE.KO.PP.KD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.994744375,4.844716446,4.930176494,5.043672703,5.18061378,5.270242706,5.499802369,5.50417466,5.707579425,5.873928868,5.959255581,6.158454192,6.207195095,6.538510229,6.700160472,7.046239874,7.31464472,7.602042604,7.527564296,7.414825489,7.821405131,8.001051402,8.039993418,8.360224935,8.455698618,,,
India,GDP per unit of energy use (PPP $ per kg of oil equivalent),EG.GDP.PUSE.KO.PP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3.228268321,3.235526053,3.36765672,3.527152503,3.700018961,3.84253791,4.083113083,4.156297305,4.356665121,4.552255834,4.7234757,4.99260769,5.109370871,5.489410433,5.779799222,6.273918737,6.712998171,7.162431881,7.231383164,7.177175349,7.66318883,8.001051402,8.188094236,8.651729913,8.907197886,,,
India,Renewable energy consumption (% of total final energy consumption),EG.FEC.RNEW.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,58.65286257,57.60479303,57.23057222,56.98336288,55.55718653,54.48411527,53.76740766,52.48807214,52.7122577,51.71729285,51.57934508,51.78722228,50.56943888,50.84280165,49.72402542,48.57530846,47.44363259,45.86785855,43.63288333,40.77082867,39.48425171,38.93475292,38.39443348,37.73270139,36.53617235,,,
India,"Electricity production from renewable sources, excluding hydroelectric (% of total)",EG.ELC.RNWX.ZS,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000980532,0.001352046,0.002455796,0.002207359,0.0109315,0.012215902,0.026098742,0.027435603,0.05117537,0.125100316,0.208563283,0.219811373,0.224118662,0.443593455,0.520284787,0.677184016,0.84815447,1.054334649,1.249577845,1.540544619,1.984145446,2.338376056,2.741658857,3.326494437,3.478093068,3.954730228,4.643608605,4.984918055,5.184100022,,,
India,"Electricity production from renewable sources, excluding hydroelectric (kWh)",EG.ELC.RNWX.KH,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2000000,3000000,6000000,6000000,32000000,39000000,88000000,99000000,200000000,530000000,924000000,1039000000,1129000000,2421000000,2964000000,3983000000,5178000000,6862000000,8547000000,11025000000,15353000000,19258000000,23259000000,30514000000,34065000000,42495000000,52150000000,59494000000,66740000000,,,
India,Renewable electricity output (% of total electricity output),EG.ELC.RNEW.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24.48929396,22.80740221,20.75265214,19.55881334,21.21909967,17.26053911,15.76729394,16.01513081,16.70110829,15.25807575,13.59094803,13.20704353,12.05516116,13.46942476,14.4825005,16.61901808,17.54042472,17.86408569,16.50983374,15.66005525,16.04374444,17.31696286,15.73297336,16.85248182,15.40960915,,,
India,Electricity production from oil sources (% of total),EG.ELC.PETR.ZS,,,,,,,,,,,,6.323812967,7.128878552,7.015495357,6.635540833,6.24490841,5.500183026,5.764798641,5.818630878,6.72747095,7.279356194,6.189072773,6.149898927,5.992957978,6.859978706,6.377696334,5.640017453,5.566371921,5.047888016,4.710872716,4.547504202,4.21104067,4.392596261,3.937424656,4.029292782,3.971580985,4.480047672,4.419287549,4.176269625,4.544405152,5.119117833,4.554967858,4.574759788,4.776311119,4.132949118,3.544440346,3.071012065,2.997706308,3.0121824,2.649073042,2.490565807,2.245155118,2.037845188,1.941297718,1.762935782,,,
India,Electricity production from nuclear sources (% of total),EG.ELC.NUCL.ZS,,,,,,,,,,,,1.792600627,1.606727551,3.291389637,2.876966014,3.056118055,3.401139988,2.296619764,2.515232137,2.55005717,2.492338613,2.282929041,1.429157066,2.333739182,2.370826328,2.677256752,2.462114712,2.269183274,2.38089391,1.701506155,2.097823265,1.730586113,1.99477432,1.495933157,1.445192458,1.884057971,2.047486519,2.133164649,2.366645426,2.427579383,2.966887138,3.311111905,3.176074771,2.731866812,2.487021028,2.420716098,2.429877072,2.058980309,1.759522841,2.031610091,2.681802217,3.00473879,2.926497419,2.867915675,2.804260998,,,
India,Electricity production from natural gas sources (% of total),EG.ELC.NGAS.ZS,,,,,,,,,,,,0.56790793,0.672187872,0.491785263,0.606432093,0.597025347,0.508288448,0.513504771,0.512126688,0.523838647,0.518233687,0.599259427,1.403712133,1.507782421,1.251447222,1.159678858,1.805158576,1.908637769,1.475114604,2.676423195,3.401746307,4.183163355,4.821742625,4.954481841,5.599097266,6.947552282,7.228388081,8.500289838,9.960277994,10.81206369,9.823622755,9.509819423,10.30053956,11.18590369,11.19561515,10.54515018,10.25660908,11.57179232,10.24370694,12.6579905,11.56699503,10.62719164,7.613470116,5.454804437,4.88807657,,,
India,Electric power transmission and distribution losses (% of output),EG.ELC.LOSS.ZS,,,,,,,,,,,,16.36237648,17.3435816,17.76471235,17.41829469,16.90524405,17.20023009,16.71114346,17.57938418,17.79455952,17.71047015,17.82588982,18.12456708,18.22304123,18.16023877,18.37537483,18.27808855,19.03229586,18.21627374,19.59399304,19.30810434,19.24411757,18.25873937,18.0163228,17.80084081,18.73271019,20.56402374,20.71579384,22.13077493,25.68169742,27.22068922,28.24195685,26.68001088,26.74018226,25.66334937,25.16558235,23.65556796,22.76850708,21.25537069,21.12673907,19.86255074,19.39441768,18.89775068,18.45502229,19.42476219,,,
India,Electricity production from hydroelectric sources (% of total),EG.ELC.HYRO.ZS,,,,,,,,,,,,42.22402989,38.57706053,39.80850596,36.36245077,38.76707865,36.44198086,38.43098011,42.83340446,40.32228043,38.66571436,37.46920577,34.19798985,32.88821613,31.39730395,27.42764098,26.40522427,21.39026347,23.6918795,22.85794171,24.47836246,22.79518631,20.72655339,19.53137774,21.1679243,17.1354388,15.55873065,15.79531944,16.47698962,14.81448229,13.07066324,12.52985951,11.20700669,12.41509011,13.23292266,15.07847346,15.55627927,15.52570963,13.76817488,12.33356081,12.56565137,13.36223263,11.08936476,11.86756376,10.22550913,,,
India,"Electricity production from oil, gas and coal sources (% of total)",EG.ELC.FOSL.ZS,,,,,,,,,,,,55.98336949,59.81621192,56.9001044,60.76058322,58.1768033,60.15687915,59.27240013,54.6513634,57.1276624,58.84194703,60.24786519,64.37285308,64.77804469,66.23186972,69.89510226,71.13168048,76.33920121,73.92477079,75.43834477,73.41288277,75.46201168,77.25257354,78.9452535,77.33570787,80.85540292,82.18521954,81.85170454,80.93224629,82.31434487,83.44216483,83.48184457,84.76876407,83.79363804,83.02024442,80.949227,80.01587006,80.05155647,81.70058525,82.27508498,81.23585892,79.63232502,81.28737036,80.22354794,81.72647464,,,
India,Electricity production from coal sources (% of total),EG.ELC.COAL.ZS,,,,,,,,,,,,49.09164859,52.0151455,49.39282378,53.51861029,51.33486954,54.14840768,52.99409672,48.32060583,49.87635281,51.04435715,53.45953299,56.81924202,57.27730429,58.1204438,62.35772707,63.68650445,68.86419152,67.40176817,68.05104886,65.46363226,67.06780765,68.03823466,70.053347,67.70731782,69.93626965,70.47678379,68.93212716,66.79569867,66.95787603,68.49942425,69.41705728,69.89346472,67.83142323,67.69168015,66.85963647,66.68824892,65.48205784,68.44469591,66.96802144,67.17829809,66.75997826,71.63605506,72.82744579,75.07546229,,,
India,Access to electricity (% of population),EG.ELC.ACCS.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,45.0628891,46.54481888,48.02629852,50.9,50.9784317,52.44367599,53.89809799,55.33898926,56.76364517,60.1,59.56223679,55.8,62.3,63.68630219,64.4,66.4319458,67.9,69.21004486,70.61524963,75,76.3,67.6,79.9,77.73751831,79.16925812,,,
India,"Access to electricity, urban (% of urban population)",EG.ELC.ACCS.UR.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,82.8,85.95743104,86.65298711,87.35394654,88.06036278,88.77047319,91.3,90.19394023,87.6,91.34016077,91.94873633,90.22724154,93.05335118,93.1,94.15934654,94.71450917,96.1,94,92.9,96.1,97.64445415,98.26935731,,,
India,"Access to electricity, rural (% of rural population)",EG.ELC.ACCS.RU.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,31.92928123,33.5586319,35.18745041,38.7,38.43226242,40.04185104,41.63861847,43.21936417,44.78087997,48.1,47.84576797,43.6,50.86945343,52.38101196,53.90047455,55.43389893,55.7,58.56528473,60.16558075,66,65.7,55.8,72.7,68.37213135,70.02897644,,,
India,Energy intensity level of primary energy (MJ/$2011 PPP GDP),EG.EGY.PRIM.PP.KD,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.291597909,8.548366552,8.400188527,8.211161678,7.994113011,7.858160303,7.530163675,7.524182021,7.256037794,7.050547079,6.949594871,6.724806376,6.672001023,6.333921729,6.181107871,5.877519466,5.661849048,5.507649299,5.56214241,5.646711932,5.353179242,5.232985711,5.199643316,4.98862544,4.944336871,,,
India,Access to clean fuels and technologies for cooking (% of population),EG.CFT.ACCS.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24.46687222,25.28523803,26.05602741,26.7884016,27.49153376,28.17457914,28.84669304,29.5155406,30.18277287,30.84853292,31.51296973,32.17622638,32.83845782,33.49980712,34.16042328,,,
India,Agriculture value added per worker (constant 2010 US$),EA.PRD.AGRI.KD,,,,,,,,,,,,,,,,,,,,,645.2859387,663.7832587,650.8468132,704.8632991,704.2922653,695.0048952,680.9617119,659.3920007,750.40549,747.4407221,765.4850464,738.5946539,775.411098,788.8147177,813.3445014,798.1065475,866.9008016,834.8334736,877.3098483,890.5362515,880.7235359,922.1277216,850.9586814,917.2336094,908.5972793,942.3917362,967.9447693,1015.762101,1005.07605,1001.764268,1075.833953,1117.528354,1122.107377,1172.469683,1158.852002,1156.210043,1202.447497,
India,"Undisbursed external debt, private creditors (UND, current US$)",DT.UND.PRVT.CD,,,,,,,,,,,162122000,137063000,169387000,234111000,200151000,130543000,117906000,174639000,102335000,174474000,910220000,955178000,1657832000,2288820000,1712539000,1704716000,1259590000,1089331000,1047380000,2068236000,3840625000,3797959000,4412429000,5266148000,4001737000,3423706000,4085948000,5646575000,9791317000,8843143000,1117740000,943945000,441314000,458773000,777426000,864869000,1472812000,1483260000,1341146000,684530000,1200174000,1007674000,643204000,4149671000,1422019000,2406186000,1594530000,
India,"Undisbursed external debt, official creditors (UND, current US$)",DT.UND.OFFT.CD,,,,,,,,,,,1729304000,2053068000,1994153000,2422808000,3152553000,3858328000,3364406000,4029010000,5057554000,5283552000,7628645000,8592340000,8842309000,8262920000,10077317000,13365315000,14972468000,19036211000,20133217000,22349865000,23023670000,22470314000,18973505000,18187169000,18721564000,19127839000,19049076000,17787310000,16303307000,14631156000,16102239000,16330788000,17286608000,14498597000,18386410000,17495655000,18566250000,21624466000,23921419000,28197834000,28587512000,34403523000,40847675000,37197614000,39679809000,38194827000,38783016000,
India,"Undisbursed external debt, total (UND, current US$)",DT.UND.DPPG.CD,,,,,,,,,,,1891426000,2190131000,2163540000,2656919000,3352704000,3988871000,3482312000,4203649000,5159889000,5458026000,8538865000,9547518000,10500141000,10551740000,11789856000,15070031000,16232058000,20125542000,21180597000,24418101000,26864295000,26268273000,23385934000,23453317000,22723301000,22551545000,23135024000,23433885000,26094624000,23474299000,17219979000,17274733000,17727922000,14957370000,19163836000,18360524000,20039062000,23107726000,25262565000,28882364000,29787686000,35411197000,41490879000,41347285000,41101828000,40601013000,40377546000,
India,Total amount of debt rescheduled (current US$),DT.TXR.DPPG.CD,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
India,"PPG, private creditors (TDS, current US$)",DT.TDS.PRVT.CD,,,,,,,,,,,258271000,97579000,95362000,96112000,92961000,82794000,83883000,77874000,110656000,114332000,204051000,262811000,366597000,578316000,652876000,879421000,1803312000,1552298000,1810355000,2322680000,3229874000,2993287000,3013631000,3365850000,4477812000,4851601000,5476754000,5242960000,5522711000,3852526000,4900393000,3784951000,3918646000,8419622000,4248845000,11728839000,2409313000,6726625000,10807323000,2724439000,2270978000,3280710000,3014479000,7429606000,11182981000,8328171000,16646336000,
India,"PPG, other private creditors (TDS, current US$)",DT.TDS.PROP.CD,,,,,,,,,,,222398000,70305000,64968000,65203000,67216000,67473000,69816000,72037000,74055000,67551000,56692000,52516000,82863000,114517000,111552000,186138000,319958000,359938000,462789000,415930000,774954000,841393000,943322000,906358000,1662748000,1283810000,1277920000,1762687000,2018672000,1269798000,285607000,531527000,162064000,77138000,274931000,140372000,26466000,24876000,27231000,30408000,24572000,31517000,215064000,9567000,2701000,1763000,1818000,
India,"PNG, commercial banks and other creditors (TDS, current US$)",DT.TDS.PNGC.CD,,,,,,,,,,,31000000,30800000,30900000,47600000,89000000,78000000,81000000,80000000,95000000,93000000,121000000,122000000,345000000,391000000,443000000,517000000,638000000,436947000,406208000,462000000,453431000,398800000,429400000,633300000,494100000,631400000,577849000,161877000,344403000,401810000,619217000,2803382000,2802255000,7245488000,7822614000,7829601000,10575745000,26553854000,13273617000,7305966000,15194151000,16705230000,17202541000,24007704000,72947073000,33798233000,52192687000,
India,"PNG, bonds (TDS, current US$)",DT.TDS.PNGB.CD,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,771000,20136000,56126000,88341000,304066000,414365000,1007693000,259319000,459314000,617440000,409652000,168233000,258357000,273642000,739158000,1157889000,1968561000,2271772000,3695145000,4194000000,1350501000,2721986000,1115841000,741856000,
India,"PPG, commercial banks (TDS, current US$)",DT.TDS.PCBK.CD,,,,,,,,,,,35658000,27173000,30307000,30824000,25664000,15242000,13993000,5762000,36520000,46700000,147275000,210219000,283664000,458866000,538249000,677157000,1430977000,1109285000,1228438000,1735192000,1995818000,1718067000,1636373000,1866379000,2200601000,3070369000,2379746000,3377951000,3128737000,2002162000,4471920000,2825863000,3278238000,1477255000,1351589000,1332888000,745548000,1348158000,1251883000,2046262000,2058752000,2997924000,2678004000,3109602000,10774646000,8029912000,7947917000,
India,"PPG, bonds (TDS, current US$)",DT.TDS.PBND.CD,,,,,,,,,,,215000,101000,87000,85000,81000,79000,74000,75000,81000,81000,84000,76000,70000,4933000,3075000,16126000,52377000,83075000,119128000,171558000,459102000,433827000,433936000,593113000,614463000,497422000,1819088000,102322000,375302000,580566000,142866000,427561000,478344000,6865229000,2622325000,10255579000,1637299000,5353591000,9528209000,647769000,187654000,251269000,121411000,4310437000,405634000,296496000,8696601000,
India,"PPG, official creditors (TDS, current US$)",DT.TDS.OFFT.CD,,,,,,,,,,,866349000,448617000,514283000,551115000,632196000,679365000,675236000,722377000,840173000,899441000,925346000,903629000,890980000,899875000,869902000,1080842000,1244738000,1467914000,1464773000,1983357000,2268396000,2563179000,2823611000,3158425000,3769843000,5303688000,4221762000,5450030000,4764834000,4151096000,4638987000,4591123000,7942014000,9608419000,5048297000,3762503000,3677020000,3565117000,4164203000,3933324000,3955767000,4752344000,4564595000,4772117000,4891360000,5345005000,5931579000,
India,"PPG, multilateral concessional (TDS, current US$)",DT.TDS.MLTC.CD,,,,,,,,,,,14788000,8445000,16134000,17780000,20657000,24184000,30048000,35308000,38155000,43648000,50331000,60739000,74771000,94175000,114533000,129063000,159280000,176602000,195504000,203061000,227710000,260374000,283605000,309530000,335907000,379139000,387251000,409632000,451803000,494488000,528611000,585268000,617625000,707645000,765247000,810602000,853487000,905350000,982032000,1000949000,1043147000,1124067000,1154013000,1209748000,1458710000,1840593000,2011003000,
India,Multilateral debt service (% of public and publicly guaranteed debt service),DT.TDS.MLAT.PG.ZS,,,,,,,,,,,12.95877719,16.71817443,15.74785326,15.46366267,14.49617117,14.76332366,15.45739206,17.16311507,15.85164104,14.66639968,13.64498046,12.48413978,12.73838501,12.92207841,14.73957465,13.48803706,11.58068273,17.95430255,15.26282332,15.67106832,16.34752386,19.34942102,22.47552868,23.59262907,20.68556456,20.87756439,18.94789883,17.16085024,18.74211,25.89617551,23.92441647,26.18819987,50.59493317,35.61937761,26.70332453,9.053373168,29.48969437,19.18566361,13.93811159,30.46972384,32.3882221,28.2490943,32.26722684,22.30330913,18.91729807,25.58959235,17.73419733,
India,"Multilateral debt service (TDS, current US$)",DT.TDS.MLAT.CD,,,,,,,,,,,145737000,91314000,96006000,100085000,105120000,112520000,117340000,137348000,150722000,148684000,154106000,145620000,160195000,191013000,224451000,264401000,352985000,542258000,499877000,674802000,898831000,1075144000,1311951000,1539248000,1706074000,2120177000,1837665000,1835008000,1928103000,2072632000,2282241000,2193543000,6000893000,6421476000,2482646000,1402489000,1794841000,1974539000,2086748000,2028602000,2016732000,2269265000,2445557000,2721388000,3040831000,3498910000,4004012000,
India,"PPG, IDA (TDS, current US$)",DT.TDS.MIDA.CD,,,,,,,,,,,14788000,8445000,16134000,17780000,20657000,24184000,30048000,35251000,38046000,43451000,49843000,59592000,71864000,90786000,109426000,123501000,150732000,165672000,179499000,188012000,210065000,242335000,263968000,288478000,314909000,357130000,364484000,381187000,422788000,468917000,505580000,570069000,603749000,692469000,748868000,794052000,838499000,889361000,964953000,984446000,1024215000,1101417000,1122748000,1168648000,1417124000,1619033000,1762114000,
India,"PPG, IBRD (TDS, current US$)",DT.TDS.MIBR.CD,,,,,,,,,,,130949000,82869000,79872000,82305000,84463000,88336000,87292000,102040000,112567000,105036000,103775000,84881000,85414000,96659000,109607000,134481000,192670000,363731000,297841000,449610000,639962000,746309000,917470000,1077984000,1185306000,1260212000,1167325000,1122025000,1123710000,1184335000,1130921000,1090808000,3371654000,3878496000,344251000,369874000,539224000,702470000,702786000,667770000,624569000,740266000,784509000,932100000,953456000,982931000,1122716000,
India,"Public and publicly guaranteed debt service (% of exports of goods, services and primary income)",DT.TDS.DPPG.XP.ZS,,,,,,,,,,,,,,,,13.52072386,11.39551261,10.20602286,11.16701685,9.721174168,9.158049037,9.556018417,9.850320483,10.91740328,10.94667041,14.65325629,21.78126893,19.24050446,18.47408192,20.77208732,23.54977253,23.89669963,23.04452368,23.72603721,25.47031362,25.71035022,22.8810461,23.09681465,21.6247969,15.01455762,15.2745446,12.75790528,16.06971255,20.42009354,7.702067904,9.668312899,3.020280459,4.072198744,4.668205095,2.424708241,1.739331539,1.759617712,1.670340809,2.544659464,3.226356136,3.085351435,5.063235379,
India,Public and publicly guaranteed debt service (% of GNI),DT.TDS.DPPG.GN.ZS,,,,,,,,,,,1.837280131,0.826799058,0.869440179,0.770864276,0.741216084,0.78682973,0.750961334,0.669136233,0.702866839,0.670749771,0.61288016,0.610847584,0.637137431,0.689341126,0.731646862,0.858850769,1.247906838,1.105123063,1.131199602,1.491765078,1.759482187,2.117617457,2.085065976,2.401112393,2.587556136,2.889570096,2.525845762,2.628777873,2.495932923,1.781991936,2.086611729,1.764283604,2.350409331,3.029482388,1.338278456,1.929177781,0.666650625,0.860501047,1.268993693,0.505935405,0.379989251,0.444547362,0.419619518,0.665451181,0.799208964,0.661991829,1.009960585,
India,"Debt service on external debt, public and publicly guaranteed (PPG) (TDS, current US$)",DT.TDS.DPPG.CD,,,,,,,,,,,1124620000,546196000,609645000,647227000,725157000,762159000,759119000,800251000,950829000,1013773000,1129397000,1166440000,1257577000,1478191000,1522778000,1960263000,3048050000,3020212000,3275128000,4306037000,5498270000,5556466000,5837242000,6524275000,8247655000,10155289000,9698516000,10692990000,10287545000,8003622000,9539380000,8376074000,11860660000,18028041000,9297142000,15491342000,6086333000,10291742000,14971526000,6657763000,6226745000,8033054000,7579074000,12201723000,16074341000,13673176000,22577915000,
India,"Debt service (PPG and IMF only, % of exports of goods, services and primary income)",DT.TDS.DPPF.XP.ZS,,,,,,,,,,,,,,,,13.88820859,16.88613277,14.5943075,14.21590234,10.69574352,9.270907249,10.10027661,10.9858617,13.5054832,14.6672766,19.14709108,28.48313682,27.84456624,26.6977787,26.52366776,27.16493911,26.76184823,25.43842947,25.19740772,29.72217175,30.54460157,25.41184345,24.54037448,22.49060688,15.58986896,15.37850953,12.7873597,16.09367758,20.43703738,7.720633937,9.686723541,3.040977131,4.086765172,4.670887558,2.429932221,1.744807851,1.761087518,1.670742577,2.546304708,3.226962696,3.085980547,5.064283104,
India,"Debt service on external debt, private nonguaranteed (PNG) (TDS, current US$)",DT.TDS.DPNG.CD,,,,,,,,,,,31000000,30800000,30900000,47600000,89000000,78000000,81000000,80000000,95000000,93000000,121000000,122000000,345000000,391000000,443000000,517000000,638000000,436947000,406208000,462000000,453431000,398800000,429400000,634071000,514236000,687526000,666190000,465943000,758768000,1409503000,878536000,3262696000,3419695000,7655140000,7990847000,8087958000,10849387000,27293012000,14431506000,9274527000,17465923000,20400375000,21396541000,25358205000,75669059000,34914074000,52934543000,
India,Rural land area (sq. km),AG.LND.TOTL.RU.K2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2980489.25,,,,,,,,,,2980489.25,,,,,,,,,,2980489.25,,,,,,,
India,Land area (sq. km),AG.LND.TOTL.K2,,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190,2973190
India,Average precipitation in depth (mm per year),AG.LND.PRCP.MM,,,1083,,,,,1083,,,,,1083,,,,,1083,,,,,1083,,,,,1083,,,,,1083,,,,,1083,,,,,1083,,,,,1083,,,,,1083,,1083,,,
India,Agricultural irrigated land (% of total agricultural land),AG.LND.IRIG.AG.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,32.20730579,31.53300842,30.7335963,31.63298683,32.86921377,33.81654864,34.93207883,34.65011098,35.34164871,34.49237914,35.39878666,36.32947752,36.78560696,,,,
India,Forest area (% of land area),AG.LND.FRST.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21.50518467,21.55398747,21.60279027,21.65159307,21.70039587,21.74919867,21.79800147,21.84680427,21.89560708,21.94440988,21.99321268,22.14920674,22.30520081,22.46119488,22.61718895,22.77318301,22.91316734,23.05315167,23.19313599,23.33312032,23.47310465,23.53310754,23.59311043,23.65311332,23.71311622,23.77311911,,
India,Forest area (sq. km),AG.LND.FRST.K2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,639390,640841,642292,643743,645194,646645,648096,649547,650998,652449,653900,658538,663176,667814,672452,677090,681252,685414,689576,693738,697900,699684,701468,703252,705036,706820,,
India,Land area where elevation is below 5 meters (% of total land area),AG.LND.EL5M.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.494053499,,,,,,,,,,1.494053499,,,,,,,,,,1.494053499,,,,,,,
India,Urban land area where elevation is below 5 meters (% of total land area),AG.LND.EL5M.UR.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.115484746,,,,,,,,,,0.115484746,,,,,,,,,,0.115484746,,,,,,,
India,Urban land area where elevation is below 5 meters (sq. km),AG.LND.EL5M.UR.K2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3699.181396,,,,,,,,,,3699.181396,,,,,,,,,,3699.181396,,,,,,,
India,Rural land area where elevation is below 5 meters (% of total land area),AG.LND.EL5M.RU.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.378568753,,,,,,,,,,1.378568753,,,,,,,,,,1.378568753,,,,,,,
India,Rural land area where elevation is below 5 meters (sq. km),AG.LND.EL5M.RU.K2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,44158.00391,,,,,,,,,,44158.00391,,,,,,,,,,44158.00391,,,,,,,
India,Permanent cropland (% of land area),AG.LND.CROP.ZS,,1.742236453,1.917132777,1.540433003,1.475183221,1.418678255,1.389080415,1.348719725,1.513525876,1.513525876,1.513525876,1.614427601,1.614427601,1.681695418,1.681695418,1.681695418,1.681695418,1.681695418,1.681695418,1.681695418,1.782597143,1.84986496,1.84986496,1.950766685,1.950766685,1.950766685,2.018034502,2.186204043,2.186204043,2.186204043,2.236654906,2.354373585,2.45527531,2.589810944,2.623444852,2.690712669,2.858882211,2.858882211,2.899242901,3.077502615,3.094319569,3.195221294,3.228855203,3.363390836,3.434022044,3.440748825,3.632462103,3.760270955,3.834265553,3.968801187,4.111745297,4.167241246,4.30514027,4.372408087,4.372408087,4.372408087,,
India,Land under cereal production (hectares),AG.LND.CREL.HA,,92239016,93852008,93571016,94306008,93277016,92729816,96062008,98822912,100872596,100377004,99673104,98043804,103788908,99388716,101366908,101465120,103723620,104340004,103473312,104067000,105508300,101083696,106613208,105175600,104056596,104049212,98573604,103542716,104055700,102536512,100243408,99499504,100066500,100184200,99450800,100300000,100167200,100904200,102091700,102402400,100271100,94470900,98603100,97805700,99519200,99236800,100833500,101155500,97171600,100075800,100625700,98969000,99269950,98979000,,,
India,Arable land (% of land area),AG.LND.ARBL.ZS,,52.40364726,52.7043344,52.9633155,53.05143634,53.21422445,53.34001527,53.74025878,53.83746077,53.80618124,54.00260326,53.73218664,53.87681245,54.16539138,54.31909834,54.43244461,54.50610287,54.50677555,54.90365567,54.97260518,54.77416512,54.79367279,54.90601004,54.73313175,55.03112818,55.00489373,54.96083331,54.89222014,54.77887387,54.98336803,54.97765027,54.88448434,54.72438694,54.68402625,54.66350956,54.45699737,54.15900094,54.35273225,54.28815515,54.14218398,54.12704873,53.92356358,53.95955186,53.74664922,53.70696121,53.62724885,53.36423168,53.14897467,53.13989352,53.11601344,52.80826318,52.79817301,52.65253818,52.61755892,52.62462204,52.62462204,,
India,Arable land (hectares per person),AG.LND.ARBL.HA.PC,,0.339820527,0.334934595,0.329760789,0.323563085,0.317892803,0.312085556,0.307926667,0.302035606,0.29542844,0.290040159,0.282142352,0.276463267,0.271548059,0.266042224,0.260482137,0.254898089,0.249135633,0.245286912,0.240035551,0.233722521,0.22845026,0.223665097,0.217862244,0.214090974,0.209219615,0.204470465,0.199812011,0.195170862,0.191812446,0.187855086,0.183752158,0.179583013,0.175947865,0.172494446,0.168572515,0.164497003,0.162021394,0.158871185,0.155600675,0.152822621,0.149629784,0.147211372,0.144219299,0.141795513,0.139359669,0.136544787,0.133953135,0.131976284,0.130056728,0.127547898,0.125861502,0.123941281,0.122357754,0.120927369,0.119523719,,
India,Arable land (hectares),AG.LND.ARBL.HA,,155806000,156700000,157470000,157732000,158216000,158590000,159780000,160069000,159976000,160560000,159756000,160186000,161044000,161501000,161838000,162057000,162059000,163239000,163444000,162854000,162912000,163246000,162732000,163618000,163540000,163409000,163205000,162868000,163476000,163459000,163182000,162706000,162586000,162525000,161911000,161025000,161601000,161409000,160975000,160930000,160325000,160432000,159799000,159681000,159444000,158662000,158022000,157995000,157924000,157009000,156979000,156546000,156442000,156463000,156463000,,
India,Agricultural land (% of land area),AG.LND.AGRI.ZS,,58.84319536,59.35779415,59.24747493,59.43515214,59.59154982,59.71027751,59.80344344,59.99078431,59.79839835,59.88584652,59.80680683,59.85019457,60.12094753,60.29954359,60.43811529,60.42298003,60.40347236,60.74014779,60.73611172,60.63251928,60.67590702,60.80035248,60.69642371,61.0293994,60.99172942,60.94195124,61.06000626,60.90798099,61.04588001,61.01628218,61.07446884,60.97995755,61.00585566,60.97524881,60.85887548,60.73913877,60.87098369,60.83499541,60.88443725,60.86896566,60.70483218,60.72938494,60.62478348,60.66716221,60.58341377,60.50941918,60.4132262,60.45930465,60.56390611,60.39741826,60.43004315,60.42062566,60.43946065,60.44719645,60.44719645,,
India,Agricultural land (sq. km),AG.LND.AGRI.K2,,1749520,1764820,1761540,1767120,1771770,1775300,1778070,1783640,1777920,1780520,1778170,1779460,1787510,1792820,1796940,1796490,1795910,1805920,1805800,1802720,1804010,1807710,1804620,1814520,1813400,1811920,1815430,1810910,1815010,1814130,1815860,1813050,1813820,1812910,1809450,1805890,1809810,1808740,1810210,1809750,1804870,1805600,1802490,1803750,1801260,1799060,1796200,1797570,1800680,1795730,1796700,1796420,1796980,1797210,1797210,,
India,Fertilizer consumption (kilograms per hectare of arable land),AG.CON.FERT.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,100.3290553,105.1772039,115.2715101,127.614592,136.4039215,142.8352255,153.3493908,167.4572959,179.0358769,180.7482912,164.7829264,158.1543115,165.1245523,,,
India,Fertilizer consumption (% of fertilizer production),AG.CON.FERT.PT.ZS,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,113.401275,119.9610551,121.4863244,132.8960089,152.5510538,172.230339,188.9650179,181.2310086,171.4917641,171.1962371,161.1647144,151.4756174,157.1764749,,,
India,"Agricultural machinery, tractors",AG.AGR.TRAC.NO,,31016,35000,40000,44000,48000,54012,66000,78000,90000,100000,143000,170000,184293,203351,227668,250884,294313,334138,378714,382869,417769,461567,502581,553555,607773,648932,697568,750935,925365,988070,1063012,1136160,1195013,1257630,1354864,1502000,1650000,1797000,1944000,2091000,,,,,,,,,,,,,,,,,
India,"Population ages 60-64, female (% of female population)",SP.POP.6064.FE.5Y,2.220794882,2.202126571,2.154169762,2.100220259,2.068590579,2.070553116,2.080666373,2.115152595,2.160985055,2.200570085,2.225448014,2.222898968,2.21232885,2.200262631,2.194330478,2.197628818,2.19142524,2.192748789,2.199917107,2.210304839,2.222600145,2.218236571,2.216923149,2.220412707,2.230942188,2.249466435,2.252914985,2.264465417,2.283735266,2.310217115,2.343434591,2.367658349,2.397259324,2.431282137,2.468440433,2.507491833,2.533578526,2.562994437,2.592306915,2.616349236,2.632766467,2.625147118,2.61486036,2.606953866,2.608022811,2.622012719,2.630060875,2.647780836,2.680561056,2.736696941,2.81969812,2.9092274,3.025217888,3.153648688,3.274361851,3.376024277,3.443226156,
India,"Population ages 55-59, male (% of male population)",SP.POP.5559.MA.5Y,2.854465622,2.862995419,2.885867635,2.914310828,2.937404085,2.949591614,2.933746597,2.913522086,2.894690267,2.883771694,2.883468981,2.87401894,2.874784922,2.882976343,2.894986686,2.908464145,2.902068643,2.899789077,2.902285917,2.909929735,2.922156476,2.916834714,2.916516438,2.920263693,2.92664724,2.934465793,2.919000073,2.907655562,2.901386087,2.901239273,2.907289957,2.903123278,2.905841957,2.912460644,2.918716954,2.922393824,2.909999186,2.899186966,2.892376883,2.892399595,2.901388534,2.90430084,2.911936092,2.934658674,2.987757568,3.077791182,3.188094569,3.331664214,3.487661411,3.627789611,3.737034413,3.805872369,3.851494707,3.884023923,3.918004345,3.961260302,3.99923555,
India,"Population ages 55-59, female (% of female population)",SP.POP.5559.FE.5Y,2.72078853,2.732921,2.772335912,2.823150885,2.865231534,2.88824143,2.879144371,2.861437133,2.841516221,2.827198933,2.821767249,2.806144587,2.799774826,2.800441166,2.805386262,2.812773543,2.804593866,2.802245962,2.806243495,2.817002866,2.834118554,2.837081368,2.846638167,2.86327481,2.887836083,2.919910735,2.93473831,2.958377337,2.988464757,3.022001636,3.056773731,3.076819511,3.101185726,3.125432882,3.143211808,3.151325519,3.136894796,3.116904267,3.097910637,3.088551039,3.09375954,3.09554947,3.109075978,3.139494625,3.194455727,3.276777499,3.369988399,3.490411081,3.622725978,3.745723433,3.847435015,3.915497347,3.96813421,4.012627288,4.059638808,4.114638417,4.162992252,
India,"Population ages 50-54, male (% of male population)",SP.POP.5054.MA.5Y,3.741114362,3.727625485,3.697051632,3.660306766,3.632985203,3.622223483,3.604487666,3.601700497,3.608290402,3.61658516,3.622998173,3.613483152,3.605802202,3.600906191,3.601358705,3.608125392,3.600925596,3.601980671,3.607503507,3.612757371,3.615265805,3.597943174,3.579721394,3.563037233,3.552148905,3.548973705,3.53144692,3.525462069,3.525150847,3.523036377,3.515998954,3.493561182,3.471899523,3.453789471,3.443180092,3.442968744,3.438089847,3.438651901,3.456407719,3.508378728,3.601811265,3.719208144,3.87457317,4.0438006,4.193507891,4.305622838,4.373917195,4.411678359,4.431615648,4.453023673,4.486811924,4.518100571,4.560101692,4.608580387,4.656672205,4.700732603,4.735703361,