Skip to content

Instantly share code, notes, and snippets.

@jashcny
Last active October 14, 2016 15:56
Show Gist options
  • Save jashcny/ecda33b7959ee59fb1e4 to your computer and use it in GitHub Desktop.
Save jashcny/ecda33b7959ee59fb1e4 to your computer and use it in GitHub Desktop.
Week 7: Dots on Lines
<!DOCTYPE html>
<!-- Modification of an example by Scott Murray from Knight D3 course -->
<html lang="en">
<head>
<meta charset="utf-8">
<title>Line Chart with Multiple Lines</title>
<style type="text/css">
@import url(https://fonts.googleapis.com/css?family=Raleway:400);
@import url(https://fonts.googleapis.com/css?family=Raleway:400italic|Poiret+One|Ubuntu|Oxygen);
@import url(https://fonts.googleapis.com/css?family=Raleway:400italic|Poiret+One|Ubuntu);
body {
background-color: white;
font-family: Helvetica, Arial, sans-serif;
}
h1 {
font-family: 'Oxygen', sans-serif;
font-size: 32px;
margin-left: 450px;
color: rgb(233, 42, 58);
}
p {
font-family: 'Oxygen', sans-serif;
font-size: 16px;
margin: 10px 0 0 0;
}
svg {
background-color: white;
margin-left: 200px;
margin-top: 50px;
}
#para {
margin-top: 50px;
margin-left: 280px;
margin-right: 280px;
margin-bottom: 50px;
}
a {
color: rgb(233, 42, 58);
text-decoration: none;
}
path.line {
fill: none;
stroke: rgb(233, 42, 58);
stroke-width: 1.5px;
stroke-opacity: 80%;
}
.xAxis path, .xAxis line {
fill: none;
stroke: rgb(189,189,189);
stroke-width: 1.5px;
}
.yAxis text,.xAxis text {
font-size: 11px;
font-family: 'Ubuntu', sans-serif;
}
.linelabel {
font-size: 10px;
stroke-width:0.1px;
}
circle {
fill: rgb(233, 42, 58);
}
#focused {
stroke-width: 3.5px;
stroke-opacity: 100%;
font-size:17px;
font-weight: bold;
}
.grid .tick {
opacity: 0.7;
stroke: rgba(189,189,189,1);
stroke-dasharray: 1.2,4;
}
.grid path {
stroke-width: 0;
}
.tooltip {
position: absolute;
z-index: 10;
}
.tooltip p {
font-size: 15px;
font-family: 'Raleway', sans-serif;
background-color: rgba(255,255,255,0.8);
line-height: 1.8em;
border: rgb(210,210,210) 2px solid;
padding-left: 20px;
width: 190px;
height: 80px;
}
</style>
</head>
<body>
<h1>Mobile cellular Subscriptions</h1>
<div id="para">
<p >This line chart below illustrates the subscriptions of mobile cellular telephone in the worldwide. The data are the subscriptions to a public mobile telephone service that provide access to the PSTN using cellular technology.</p>
<p >Source: International Telecommunication Union, World Telecommunication/ICT Development Report and database, <a href="http://data.worldbank.org/indicator/IT.CEL.SETS/countries/1W?display=default">World Bank.</a><p>
</div>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.min.js"></script>
<script type="text/javascript">
//Dimensions and padding
var fullwidth = 950;
var fullheight = 800;
var margin = {top: 20, right: 100, bottom: 80, left:160};
var width = fullwidth - margin.left - margin.right;
var height = fullheight - margin.top - margin.bottom;
//Set up date formatting and years
var dateFormat = d3.time.format("%Y");
//Set up scales
var xScale = d3.time.scale()
.range([ 0, width ]);
var yScale = d3.scale.linear()
.range([ 0, height ]);
//Configure axis generators
var xAxis = d3.svg.axis()
.scale(xScale)
.orient("bottom")
.ticks(20)
.tickFormat(function(d) {
return dateFormat(d);
})
.outerTickSize([1]);
var yAxis = d3.svg.axis()
.scale(yScale)
.orient("left")
.ticks(12)
.outerTickSize([0])
.innerTickSize([0]);
//Configure line generator
// each line dataset must have a d.year and a d.amount for this to work.
var line = d3.svg.line()
.x(function(d) {
return xScale(dateFormat.parse(d.year));
})
.y(function(d) {
return yScale(+d.amount);
});
//Create the empty SVG image
var svg = d3.select("body")
.append("svg")
.attr("width", fullwidth)
.attr("height", fullheight)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
var tooltip = d3.select("body")
.append("div")
.attr("class", "tooltip");
function make_y_axis() {
return d3.svg.axis()
.scale(yScale)
.orient("left")
.ticks(12)
}
//Load data
d3.csv("mobile.csv", function(data) {
//New array with all the years, for referencing later
var test = d3.keys(data[0])
var years = d3.keys(data[0]).slice(0,38-4);
console.log(test);
console.log(years);
// or you could get this by doing:
// var years = d3.keys(data[0]).slice(0, 54-4); //
//Create a new, empty array to hold our restructured dataset
var dataset = [];
//Loop once for each row in data
data.forEach(function (d, i) {
var myCellulars = [];
//Loop through all the years - and get the emissions for this data element
years.forEach(function (y) {
// If value is not empty
if (d[y]) {
//Add a new object to the new emissions data array - for year, amount
myCellulars.push({
country: d.CountryName, // we can put the country in here too. It won't hurt.
year: y,
amount: d[y] // this is the value for, for example, d["2004"]
});
}
});
//Create new object with this country's name and empty array
// d is the current data row... from data.forEach above.
dataset.push( {
country: d.CountryName,
cellular: myCellulars // we just built this!
} );
});
//Uncomment to log the original data to the console
// console.log(data);
//Uncomment to log the newly restructured dataset to the console
console.log(dataset);
//Set scale domains - max and mine of the years
xScale.domain(
d3.extent(years, function(d) {
return dateFormat.parse(d);
}));
// max of emissions to 0 (reversed, remember)
yScale.domain([
d3.max(dataset, function(d) {
return d3.max(d.cellular, function(d) {
return +d.amount;
});
}),
0
]);
//Make a group for each country
var groups = svg.selectAll("g")
.data(dataset)
.enter()
.append("g");
//Within each group, create a new line/path,
//binding just the emissions data to each one
groups.selectAll("path")
.data(function(d) { // because there's a group with data already...
return [ d.cellular]; // it has to be an array for the line function
})
.enter()
.append("path")
.attr("class", "line")
.attr("d", line);
groups.on("mouseover",HoverIn)
.on("mouseout",HoverOut);
// Tooltip dots
var circles = groups.selectAll("circle")
.data(function(d) { // because there's a group with data already...
return d.cellular; // NOT an array here.
})
.enter()
.append("circle");
circles.attr("cx", function(d) {
return xScale(dateFormat.parse(d.year));
})
.attr("cy", function(d) {
return yScale(d.amount);
})
.attr("r", 1.5)
.style("opacity", 0.3); // this is optional - if you want visible dots or not!
// Adding a subtle animation to increase the dot size when over it!
circles
.on("mouseover", mouseoverFunc)
.on("mousemove", mousemoveFunc)
.on("mouseout", mouseoutFunc);
// We're putting the text label at the group level, where the country name was originally.
//We can access data here, because it's already attached!
// We use the scales to position labels at end of line.
groups.append("text")
.attr("x", function(d) {
if (d.cellular.length != 0) {
var lastYear = d.cellular[d.cellular.length-1].year;
return xScale(dateFormat.parse(lastYear));
}
})
.attr("y", function(d) {
if (d.cellular.length != 0) {
var lastAmount = d.cellular[d.cellular.length-1].amount;
return yScale(+lastAmount);
}
})
.attr("dx", "3px")
.attr("dy", ".35em")
.text(function(d) {
if (d.cellular.length != 0) {
var lastAmount = d.cellular[d.cellular.length-1].amount;
if (+lastAmount > 400000000) {
return d.country;
}
}
})
.attr("font-family","Ubuntu")
.attr("class", "linelabel");
svg.append("text")
.attr("class", "xlabel")
.attr("transform", "translate(" + (margin.left + width / 2) + " ," +
(height + margin.bottom) + ")")
.style("text-anchor", "middle")
.attr("dy", "-15")
.attr("dx","-148")
.attr("font-family","Ubuntu")
.attr("font-size","17px")
.text("Year");
svg.append("text")
.attr("transform", "rotate(-90)")
.attr("y", 10 - margin.left)
.attr("x", 20 - (height / 2))
.attr("dy", "1em")
.attr("font-size","19px")
.attr("font-family","Ubuntu")
.style("text-anchor", "middle")
.text("Mobile cellular Subscriptions");
//Axes
svg.append("g")
.attr("class", "xAxis")
.attr("transform", "translate(0," + height + ")")
.call(xAxis);
var yt=svg.append("g")
.attr("class", "yAxis")
.call(yAxis)
yt.selectAll("text")
.attr("x", -15)
.attr("dy", 3.5);
svg.append("g")
.attr("class", "grid")
.call(make_y_axis()
.tickSize(-width, 0, 0)
.tickFormat("")
)
function mouseoverFunc(d) {
d3.select(this)
.transition()
.duration(700)
.style("opacity", 1)
.attr("r", 7.5);
tooltip
.style("display", null) // this removes the display none setting from it
.html("<p>Country: " + d.country +
"<br>Year: " + d.year +
"<br>Subscription: " + d.amount + "</p>");
}
function mousemoveFunc(d) {
tooltip
.style("top", (d3.event.pageY - 10) + "px" )
.style("left", (d3.event.pageX + 10) + "px");
}
function mouseoutFunc(d) {
d3.select(this)
.transition()
.style("opacity", 0.3)
.attr("r", 1.5);
tooltip.style("display", "none");
} // this sets it to invisible!
function HoverIn(d){
d3.select(this).select("path")
.attr("id", "focused");
d3.select(this).select("text")
.attr("id", "focused");
}
function HoverOut(d) {
d3.select(this).select("path")
.attr("id", null);
d3.select(this).select("text")
.attr("id", null);
}
}); // end of data csv
</script>
</body>
</html>
CountryName CountryCode IndicatorName IndicatorCode 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
Afghanistan AFG Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 25000 200000 600000 1200000 2520366 4668096 7898909 10500000 13000000 17558265 19520813 21588228 23423741
Albania ALB Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2300 3300 5600 11008 29791 392650 851000 1100000 1259590 1530244 1909885 2322436 1859632 2463741 2692372 3100000 3500000 3685983 3359654
Algeria DZA Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 470 4781 4781 4781 1348 4691 11700 17400 18000 72000 86000 100000 450244 1446927 4882414 13661355 20997954 27562721 27031472 32729824 32780165 35615926 37527703 39517045 37258000
American Samoa ASM Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 700 900 1200 1250 1300 1400 1500 1800 1992 2156 2036 2100 2250
Andorra AND Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 770 780 784 2825 5488 8618 14117 20600 23543 29429 32790 51893 58366 64560 69004 63503 64202 64549 65495 65044 63865 63931 66241
Angola AGO Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 1100 1824 1994 3298 7052 9820 24000 25806 75000 140000 350000 740000 1611118 3054620 4961536 6773356 8109421 9403365 12073218 12785109 13285198 14052558
Antigua and Barbuda ATG Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 1300 1400 1500 8500 22000 25000 38205 46100 54000 86000 110177 112381 136592 134925 167970 176008 127381 114358 109100
Arab World ARB Mobile cellular subscriptions IT.CEL.SETS 0 2330 3564 4936 7976 20756 33793 39447 58750 88618 129904 152281 199350 263401 501551 921229 1616551 2523542 4105508 9035241 16679594 25275663 35121269 52132873 84854521 125958922 174488139 214062549 265270824 312247800 351957968 381641858 407704505 412128134
Argentina ARG Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 2300 12000 25000 46590 112000 241163 405395 667020 2009073 2670862 3848869 6487950 6741791 6566740 7842233 13512383 22156426 31510390 40401771 46508774 52482780 57082298 60722729 64327647 67361515 66356509
Armenia ARM Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 300 5000 7831 8161 17486 25504 71349 114379 203309 318044 1259762 1876411 1442000 2191500 3865354 3211215 3322837 3346275 3459137
Aruba ABW Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 20 1718 3000 3402 5380 12000 15000 53000 61800 69952 98389 103417 109030 113586 120806 128000 131800 135000 138800 139700
Australia AUS Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 4423 31622 94529 184943 291459 497000 690000 1220000 2242000 3990000 4578000 4918000 6315000 8562000 11132000 12670000 14347000 16480000 18420000 19760000 21260000 22120000 22200000 22500000 23789000 24338000 24940000 31010000
Austria AUT Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 9762 19104 26223 36904 50721 73698 115402 172453 220859 278199 383535 598708 1159700 2292900 4250393 6117000 6541000 6736000 7274000 7992000 8665000 9281000 9912000 10816000 11434000 12241000 13022578 13588000 13272000 12952605
Azerbaijan AZE Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 500 6000 17000 40000 65000 370000 420400 730000 794200 1057100 1456523 2242000 3323500 4519000 6548000 7757120 9100113 10120105 10125200 10130102 10552520
Bahamas, The BHS Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 1922 2020 2600 2401 4100 4948 6200 8072 15911 31524 60555 121759 122228 186007 227771 252987 373999 358050 358812 428377 298790 300000 287000 273300
Bahrain BHR Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 618 1712 2886 4251 5147 7354 9683 11360 17616 27600 40080 58543 92063 133468 205727 299587 388990 443109 649764 767103 907433 1115979 1440782 1401974 1567000 1693650 2123903 2210190 2328994
Bangladesh BGD Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 250 500 1104 2500 4000 26000 75000 149000 279000 520000 1075000 1365000 2781560 9000000 19130983 34370000 44640000 51359315 67923887 84368700 97180000 116553076 120350497
Barbados BRB Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 486 796 1560 2967 4614 6283 8013 12000 20309 28467 53111 97193 140000 200138 206190 237119 257596 288662 337061 350061 347917 349296 307708 305456
Belarus BLR Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 324 1724 5897 6548 8167 12155 23457 49353 138329 462630 1118000 2239287 4099500 5960000 6960000 8128000 9686200 10332900 10694900 10676471 11114440 11401927
Belgium BEL Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 3798 7223 19154 30791 42880 51420 61460 67771 128071 235258 478172 974494 1756287 3186602 5629000 7697000 8101777 8605834 9131705 9604695 9847375 10738121 11341704 11775240 12154041 12495934 12313375 12315217 12734724
Belize BLZ Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 400 832 1547 2184 2544 3535 6591 16812 39155 51729 60403 75000 96000 118000 118314 160032 161783 194201 222407 172423 174615 172300
Benin BEN Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1050 2707 4295 6286 7269 55476 125000 218770 236175 459322 596267 1055727 2051776 3625366 5033349 7074914 7765206 8407846 9627447 10780875
Bermuda BMU Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 745 1112 1440 1936 3400 5127 6324 7980 10276 12572 12800 13000 13333 30000 40000 49000 52720 60100 69000 79000 85000 88200 91000 94300 59491
Bhutan BTN Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2255 19138 36000 82078 149439 253429 338938 394316 484189 560890 544337 628289
Bolivia BOL Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 295 1551 2659 4056 7229 33400 118433 239272 420344 582620 779917 1023333 1278844 1800789 2421402 2876143 3254410 5038600 6464390 7179293 8353273 9493207 10425704 10450341
Bosnia and Herzegovina BIH Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1500 9000 25181 52607 93386 444711 748780 1074790 1407441 1594367 1887820 2450425 3179036 3257239 3110233 3171283 3357541 3488319 3491188
Botswana BWA Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15190 92000 222190 332264 332264 444978 522840 563782 823070 1151761 1485791 1874101 2363411 2900263 3081726 3246787 3410507
Brazil BRA Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 667 6700 32000 182000 574009 1285533 2498154 4550000 7368218 15032698 23188171 28745769 34880964 46373266 65605000 86210336 99918621 120980103 150641403 169385584 196929978 234357507 248323703 271099799 280728796
Brunei Darussalam BRN Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 1772 3025 4103 8304 15623 35881 43524 45000 49129 66000 95000 143004 153647 177365 202454 232900 301400 366138 398857 412882 435104 443161 469740 468814 465767
Bulgaria BGR Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 1000 6500 20920 26588 70000 127000 350000 738000 1550000 2597548 3500869 4729731 6244922 8253416 9897477 10429012 10454822 10199942 10475083 10780732 10486824 9870806
Burkina Faso BFA Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 1503 2730 5036 25245 76186 111013 238094 395939 633554 1016605 1858038 3024150 3823625 5707850 7682100 9976105 11240886 12496391
Burundi BDI Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 353 378 564 561 619 620 800 16320 33416 52000 64000 100560 153000 200000 270000 480584 920749 1678029 1914586 2247126 2536831 3193257
Cabo Verde CPV Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 1020 8068 19729 31507 42949 53342 65780 81721 108858 152212 277670 290621 371871 396429 425310 499458 613378
Cambodia KHM Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 4810 10239 14100 23098 33556 61345 89117 130547 223458 380000 498388 861500 1062000 1721650 2583318 4237000 6268000 8150764 13757000 19105115 20264514 23900000
Cameroon CMR Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 1600 2800 3500 4200 5000 6000 103279 417295 701507 1077000 1530868 2252508 3135946 4536000 6160893 8004120 8636652 10486614 13108058 15664666 17270312
Canada CAN Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 12000 60000 98364 202633 345178 583766 775831 1026611 1332982 1865779 2589780 3497779 4195000 5346000 6911038 8727000 10649000 11872000 13291000 15020000 17016600 18749100 20277400 22092500 23811900 25825400 26840000 27720000 28360000 29480000
Caribbean small states CSS Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 2072 5526 13393 23733 36161 66297 85516 108633 142649 261905 720054 1220489 2053418 2837910 3675512 4361812 5593660 6437567 7108319 7646708 7935923 7534114 7322041 7738338 7822684
Cayman Islands CYM Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 559 988 1260 1813 2534 4109 5170 8410 10700 17000 19000 21040 33800 80945 92559 101497 98313 108699 100568 96777 98834 98036 91059
Chad TCD Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5500 22000 34200 65000 123000 210000 466088 918356 1600000 2281320 2875304 3665661 4402282 4561243 5251560
Chile CHL Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 4886 13921 36136 64438 85186 115691 197314 319474 409740 964248 2260687 3401525 5100783 6244310 7268281 9261385 10569572 12450801 13955202 14796593 16450223 19852242 22315248 23940973 23661339 23683351
China CHN Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 700 3227 9805 18319 47544 176943 638000 1568000 3629000 6853000 13233000 23863000 43296000 85260000 144820000 206005000 269953000 334824000 393406000 461058000 547306000 641245000 747214000 859003000 986253000 1112155000 1229113000 1286093000
Colombia COL Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 86805 274590 522857 1264763 1800229 1966535 2256801 3265261 4596594 6186206 10400578 21849993 29762715 33941118 41364753 42159613 44477653 46200421 49066359 50295114 55330727
Comoros COM Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 8378 15523 36877 62104 91741 122596 165278 216438 283511 347500 383000
Congo, Dem. Rep. COD Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 8500 7200 8900 10000 12000 15000 150000 560000 1246225 1990722 2746094 4415470 6592000 9937622 9458557 11820348 15644877 20092678 28231900 37102958
Congo, Rep. COG Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 3390 5000 70000 150000 221800 330000 383653 558192 917499 1287631 1807000 2948304 3718748 3884757 4283134 4659762 4930100
Costa Rica CRI Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 3008 4533 6985 18750 46531 64387 108770 138178 211614 326944 502478 778299 923084 1101305 1443717 1508219 1886570 1950318 3128372 4153067 5378082 7111981 7101893
Cote d'Ivoire CIV Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13549 36000 91212 257134 472952 728545 1027058 1280696 1674332 2349439 4065421 7467708 10449036 13184308 15599044 17344242 18099532 19390902 22104575
Croatia HRV Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 240 2019 6320 11382 21664 33688 64943 120420 182500 295000 1033000 1755000 2312600 2537300 2835500 3649700 4395200 5034582 4554777 4675017 4928352 5115140 4971351 4721015 4461352
Cuba CUB Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 234 500 1152 1939 2427 2994 4056 5136 6536 8579 17851 35356 75797 135534 152715 198252 331736 621156 1003015 1315141 1681645 1995698 2530752
Curacao CUW Mobile cellular subscriptions IT.CEL.SETS 201097 204024 206294 204702 203502 196787
Cyprus CYP Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 168 1348 3156 5131 9739 15288 22938 44453 70781 91968 116429 151649 218324 314355 417933 551752 658234 782503 867785 988312 1016739 977521 1034071 1090944 1110935 1099621 1110802
Czech Republic CZE Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 1242 4651 14043 30429 48900 200315 526339 965476 1944553 4346009 6947151 8610177 9708683 10782567 11775878 12406199 13228631 13780165 13062617 12934100 13167700 13521900 13670000 13966200
Denmark DNK Mobile cellular subscriptions IT.CEL.SETS 0 7200 16100 30600 46100 57604 77432 101479 123792 148220 175943 211063 357589 503500 822264 1316592 1444016 1931101 2628585 3363552 3960165 4477752 4767100 5166912 5449206 5828157 6308000 6556988 6833683 6420790 7173185 7292756 7142864 7104253
Djibouti DJI Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 110 203 220 280 230 3000 15000 23000 34482 44053 44817 69539 112848 128776 165613 193049 212468 244123 287049
Dominica DMA Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 461 556 650 800 1200 7710 12173 23786 41838 52000 71500 89000 91000 98500 105567 108924 109300 93575 92200
Dominican Republic DOM Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 3166 5605 7190 10364 20990 55979 82547 141592 209384 424434 705431 1270082 1700609 2091914 2534063 3623289 4605659 5512859 7210483 8629815 8892783 8770780 8934196 9200410 8303536
Ecuador ECU Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 18920 54380 59779 126505 242812 383185 482213 859152 1560861 2398161 3544174 6246332 8485050 9939977 11684479 13241758 14780730 15332715 16456740 16626199 16605737
Egypt, Arab Rep. EGY Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 2627 3021 3619 4000 4500 4913 6877 7371 7368 7369 65378 90786 480974 1359900 2793800 4494700 5797530 7643060 13629602 18001106 30093673 41286662 55352233 70661005 83425145 96798801 99704976 95316034
El Salvador SLV Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 1632 4868 13475 23270 40163 137114 511365 743628 857782 888818 1149790 1832579 2411753 3851611 6137381 6950703 7566245 7700336 8316150 8649000 8991899 9194242
Equatorial Guinea GNQ Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 61 300 297 600 5000 15000 32000 41500 61900 96900 120000 150000 180000 200000 399290 478860 501077 510783 516540
Eritrea ERI Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20000 40438 61996 84348 108631 141130 185275 241939 305283 354844 417400
Estonia EST Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 570 2498 7224 13774 30452 69500 144200 247000 387000 557000 651200 881000 1050241 1255731 1445300 1658700 1681849 1624465 1570538 1652809 1863120 2070547 2055234 2062864
Ethiopia ETH Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6740 17757 27500 50369 51324 155534 410630 866700 1208498 1954527 4051703 6854000 14126659 20523889 25646865 30490000
European Union EUU Mobile cellular subscriptions IT.CEL.SETS 48640 68316 94620 140524 259136 469097 816503 1381039 2231581 3091744 4254904 5672791 8551304 14002844 22064788 34876389 55919342 95776127 165044052 261258189 316946803 348155529 383885247 425333693 476026857 523888879 576661868 605497199 607056183 597051965 612461382 623324852 631014117 632545654
Faeroe Islands FRO Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 1429 1718 1605 1960 2558 3265 4701 6516 10761 16971 24487 34737 38026 41298 42032 49965 52169 54860 56993 59446 58475 58722 59700 61388
Fiji FJI Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 1100 2200 3700 5200 8000 23380 55057 80933 89900 109882 142190 205000 284661 530048 600000 640000 697920 727000 858809 930406 876176
Finland FIN Mobile cellular subscriptions IT.CEL.SETS 28278 33880 42226 52010 67639 85300 105860 138160 190031 257872 319137 386021 489174 675565 1039126 1502003 2162574 2845985 3273433 3728625 4175587 4516772 4747126 4988000 5270000 5670000 6080000 6830000 7700000 8390000 8940000 9320000 7411200 7602600
Fragile and conflict affected situations FCS Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 1754 6623 12025 143360 247436 485855 747082 1304951 2042511 3699551 5828818 9690477 16093659 24602480 48299997 75524336 106843386 134516840 168470468 199917165 229103961 266913977 311315539
France FRA Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 9055 39234 98332 178400 283200 375000 436700 572000 883000 1302496 2462700 5817300 11210100 21433500 29052360 36997400 38585300 41702000 44544000 48088000 51662000 55358100 57972000 57918000 57785000 59816000 62260000 63324000 64875000
French Polynesia PYF Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1150 2719 5427 11060 21929 39900 67300 52250 60100 96000 120000 152000 174847 187146 208261 215890 222827 226000 236900 239700
Gabon GAB Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 280 1200 2581 4000 6800 9500 9694 8891 120000 150000 279289 300000 489367 736690 897987 1169000 1300000 1450000 1610000 2370227 2930000 3590000 3600000
Gambia, The GMB Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 204 457 812 1442 3096 4734 5048 5307 5600 55085 100000 149300 175000 247478 404345 800371 1166136 1312874 1478347 1401163 1526191 1848854 2283691
Georgia GEO Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 150 2300 30000 60000 133243 194741 301327 503619 711224 840645 1174308 1703888 2599714 2755087 2837000 3978242 4430344 4698582 4993119 5400766
Germany DEU Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 1080 23800 48747 98763 163619 272609 532251 971890 1774378 2490500 3725000 5512000 8276000 13913000 23446000 48202000 56126000 59128000 64800000 71322000 79271000 85652000 96232925 105523065 105000000 88400000 90900000 92400000 100034000 99529006
Ghana GHA Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 400 1742 3336 6200 12766 21866 41753 70026 130045 243797 386775 795529 1695000 2874560 5207242 7604053 11570430 15108916 17436949 21165843 25618427 28026482 30360771
Greece GRC Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 48000 153000 273000 532000 937700 2047000 3904000 5932403 7963742 9314260 8936202 9324335 10260396 10979826 12294912 13799340 13295093 12292716 12127985 13360280 12999790 12793423
Greenland GRL Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 171 438 964 2052 4122 6481 8899 13521 15114 15882 19924 29749 39033 46480 53900 66400 55816 53468 57349 58742 59455 60400 60800
Grenada GRD Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 150 147 181 282 350 400 570 976 1410 2012 4300 6414 7553 42293 43313 46858 46193 51381 60022 114424 121946 120855 129912 133000 134500
Guam GUM Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 867 1301 1907 4098 4965 5803 5673 12837 20000 27200 32600 70500 79800 98000
Guatemala GTM Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 293 1221 2141 2990 10462 29999 43421 64194 111445 337800 856831 1146441 1577085 2034776 3168256 4510067 7178745 11897563 14948640 17307459 18067970 19479105 20787080 21716357 16911811
Guinea GIN Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 42 812 950 950 2868 21567 25182 42112 55670 90772 111500 154900 189000 2000000 2750000 3489000 4000000 4860590 5584700 7436471 8683500
Guinea-Bissau GNB Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1275 39451 98825 157330 296223 500156 560345 677365 732634 1049193 939909 1108297
Guyana GUY Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 841 1029 1251 1243 1200 1400 1454 2815 39830 75320 79400 137955 171656 281368 400000 538774 447769 488533 560397 528757 547047 555035 566905
Haiti HTI Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10000 25000 55000 91500 140000 320000 400000 500200 1200000 2500000 3200000 3648000 4000000 4200000 6094947 7160200 6769312
Honduras HND Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2311 14427 34896 78588 155271 237629 326508 379362 707201 1281462 2240756 4184834 6210711 8390755 9505071 8062229 7370034 7767235 7725092
Hong Kong SAR, China HKG Mobile cellular subscriptions IT.CEL.SETS 0 0 0 1000 4400 10000 28060 51280 89193 133912 189664 233324 290843 484823 798373 1361861 2229862 3174369 4275048 5447346 5776360 6395725 7349202 8213959 8544255 9444140 10751622 11580149 12597171 13793729 15292924 16387536 17098440 17371999
Hungary HUN Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 2645 8477 23292 45712 143000 265000 473100 705786 1070154 1628153 3076279 4967430 6886111 7944586 8727188 9320000 9965720 11029930 12224163 11792475 12011823 11689937 11579425 11590326 11726491
Iceland ISL Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 2642 5008 6519 7893 10010 12889 15251 17409 21845 30883 46805 65368 104280 172614 214896 248131 260438 279670 290068 283108 301922 326098 336922 339715 341077 344085 352114 356264 370047
India IND Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 76680 327967 881839 1195400 1884311 3577095 6540000 13000000 33690000 52220000 90140000 166050000 233620000 346890000 525090000 752190000 893862478 864720917 886304245 944008677
Indonesia IDN Mobile cellular subscriptions IT.CEL.SETS 0 0 0 1750 2029 4531 6321 9008 12928 18096 24528 35546 53438 78024 210643 562517 916173 1065820 2220969 3669327 6520947 11700000 18495251 30336607 46909972 63803015 93386881 140578243 163676961 211290235 249805619 281963665 313226914 319000000
Iran, Islamic Rep. IRN Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 9200 15902 59967 238942 389974 490478 962595 2087353 2279143 3449876 5075678 8510513 15385289 29770000 43000000 52555000 54051764 56043006 58157539 65246219 68891151
Iraq IRQ Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20000 80000 574000 1533000 9345371 14021232 17529000 20116876 23264408 25519000 26756000 32450000 33000000
Ireland IRL Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 300 1500 3475 6300 13579 25000 32000 44000 61100 88000 158000 288600 545000 946000 1677000 2461000 2970000 3000000 3500000 3860000 4270000 4690135 4970719 5048127 4704497 4701474 4906352 4905944 4880104 4876384
Israel ISR Mobile cellular subscriptions IT.CEL.SETS 15240 23000 36104 64484 133425 445456 1047582 1672442 2147000 2880000 4400000 5500621 6300008 6618367 7221955 7757000 8403765 8902000 8982000 9022000 9111000 9200000 9225000 9500000 9500000
Italy ITA Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 6415 9044 16534 33609 66070 266000 568000 783000 1207175 2240000 3923000 6422000 11737904 20489000 30296000 42246000 51246000 54200000 56770000 62750000 71500000 80418000 89801000 90341000 90032886 93666088 96040913 97188624 96863107 94200000
Jamaica JAM Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 2447 7628 15221 26106 45138 54640 65995 78624 144388 366952 597826 1244976 1576360 1837552 1981464 2274650 2684331 2723323 2956061 3181995 2945395 2714938 2846196 2880589
Japan JPN Mobile cellular subscriptions IT.CEL.SETS 13275 19804 27198 40392 61800 95131 150773 242888 489558 868078 1378108 1712545 2131367 4331369 11712137 26906511 38253893 47307592 56845594 66784374 74819158 81118324 86655000 91474000 96484000 99826000 107339000 110394996 116295378 123287125 132761125 141129280 147887593 152695677
Jordan JOR Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 1439 1462 1462 1456 1446 11840 24113 45037 82429 118417 388949 865627 1219597 1325313 1624110 3137700 4343100 4771641 5313564 6014366 6620000 7482561 8984252 10313976 11092484
Kazakhstan KAZ Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 400 4600 9798 11202 29700 49500 197300 582000 1027000 1330730 2447000 5398000 7775737 12322676 14910573 17063200 19402600 25240800 30235400 30364900 28003000
Kenya KEN Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 1100 1162 1990 2279 2826 6767 10756 23757 127404 600000 1187122 1590785 2546157 4611970 7340317 11349412 16303573 19364559 24968891 28080771 30731754 31830003 33632631
Kiribati KIR Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22 200 300 395 495 526 615 650 700 750 1000 9907 10595 13788 16000 17000 18100
Korea, Dem. Rep. PRK Mobile cellular subscriptions IT.CEL.SETS 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 69261 431919 1000000 1700000 2420000 2800000
Korea, Rep. KOR Mobile cellular subscriptions IT.CEL.SETS 0 0 0 7090 10255 20353 39718 80005 166108 271927 471784 960258 1641293 3180989 6878786 14018612 23442724 26816398 29045596 32342493 33591758 36586052 38342323 40197115 44369165 45606984 47944222 50767241 52506793 53624427 54680840 57207957
Kuwait KWT Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 8200 14300 17500 22500 20735 43000 51000 64311 85195 117609 151063 210000 250000 300000 476000 877920 1227000 1420000 1774567 1382084 1179573 1426395 1499912 2618413 3979145 4934160 5100000 6410000 7600000
Kyrgyz Republic KGZ Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1350 2574 9000 27000 53084 138279 263375 541652 1261757 2168329 3394016 4487123 5275477 6277108 6797852 6737487 7563444
Lao PDR LAO Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 290 340 625 1539 3790 4915 6453 12078 12681 29545 55160 112275 204191 657528 1009565 1478409 2022133 3234642 4003395 5480851 4300000 4612612 4618586
Latvia LVA Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 1027 3800 8364 15003 28500 77100 167460 274344 401272 656835 917196 1219550 1536712 1871602 2183696 2217008 2298610 2303600 2306100 2309000 2630873 2558000 2535000
Lebanon LBN Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 120000 198000 373900 505300 627000 743000 766754 775104 795460 884445 993557 1106431 1260000 1427000 2390317 2863664 3456650 3755169 3884757 4387275
Lesotho LSO Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1262 3500 9831 12000 21600 57000 137953 125950 196213 249786 357913 482455 593216 661000 987448 1232354 1544815 1790295 2137330
Liberia LBR Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1500 2000 5000 47250 94370 160000 280000 563000 854627 1085062 1571308 2020637 2379900 2550775 3225258
Libya LBY Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10000 20000 30000 40000 50000 70000 127000 500000 2000000 3927562 4500000 7379115 9534091 10900000 10000000 9587000 10235300 10075600
Liechtenstein LIE Mobile cellular subscriptions IT.CEL.SETS 0 7500 9000 10000 11000 11402 25000 25500 27503 28755 32013 34000 35000 35500 36970 36080 38427 38800
Lithuania LTU Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 267 1242 4512 14795 50973 165337 267615 332000 524000 1017999 1645568 2102207 3051160 4353447 4718215 4912077 5022638 4961499 4890979 4938000 4997265 4565976 4423483
Luxembourg LUX Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 40 292 375 542 665 824 1139 1120 5082 12895 26838 45000 67208 130500 209190 303274 409064 473000 539000 470000 510000 713000 684500 707000 720000 727000 764973 761314 788371 796400
Macao SAR, China MAC Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 1356 2232 4847 10513 15135 21445 35881 44788 52845 82114 118101 141052 194475 276138 364031 432450 532758 636347 794323 932596 1037380 1122261 1353194 1613457 1722245 1856453
Macedonia, FYR MKD Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1058 12362 30087 48733 115748 223275 365346 776000 985600 1131006 1263841 1794433 1967531 1943216 2153425 2213223 2235460 2237250 2300305
Madagascar MDG Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 300 1300 2300 4100 12784 35752 63094 147500 163010 283666 333888 510269 1045888 2217612 4835239 6283799 7711721 8680772 8778600 8461120 9008947
Malawi MWI Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 382 3700 7000 10500 22500 49000 55730 86047 135114 222135 421163 620163 1050852 1507684 2485646 3117364 3951572 4646894 5290044 5132514
Malaysia MYS Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 10817 17411 27302 39419 86620 130000 200573 340022 571720 1005066 1520320 2000000 2200000 2990000 5121748 7385000 9053000 11124000 14611000 19545000 19463722 23347000 27713000 30144000 33858700 36661300 41324700 43005000 44928600
Maldives MDV Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 1290 1606 2926 7638 18894 41899 66466 113246 203620 271053 313539 435627 457770 494351 530449 560547 625161 665818
Mali MLI Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1187 2842 4473 6387 10398 23997 45974 247223 406861 761986 1512948 2530891 3438568 4460543 7440383 10821930 14612835 19749371 23498425
Malta MLT Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 2280 3500 5300 7500 10791 12500 17691 22531 37541 114444 239416 276859 289992 306067 323980 346771 368530 385636 422083 455579 521748 532228 556652 546214
Marshall Islands MHL Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 280 264 365 466 345 443 447 489 552 598 644 660 15500
Mauritania MRT Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15300 110463 247238 350954 522400 745615 1060122 1413967 2091992 2182249 2776050 3314767 4025478 3988195 3753330
Mauritius MUS Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 2200 2500 2912 4037 5706 11735 20843 42515 60448 102119 180000 272416 347532 462405 547745 656828 772395 928622 1033300 1086748 1190900 1294100 1485800 1533600 1652000
Mexico MEX Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 1500 8500 63926 160898 312647 386132 569251 688513 1021900 1740814 3349475 7731635 14077880 21757559 25928266 30097700 38451135 47128746 55395461 66559462 75303469 83193574 91383493 94583253 100727228 103761704 102187895
Micronesia, Fed. Sts. FSM Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 5869 12782 14094 18616 27436 27500 27500 27518 27600 31213 31393
Moldova MDA Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 920 2200 7000 18000 139000 225000 338225 475942 787000 1089800 1358152 1882830 2423416 2136409 2550592 3217261 3584283 3696834 3738125
Monaco MCO Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 1150 2559 3005 5400 7200 11474 13080 13927 14302 14874 15081 15750 17191 18307 20400 22000 23000 23414 31789 33195 35464 33675
Mongolia MNG Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 900 2000 9032 34562 154600 195000 216000 319000 428695 557207 774900 1194583 1763178 2249023 2510470 2942313 3375205 3525678 3027243
Montenegro MNE Mobile cellular subscriptions IT.CEL.SETS 483766 543220 643681 900000 1158032 1294167 1170000 1159112 990869 993902 1013296
Morocco MAR Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 60 105 700 904 1500 3217 6725 13794 29511 42942 74472 116645 369174 2342000 4771739 6198670 7359870 9336878 12392805 16004731 20029300 22815694 25310761 31982279 36553943 39016336 42423794 44114534
Mozambique MOZ Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2500 6725 12243 51065 152652 254759 435757 708000 1503943 2339317 3079783 4405006 5970781 7224176 7855345 8804986 12401290 18444219
Myanmar MMR Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 643 1920 2766 7260 8492 8516 11389 13397 22671 47982 66517 92452 128700 214214 247641 367388 502005 594000 1243619 3729617 6832380 26575713
Namibia NAM Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3500 6644 12500 19500 30000 82000 106600 150000 223671 286095 448857 608846 800270 1052000 1631576 1950072 2194495 2146833 2727913 2670983
Nepal NPL Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5500 10226 17286 21881 81867 116778 227316 1157102 3268895 4200000 5597880 9195562 13354477 16608622 21362289 23196036
Netherlands NLD Mobile cellular subscriptions IT.CEL.SETS 0 0 0 4800 15300 24200 33000 56000 79000 115000 166000 216000 321000 539000 1016000 1717000 3351000 6745460 10755000 12200000 12100000 13200000 14800000 15834000 17296000 19285000 20627000 20149000 19179000 19829309 19717000 19467000 19562000
New Caledonia NCL Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 825 2060 5198 13040 25450 49948 67917 80000 97113 116443 134265 155000 176350 196474 209595 220811 227310 231000 240500 243100
New Zealand NZL Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 2400 10000 28900 54100 72300 100200 143800 239200 365000 492800 566200 790000 1395000 1542000 2288000 2449000 2599000 3027000 3530000 3802290 4251207 4620000 4700000 4710000 4820000 4922000 4766000 5100000
Nicaragua NIC Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 324 2183 4400 5100 7560 18310 44229 90294 164509 237248 466706 738624 1119379 1830220 2502281 3108002 3344563 3962247 4823534 5851723 6808930 7067860
Niger NER Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 98 1349 2192 2056 2126 57541 82365 172421 323853 483000 900000 1897628 2599000 3668625 4742879 5395540 7006300 8236400
Nigeria NGA Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 9049 12800 13000 14000 15000 20000 25000 30000 266461 1569050 3149473 9147209 18587000 32322202 40395611 62988492 74518264 87297789 95167308 112777785 127246092 138960320
North America NAC Mobile cellular subscriptions IT.CEL.SETS 91600 352213 741825 1329219 2272074 3854867 5867933 8334419 12061300 17345843 26005327 36381765 47548751 59517569 74567893 92970841 118218031 139162333 153702000 173968000 199888000 220769320 248409200 269646400 283471500 298179900 311031600 324244000 332649000 339152300 346983291
Northern Mariana Islands MNP Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 732 765 1200 2905 3000 13200 17137 18619 20474
Norway NOR Mobile cellular subscriptions IT.CEL.SETS 1670 11059 23473 39050 63075 87061 120029 152193 167651 196828 234423 282918 371403 588478 981305 1261445 1676763 2072000 2664000 3224000 3593000 3790000 4060829 4524750 4754453 4868916 5037650 5211207 5354554 5599286 5725447 5797502 5863034 5932761
Oman OMN Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 52 747 1159 1711 2098 2730 3672 4721 5616 6751 8052 15000 53000 98000 121000 162000 323000 463000 594000 806280 1333225 1818024 2500000 3219349 3970563 4606133 4809248 5277591 5617426 6194169
Pakistan PAK Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 2000 8500 13500 16000 24662 40964 68038 135027 196096 265614 306493 742606 1698536 2404400 5022908 12771203 34506557 62856712 88019742 94342030 99185844 108894518 120151237 127737286 135762031
Palau PLW Mobile cellular subscriptions IT.CEL.SETS 2458 3924 3924 6051 8346 10691 11667 12744 14512 15445 17151 17945 19114
Panama PAN Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7000 23474 85883 232888 410401 475141 525845 692406 1259948 1748740 2174451 3010635 3915246 6066683 6646348 6735429 6213564 6297604 6205238
Papua New Guinea PNG Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2285 3857 5558 7059 8560 10700 15000 17500 48311 75000 100000 300000 874000 1417546 1909078 2400000 2709000 3000000 3358900
Paraguay PRY Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 1500 3390 7660 15807 32860 84240 231520 435611 820810 1150000 1667018 1770345 1749048 1887000 3232842 4694361 5790759 5618639 5920858 6529053 6793703 7053297 7305277
Peru PER Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 1650 5700 21550 36300 52200 73543 200972 421814 742642 1013314 1273857 1793284 2306943 2930343 4092558 5583356 9120000 15417247 20951834 24700361 29115149 32461415 29388077 29793297 31666244
Philippines PHL Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 34600 56044 102400 171903 493862 959024 1343620 1733652 2849980 6454359 12159163 15383001 22509560 32935875 34778995 42868911 57344815 68117167 75586646 83150138 94189795 101978345 102823569 111326045
Poland POL Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 2195 15699 38942 75000 216900 812200 1928042 3956500 6747000 10004661 13898471 17401222 23096065 29166391 36745454 41388774 43926365 44806632 46952111 50160222 54086209 56972803 59795800
Portugal PRT Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 2782 6500 12600 37262 101300 173508 340845 663651 1506958 3074633 4671458 6664951 7977537 8670000 10002705 10571100 11447313 12226439 13477414 14049187 11795080 12210377 12334595 11917565 11990993 11861924
Puerto Rico PRI Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 3917 8700 11600 20369 33410 60000 95000 175000 287000 329000 367000 580000 813800 1318099 1628161 1646932 1709062 1847927 1993465 2198845 2431512 2543587 2712220 2933988 3108372 3049697 3085146 3208824
Qatar QAT Mobile cellular subscriptions IT.CEL.SETS 0 3811 4057 4233 4289 11533 18469 28772 43476 65756 84365 120856 177929 266703 376535 490333 716763 919773 1264206 1429486 1948770 2186447 2302225 2601210 3310353 3305822
Romania ROU Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 800 2775 9068 17000 201000 643000 1355500 2499000 3845116 5110591 7039898 10215388 13354138 15991000 20400000 24470000 25100000 24360000 23420000 22840000 22910000 22920000
Russian Federation RUS Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 300 6000 10000 27744 88526 223002 484883 747160 1370630 3263200 7750499 17608756 36135135 73722222 120000000 150674000 171200000 199522340 230050000 237689224 203751647 208065063 218300372 221030353
Rwanda RWA Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5000 11000 39000 65000 82391 130720 137271 222978 314201 635137 1322637 2429252 3548761 4446194 5690751 6689158 7747019
Samoa WSM Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 766 1480 2432 2500 2500 2700 10500 16000 24000 45500 86000 90000 100302 99887 106524
San Marino SMR Mobile cellular subscriptions IT.CEL.SETS 0 900 1300 1900 2340 2279 2350 4980 9580 14503 15854 16759 16900 17085 17150 17390 17500 24402 29949 30587 35465 36000 36780 37600
Sao Tome and Principe STP Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1980 4819 7745 11953 18424 30099 50551 80829 102730 115038 122172 125329 128500
Saudi Arabia SAU Mobile cellular subscriptions IT.CEL.SETS 14851 15331 15828 15910 15959 16008 190736 332068 627321 836628 1375881 2528640 5007965 7238224 9175764 14164184 19700000 28400000 36000000 44864355 51564375 54000000 53000000 53104000 52736089
Senegal SEN Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 98 122 1412 6942 27487 87879 250251 301811 553449 782423 1121314 1730106 2982623 3630804 5389133 6901492 8343717 9352868 11470646 13133772 14379729
Serbia SRB Mobile cellular subscriptions IT.CEL.SETS 4729629 5510690 6643722 8452642 9618767 9912339 9915348 10182023 9137894 9198717 9344977
Seychelles SYC Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 1043 2247 5190 16316 25961 36683 44731 49229 54369 58806 70340 77278 93476 110668 117587 126594 136480 136790 151336
Sierra Leone SLE Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11940 26895 67000 113214 776000 1008800 1160000 2000000 2137000 2210000 4000000 4756800
Singapore SGP Mobile cellular subscriptions IT.CEL.SETS 0 0 0 10827 26295 51728 81906 120000 179000 235630 306000 431010 848600 1094700 1630800 2747400 2991600 3313000 3577000 3990700 4384600 4788600 5924100 6414800 6884800 7384600 7794300 8067600 8438100 8724200
Sint Maarten (Dutch part) SXM Mobile cellular subscriptions IT.CEL.SETS
Slovak Republic SVK Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 119 1537 3125 5946 12315 28658 200140 465364 664072 1243736 2147331 2923383 3678774 4275164 4540374 4893232 6068063 5520043 5497719 5925012 5983059 6094466 6208412 6378095
Slovenia SVN Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 523 3500 6500 16332 27301 41205 93611 161606 631411 1215601 1470085 1667234 1739146 1848637 1759232 1819572 1928412 2054899 2100435 2121950 2168548 2241160 2283573 2326386
Small states SST Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 4272 8026 16789 29427 46848 90139 130253 192859 286292 582400 1503002 2439808 3752473 5044517 7158308 8989245 11722248 15168844 18305576 21188873 23955204 25992990 27836429 30593959 32306359
Solomon Islands SLB Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 144 230 337 658 702 1093 1151 967 999 1060 3000 6000 7000 10900 30000 50000 115500 274872 302147 323105 376696
Somalia SOM Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 80000 85000 100000 200000 500000 500000 550000 600000 627000 641000 648200 1800000 2300000 5183000 5500000
South Africa ZAF Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 3980 5680 7100 12510 40000 340000 535000 953000 1836000 3337000 5188000 8339000 10787000 13702000 16860000 20839000 33959958 39662000 42300000 45000000 46436000 50372000 64000000 68394000 76865278 79540205
South Asia SAS Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 3010 10300 16394 31187 54948 171460 471054 1159044 1642304 2564006 4610654 8506448 16793719 39203391 63084788 116939914 229130635 347230170 503420161 703991350 959743272 1137372523 1138635870 1195029772 1270158089
South Sudan SSD Mobile cellular subscriptions IT.CEL.SETS 1500000 1800000 2300000 2853228 2876097
Spain ESP Mobile cellular subscriptions IT.CEL.SETS 0 0 1700 4200 11628 29783 54700 108451 180296 257261 411930 944955 2997645 4337696 6437444 15003708 24265059 29655729 33530997 37219839 38622582 42694115 45695061 48422470 49623339 51052693 51389417 52590507 50665099 50158689 50760771
Sri Lanka LKA Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 1010 1800 2644 14687 29182 51316 71029 114888 174202 256655 430202 667662 931403 1393403 2211158 3361775 5412496 7983489 11082454 16305417 17359312 18319447 19332844 20315150 22123000
St. Kitts and Nevis KNA Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 300 205 440 700 1200 2100 5000 22000 29000 51000 51000 64500 74500 75500 80000 77000 76000 77000 76600
St. Lucia LCA Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 524 1000 1400 1600 1900 2300 2500 2700 14313 99000 101000 105656 105600 147000 175045 189738 198212 216530 216000 212000 188351
St. Martin (French part) MAF Mobile cellular subscriptions IT.CEL.SETS
St. Vincent and the Grenadines VCT Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 70 83 150 215 280 346 750 1420 2361 7492 9982 62911 72000 70620 87634 110491 130098 121114 131791 131809 126992 125378 115017
Sudan SDN Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2200 3800 8600 13000 23000 103846 190778 527233 1048558 1827940 4683127 8218092 11991469 15339895 18093231 25056185 27658595 27657875 27796611
Suriname SUR Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 1078 1382 1687 2416 2258 6007 17500 41048 87000 108363 168522 212819 232785 320000 380000 657106 763912 521166 533522 569069 868600 927800
Swaziland SWZ Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4700 14000 33000 55000 68000 85000 145000 200000 250000 380000 531643 664432 725802 766540 805000 893000 916800
Sweden SWE Mobile cellular subscriptions IT.CEL.SETS 20362 27236 36294 57914 73000 112600 173000 243000 349000 461200 568200 656000 774500 1381000 2008000 2492000 3169000 4109000 5126000 6372300 7178000 7949000 8801000 8785000 9104000 9607000 10116852 10014000 10440000 10992407 11454252 11848449 12014368 12312387
Switzerland CHE Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 5475 30768 72735 125047 174557 215061 257703 332165 447167 662713 1044379 1698565 3057509 4638519 5275791 5736303 6189000 6274763 6834233 7436157 8208884 8896706 9322580 9644157 10082636 10561075 11048637 11465000
Syrian Arab Republic SYR Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4000 30000 200000 400000 1185000 2346000 2950000 4675000 6234682 7056158 10021861 11696000 12917000 12980000 12291150 15598936
Tajikistan TJK Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 102 320 420 625 1160 1630 13200 47617 135000 265000 2150000 2132770 3673520 4900000 5940842 6324000 6528000 7537100 7999100
Tanzania TZA Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 371 3500 9038 20200 37940 50950 110518 275560 606859 1298000 1942000 2964000 5609000 8252000 13006793 17469486 20983853 25666455 27219283 27442823 31862656
Thailand THA Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 821 5882 17563 39936 63223 123551 250584 413557 737283 1297826 1844627 2203905 1976957 2339401 3056000 7550000 17449890 21616910 26965548 30460238 40125470 52973994 61837164 65952313 71726300 77449000 85012000 93849000 97096000
Timor-Leste TLS Mobile cellular subscriptions IT.CEL.SETS 0 20058 25722 33072 49100 78215 125002 350891 473020 614151 621000 650000 676900
Togo TGO Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2995 7500 17000 50000 95000 165138 243613 332565 433635 708000 1190319 1549542 2187334 2602283 2695335 3312239 4262993 4822900
Tonga TON Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 300 302 120 130 140 180 236 3354 11200 16400 29872 30051 46525 50472 53000 54300 55000 56000 57500 68000
Trinidad and Tobago TTO Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 426 1277 1679 2599 6353 9534 17140 26307 38659 161860 256106 262772 336352 651189 924100 1518800 1509800 1806120 1846345 1894240 1826200 1883683 1943873 1980566
Tunisia TUN Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 224 401 636 953 1239 1974 2269 2709 3185 6500 7656 38998 55258 119165 389208 574334 1917530 3735695 5680726 7339047 7842619 8602164 9797026 11114206 12387656 12843889 12712365 14283633
Turkey TUR Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 365 5101 9846 15606 31809 47828 61395 84187 174779 437130 806339 1609809 3506127 8121517 16133405 19572897 23323118 27887535 34707549 43608965 52662700 61975807 65824110 62779554 61769635 65321745 67680547 69661108 71888416
Turkmenistan TKM Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2500 3000 4000 7500 8173 8173 9187 50100 105000 216868 381670 1135150 2132890 3197624 5300000 5900000 6125300 7206100
Tuvalu TUV Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 1300 1600 1800 1000 1600 2130 2800 3400 3800
Uganda UGA Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1747 4000 5000 30000 56358 126913 283520 393310 776169 1165035 1315300 2008818 4195278 8554864 9383734 12828264 16696992 16356387 18068648 20365941
Ukraine UKR Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 65 5000 14000 30000 57200 115500 216567 818524 2224600 3692700 6498423 13735000 30013500 49076239 55240400 55681476 54942815 53928830 55576481 59343693 62458800 61170229
United Arab Emirates ARE Mobile cellular subscriptions IT.CEL.SETS 2330 3564 4936 7924 11191 13711 13823 24946 33578 43008 48919 70586 91488 128968 193834 309373 493278 832267 1428115 1909303 2428071 2972331 3683117 4534143 5519293 7731508 9357735 10671878 10926019 11727401 13775252 16063547 16819024
United Kingdom GBR Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 50000 130000 290000 560000 975000 1114000 1260000 1507000 2268000 3940000 5735785 7248355 8841000 14878000 27185000 43452000 46283000 49228000 54256221 59687915 65471665 70077926 73836210 74940937 76481053 76729827 77162298 78329355 78673978 78460684
United States USA Mobile cellular subscriptions IT.CEL.SETS 91600 340213 681825 1230855 2069441 3508944 5283055 7557148 11032753 16009461 24134421 33785661 44042992 55312293 69209321 86047003 109478031 128500000 141800000 160637000 184819000 203700000 229600000 249300000 261300000 274283000 285118000 297404000 304838000 310698000 317443800
Uruguay URY Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 1712 4969 6825 39904 78601 99235 151341 319131 410787 519991 513528 497530 599768 1154923 2330011 3004323 3507816 4111560 4437158 4757425 4995459 5267947 5497094
Uzbekistan UZB Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 500 902 3731 9510 17232 26826 40389 53128 128012 186900 320815 544100 720000 2530365 5691458 12375274 16417914 20952000 25441789 20274090 21500000 21639200
Vanuatu VUT Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 64 121 154 207 220 300 365 350 4900 7800 10504 12692 15000 26000 36000 131682 169935 136956 146084 127244 156051
Venezuela, RB VEN Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 1800 3685 7422 16600 78560 182600 319000 403800 581700 1071900 2009757 3784735 5447172 6472584 6541894 7015121 8420980 12495721 18789466 23820133 27414377 28123570 27880132 28781999 30569073 30896079 30528022
Vietnam VNM Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 800 4060 12500 23500 68910 160457 222700 328671 788559 1251195 1902388 2742000 4960000 9593200 18892480 45024048 74872310 98223980 111570201 127318045 131673724 123735557 136148124
Virgin Islands (U.S.) VIR Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 16000 25000 30000 35000 41000 45150 49300 64200 80300
West Bank and Gaza PSE Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 7076 175941 251602 264091 436628 567584 821800 1021481 1314406 1800000 2603582 2884964 3134700 3190233 3197550
Yemen, Rep. YEM Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 1550 5170 8191 8250 8810 12245 16146 27677 32042 147837 486667 675162 1476000 2277559 2977781 4349000 6445000 8313000 11085000 11668000 13900000 16844700 17100000
Zambia ZMB Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1547 2721 4550 8260 28190 98853 121200 139092 241000 464354 949559 1663328 2639026 3539003 4406682 5446991 8164553 10524676 10395801 10114867
Zimbabwe ZWE Mobile cellular subscriptions IT.CEL.SETS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5734 19000 174000 266441 314002 338779 363651 425745 647110 849146 1225654 1654721 3991000 7700000 9200000 12613935 13633167 11798652
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment