conectividad

EVOLUCIÓN DE LA CONECTIVIDAD DIGITAL EN CHILE

📊 Resultados Principales

Posición de Chile:

Chile lidera América Latina con un 94.3% de penetración de internet en 2023, superando el promedio OCDE (91%) y muy por encima del promedio regional (78%) Freedom HouseDataReportal

En velocidad de internet fija, Chile ocupa el segundo lugar mundial con 347.4 Mbps de velocidad promedio de descarga Telecommunication in Chile

Evolución Temporal:

Chile pasó de 19.1% de penetración en 2001 a más del 94% en 2023, un crecimiento de más de 75 puntos porcentuales Chile: internet penetration 2023 | Statista

Entre 2016 y 2023, la penetración en hogares creció de 79.3% a 94.3%

import React, { useState } from ‘react’; import { LineChart, Line, BarChart, Bar, XAxis, YAxis, CartesianGrid, Tooltip, Legend, ResponsiveContainer } from ‘recharts’; import { Wifi, TrendingUp, Globe, Zap } from ‘lucide-react’; const Dashboard = () => { const [selectedMetric, setSelectedMetric] = useState(‘penetracion’); // Datos históricos de penetración de internet (% población) const penetracionHistorica = [ { year: ‘2000’, Chile: 16.6, OCDE: 45.0, ‘América Latina’: 5.0 }, { year: ‘2005’, Chile: 31.2, OCDE: 58.0, ‘América Latina’: 15.0 }, { year: ‘2010’, Chile: 45.0, OCDE: 72.0, ‘América Latina’: 34.0 }, { year: ‘2015’, Chile: 64.3, OCDE: 80.0, ‘América Latina’: 52.0 }, { year: ‘2018’, Chile: 77.0, OCDE: 84.0, ‘América Latina’: 62.0 }, { year: ‘2020’, Chile: 87.5, OCDE: 87.0, ‘América Latina’: 66.0 }, { year: ‘2022’, Chile: 90.0, OCDE: 89.0, ‘América Latina’: 70.0 }, { year: ‘2023’, Chile: 94.1, OCDE: 90.0, ‘América Latina’: 74.6 }, { year: ‘2024’, Chile: 94.3, OCDE: 91.0, ‘América Latina’: 78.0 } ]; // Comparación con países de la región 2024 const comparacionRegional2024 = [ { pais: ‘Chile’, penetracion: 94.3, velocidadFija: 347.4, velocidadMovil: 84.4 }, { pais: ‘Argentina’, penetracion: 92.0, velocidadFija: 85.0, velocidadMovil: 25.0 }, { pais: ‘Uruguay’, penetracion: 90.0, velocidadFija: 180.0, velocidadMovil: 45.0 }, { pais: ‘Brasil’, penetracion: 85.0, velocidadFija: 120.0, velocidadMovil: 42.0 }, { pais: ‘Colombia’, penetracion: 85.0, velocidadFija: 95.0, velocidadMovil: 32.0 }, { pais: ‘México’, penetracion: 78.0, velocidadFija: 75.0, velocidadMovil: 26.0 }, { pais: ‘Perú’, penetracion: 77.0, velocidadFija: 70.0, velocidadMovil: 28.0 }, { pais: ‘OCDE Prom.’, penetracion: 91.0, velocidadFija: 200.0, velocidadMovil: 70.0 } ]; // Velocidades de internet en el tiempo const velocidadesHistoricas = [ { year: ‘2020’, Chile: 120.5, ‘OCDE Promedio’: 140.0 }, { year: ‘2021’, Chile: 180.3, ‘OCDE Promedio’: 160.0 }, { year: ‘2022’, Chile: 216.5, ‘OCDE Promedio’: 175.0 }, { year: ‘2023’, Chile: 249.8, ‘OCDE Promedio’: 190.0 }, { year: ‘2024’, Chile: 347.4, ‘OCDE Promedio’: 210.0 } ]; // Acceso por hogares const accesoHogares = [ { year: ‘2016’, Chile: 79.3 }, { year: ‘2017’, Chile: 82.1 }, { year: ‘2018’, Chile: 85.7 }, { year: ‘2019’, Chile: 87.9 }, { year: ‘2020’, Chile: 89.4 }, { year: ‘2021’, Chile: 91.2 }, { year: ‘2022’, Chile: 92.8 }, { year: ‘2023’, Chile: 94.3 } ]; const kpis = [ { title: ‘Penetración Internet’, value: ‘94.3%’, change: ‘+15.0 pp desde 2016’, icon: Wifi, color: ‘text-blue-600’, bgColor: ‘bg-blue-100’ }, { title: ‘Ranking Regional’, value: ‘#1’, change: ‘Líder en América Latina’, icon: TrendingUp, color: ‘text-green-600’, bgColor: ‘bg-green-100’ }, { title: ‘Velocidad Fija’, value: ‘347 Mbps’, change: ‘2° lugar mundial’, icon: Zap, color: ‘text-orange-600’, bgColor: ‘bg-orange-100’ }, { title: ‘Usuarios Internet’, value: ‘18.4M’, change: ‘de 19.6M habitantes’, icon: Globe, color: ‘text-purple-600’, bgColor: ‘bg-purple-100’ } ]; return (
{/* Header */}

Conectividad Digital en Chile

Evolución del acceso a internet y tecnología • Comparativa OCDE y América Latina • 2000-2024

{/* KPIs */}
{kpis.map((kpi, idx) => { const Icon = kpi.icon; return (

{kpi.title}

{kpi.value}

{kpi.change}

); })}
{/* Selector de métricas */}
{[ { id: ‘penetracion’, label: ‘Penetración de Internet’ }, { id: ‘regional’, label: ‘Comparación Regional’ }, { id: ‘velocidad’, label: ‘Velocidades de Conexión’ }, { id: ‘hogares’, label: ‘Acceso en Hogares’ } ].map(metric => ( ))}
{/* Gráfico principal */}
{selectedMetric === ‘penetracion’ && ( <>

Evolución de la Penetración de Internet (2000-2024)

Porcentaje de la población con acceso a internet

`${value}%`} />

Crecimiento Chile

+77.7 pp

desde 2000

Chile vs OCDE 2024

+3.3 pp

sobre promedio OCDE

Chile vs LatAm 2024

+16.3 pp

sobre promedio regional

)} {selectedMetric === ‘regional’ && ( <>

Comparación Regional 2024

Penetración de internet por país

`${value}%`} />

📊 Análisis Clave

  • • Chile lidera América Latina con 94.3% de penetración
  • • Supera el promedio OCDE en 3.3 puntos porcentuales
  • • Brecha de 16.3 pp sobre el promedio latinoamericano
  • • Solo 5.7% de la población chilena permanece sin conexión
)} {selectedMetric === ‘velocidad’ && ( <>

Velocidades de Internet Fija (2020-2024)

Velocidad promedio de descarga en Mbps

`${value} Mbps`} />

🚀 Velocidad Internet Fija

347.4 Mbps

2° lugar mundial (upload: 269.8 Mbps)

Crecimiento: +188.5% desde 2020

📱 Velocidad Internet Móvil

84.4 Mbps

50° lugar mundial (upload: 15 Mbps)

Crecimiento: +34.5% en 2024

)} {selectedMetric === ‘hogares’ && ( <>

Acceso a Internet en Hogares (2016-2023)

Porcentaje de hogares con conexión a internet

`${value}%`} />

Hogares Conectados

94.3%

5.5M+ hogares

Conexiones Móviles

30.16M

153.5% de la población

Brecha Urbano-Rural

-24 pp

área de mejora

)}
{/* Insights y conclusiones */}

✅ Fortalezas

  • Líder regional: Mayor penetración de internet en América Latina
  • Velocidad mundial: 2° puesto global en internet fija
  • Infraestructura: Red de fibra óptica ampliamente desplegada
  • Asequibilidad: 0.75% del ingreso vs 4.5% promedio mundial

⚠️ Desafíos

  • Brecha rural: Solo ~50% de hogares rurales con internet móvil
  • Internet móvil: Velocidades en puesto 50° mundial
  • Acceso universal: Todavía 5.7% de la población sin conexión
  • Equidad digital: Brecha socioeconómica en acceso a tecnología
{/* Footer con fuentes */}

📚 Fuentes de Datos

OCDE Going Digital Toolkit • SUBTEL Chile • DataReportal Digital 2024 • Freedom House 2024 • Ookla Speedtest Global Index • ITU Statistics • World Bank Data • Statista Research

Última actualización: Octubre 2024 • Dashboard creado para análisis comparativo de conectividad digital

); }; export default Dashboard;

Deja un comentario

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *