Skip to content

Instantly share code, notes, and snippets.

@201513139
Last active February 1, 2016 20:45
Show Gist options
  • Save 201513139/7714dcf16424dd193d44 to your computer and use it in GitHub Desktop.
Save 201513139/7714dcf16424dd193d44 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Modulo2 ejercicio 3</title>
<!--
Esto es un comentario, no será interpretado por el navegador
Esta línea sirve para añadir un fichero CSS externo
<link rel="stylesheet" type="text/css" href="mystyle.css">
-->
<meta charset="utf-8">
<title>El título de mi página</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.min.js" charset="utf-8"></script>
</head>
<body>
<h1>Crecimiento de la Telefonía Móvil en Colombia</h1>
<h3>Impacto de las empresas extranjeras</h3>
<p>El aumento de la penetración de la telefonía móvil en Colombia, pasó de 10 a 22 millones de usuarios. Esto representó, según la Comisión de Regulación de Telecomunicaciones (CRT), 54% más de ingresos para esta industria durante el 2005.</p>
<svg width="500px" height="200px" style="border:solid 1px #000">
<g fill="none" stroke="blue" stroke-width="7">
<path stroke-dasharray="5,5" d="M5 20 l215 0" />
<path stroke-dasharray="10,10" d="M5 40 l215 0" />
<path stroke-dasharray="20,10,5,5,5,10" d="M5 60 l215 0" />
</g>
<svg height="80" width="300">
<svg width="400" height="180">
<rect x="50" y="20" rx="20" ry="40" width="150" height="90"
style="fill:red;stroke:black;stroke-width:5;opacity:0.5" />
</svg>
</svg>
<text x="150px" y="150px" font-size="50px">Telefonía móvil</text>
</svg>
<script>
d3.csv("Suscripciones_por_CelularUNDATA.csv", function(data) {
console.log("Telefonía",data);
});
3.csv("http://localhost:8888/Suscripciones_por_CelularUNDATA.csv", function(data) {
console.log("Telefonía",data);
});
</body>
</html>
Country Year Suscripciones
Colombia 2013 104,084,543,899,334
Colombia 2012 10,285,493,838,968
Colombia 2011 981,342,533,172,899
Colombia 2010 957,645,525,770,184
Colombia 2009 920,464,098,066,481
Colombia 2008 916,101,235,892,505
Colombia 2007 762,749,348,909,028
Colombia 2006 678,872,831,756,854
Colombia 2005 505,973,968,244,647
Colombia 2004 244,560,529,517,486
Colombia 2003 147,740,697,010,519
Colombia 2002 111,523,682,472,839
Colombia 2001 805,071,460,961,914
Colombia 2000 565,642,865,564,335
Colombia 1999 501,230,880,319,334
Colombia 1998 466,766,849,747,366
Colombia 1997 333,698,597,290,366
Colombia 1996 140,416,601,899,811
Colombia 1995 0.750781397496767
Colombia 1994 0.241692749696412
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment