Skip to content

Instantly share code, notes, and snippets.

@mgaitan
Last active December 27, 2015 06:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mgaitan/7281371 to your computer and use it in GitHub Desktop.
Save mgaitan/7281371 to your computer and use it in GitHub Desktop.
reportes a pedido del FIT
Display the source blob
Display the rendered blob
Raw
{
"metadata": {
"name": ""
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "code",
"collapsed": false,
"input": [
"%load_ext django_orm_magic"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 2
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"%%django_orm\n",
"from django.db import models\n",
"from django.db.models import Sum\n",
"\n",
"\n",
"class Municipio(models.Model):\n",
" nombre = models.CharField(max_length=100)\n",
" \n",
" def __unicode__(self):\n",
" return self.nombre\n",
"\n",
"class Circuito(models.Model):\n",
" numero = models.CharField(max_length=100)\n",
" municipio = models.ForeignKey('Municipio', null=True)\n",
"\n",
" def __unicode__(self):\n",
" return u\"Circuito %s (%s)\" % (self.numero, self.municipio)\n",
" \n",
"class Mesa(models.Model):\n",
" circuito = models.ForeignKey('Circuito', null=True)\n",
" numero = models.CharField(max_length=100, unique=True)\n",
" url = models.URLField()\n",
" \n",
" @property\n",
" def computados(self):\n",
" return self.votomesa_set.aggregate(Sum('votos'))['votos__sum']\n",
"\n",
" def __unicode__(self):\n",
" return u\"Mesa %s (%s)\" % (self.numero, self.circuito)\n",
" \n",
" \n",
"class Opcion(models.Model):\n",
" # partido, blanco, etc. \n",
" nombre = models.CharField(max_length=100, unique=True)\n",
" \n",
" def __unicode__(self):\n",
" return self.nombre\n",
" \n",
"class VotoMesa(models.Model):\n",
" mesa = models.ForeignKey('Mesa')\n",
" opcion = models.ForeignKey('Opcion')\n",
" votos = models.IntegerField()\n",
" \n",
" def __unicode__(self):\n",
" return u\"%s: %d\" % (self.opcion, self.votos)\n",
" \n",
" \n",
" class Meta:\n",
" unique_together = ('mesa', 'opcion')"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"/tmp/tmpR4lIHO/orm_magic\n"
]
}
],
"prompt_number": 3
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"from django.db.models import Sum\n",
"from IPython.display import HTML, display_html"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 3
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"##50 Mesas con mayor cantidad de votos computados"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"mesas = Mesa.objects.annotate(Sum('votomesa__votos')).order_by('-votomesa__votos__sum')[0:50]\n",
"for mesa in mesas:\n",
" display_html(HTML(\"<a href='%s'>%s</a> - Total computados: %d\" % (mesa.url, mesa, mesa.computados)))"
],
"language": "python",
"metadata": {},
"outputs": [
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/006/0089/040060089_4062.htm'>Mesa 4062 (Circuito 0089 (006 - General San Mart\u00edn))</a> - Total computados: 345"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0007G/040010007G0830.htm'>Mesa 0830 (Circuito 0007G (001 - Capital))</a> - Total computados: 325"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0009A/040010009A0979.htm'>Mesa 0979 (Circuito 0009A (001 - Capital))</a> - Total computados: 320"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/018/0265C/040180265C6461.htm'>Mesa 6461 (Circuito 0265C (018 - San Alberto))</a> - Total computados: 317"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0010I/040010010I1452.htm'>Mesa 1452 (Circuito 0010I (001 - Capital))</a> - Total computados: 314"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0011I/040010011I1900.htm'>Mesa 1900 (Circuito 0011I (001 - Capital))</a> - Total computados: 313"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0012H/040010012H2327.htm'>Mesa 2327 (Circuito 0012H (001 - Capital))</a> - Total computados: 313"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0014N/040010014N3040.htm'>Mesa 3040 (Circuito 0014N (001 - Capital))</a> - Total computados: 311"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0005C/040010005C0374.htm'>Mesa 0374 (Circuito 0005C (001 - Capital))</a> - Total computados: 310"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0191/040130191_5851.htm'>Mesa 5851 (Circuito 0191 (013 - R\u00edo Cuarto))</a> - Total computados: 309"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/024/0359/040240359_7659.htm'>Mesa 7659 (Circuito 0359 (None))</a> - Total computados: 307"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/024/0359/040240359_7673.htm'>Mesa 7673 (Circuito 0359 (None))</a> - Total computados: 307"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/024/0359/040240359_7665.htm'>Mesa 7665 (Circuito 0359 (None))</a> - Total computados: 306"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/024/0359/040240359_7667.htm'>Mesa 7667 (Circuito 0359 (None))</a> - Total computados: 306"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/024/0359/040240359_7677.htm'>Mesa 7677 (Circuito 0359 (None))</a> - Total computados: 306"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0186/040130186_5594.htm'>Mesa 5594 (Circuito 0186 (013 - R\u00edo Cuarto))</a> - Total computados: 306"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0010G/040010010G1401.htm'>Mesa 1401 (Circuito 0010G (001 - Capital))</a> - Total computados: 305"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0013J/040010013J2647.htm'>Mesa 2647 (Circuito 0013J (001 - Capital))</a> - Total computados: 305"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/008/0106/040080106_4399.htm'>Mesa 4399 (Circuito 0106 (008 - Ju\u00e1rez Celman))</a> - Total computados: 305"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/014/0211/040140211_5906.htm'>Mesa 5906 (Circuito 0211 (014 - R\u00edo Primero))</a> - Total computados: 304"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/014/0211/040140211_5908.htm'>Mesa 5908 (Circuito 0211 (014 - R\u00edo Primero))</a> - Total computados: 303"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/014/0220/040140220_5961.htm'>Mesa 5961 (Circuito 0220 (014 - R\u00edo Primero))</a> - Total computados: 303"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/003/0028A/040030028A3299.htm'>Mesa 3299 (Circuito 0028A (003 - Col\u00f3n))</a> - Total computados: 302"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/006/0077/040060077_4004.htm'>Mesa 4004 (Circuito 0077 (006 - General San Mart\u00edn))</a> - Total computados: 302"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/006/0077/040060077_4005.htm'>Mesa 4005 (Circuito 0077 (006 - General San Mart\u00edn))</a> - Total computados: 302"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/016/0230/040160230_6029.htm'>Mesa 6029 (Circuito 0230 (016 - R\u00edo Segundo))</a> - Total computados: 302"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/020/0279/040200279_6640.htm'>Mesa 6640 (Circuito 0279 (020 - San Justo))</a> - Total computados: 302"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/006/0090/040060090_4252.htm'>Mesa 4252 (Circuito 0090 (006 - General San Mart\u00edn))</a> - Total computados: 301"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/014/0211/040140211_5915.htm'>Mesa 5915 (Circuito 0211 (014 - R\u00edo Primero))</a> - Total computados: 301"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/014/0220/040140220_5975.htm'>Mesa 5975 (Circuito 0220 (014 - R\u00edo Primero))</a> - Total computados: 301"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0010K/040010010K1513.htm'>Mesa 1513 (Circuito 0010K (001 - Capital))</a> - Total computados: 300"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/007/0095/040070095_4357.htm'>Mesa 4357 (Circuito 0095 (007 - Ischilin))</a> - Total computados: 300"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/014/0220/040140220_5976.htm'>Mesa 5976 (Circuito 0220 (014 - R\u00edo Primero))</a> - Total computados: 300"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0010A/040010010A1210.htm'>Mesa 1210 (Circuito 0010A (001 - Capital))</a> - Total computados: 299"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0012F/040010012F2255.htm'>Mesa 2255 (Circuito 0012F (001 - Capital))</a> - Total computados: 299"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/006/0090/040060090_4282.htm'>Mesa 4282 (Circuito 0090 (006 - General San Mart\u00edn))</a> - Total computados: 299"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/020/0279/040200279_6618.htm'>Mesa 6618 (Circuito 0279 (020 - San Justo))</a> - Total computados: 299"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/024/0359/040240359_7660.htm'>Mesa 7660 (Circuito 0359 (None))</a> - Total computados: 298"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/024/0359/040240359_7678.htm'>Mesa 7678 (Circuito 0359 (None))</a> - Total computados: 298"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/003/0028A/040030028A3294.htm'>Mesa 3294 (Circuito 0028A (003 - Col\u00f3n))</a> - Total computados: 298"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0188/040130188_5712.htm'>Mesa 5712 (Circuito 0188 (013 - R\u00edo Cuarto))</a> - Total computados: 298"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/014/0214/040140214_5935.htm'>Mesa 5935 (Circuito 0214 (014 - R\u00edo Primero))</a> - Total computados: 298"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/016/0245/040160245_6254.htm'>Mesa 6254 (Circuito 0245 (016 - R\u00edo Segundo))</a> - Total computados: 298"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/021/0316/040210316_7173.htm'>Mesa 7173 (Circuito 0316 (021 - Santa Mar\u00eda))</a> - Total computados: 298"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/024/0359/040240359_7658.htm'>Mesa 7658 (Circuito 0359 (None))</a> - Total computados: 297"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/024/0359/040240359_7663.htm'>Mesa 7663 (Circuito 0359 (None))</a> - Total computados: 297"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0010A/040010010A1202.htm'>Mesa 1202 (Circuito 0010A (001 - Capital))</a> - Total computados: 297"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0010A/040010010A1203.htm'>Mesa 1203 (Circuito 0010A (001 - Capital))</a> - Total computados: 297"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0010A/040010010A1209.htm'>Mesa 1209 (Circuito 0010A (001 - Capital))</a> - Total computados: 297"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0010A/040010010A1212.htm'>Mesa 1212 (Circuito 0010A (001 - Capital))</a> - Total computados: 297"
],
"metadata": {},
"output_type": "display_data"
}
],
"prompt_number": 4
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Mesas no computadas"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"mesas0 = Mesa.objects.annotate(Sum('votomesa__votos')).filter(votomesa__votos__sum=0)"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 5
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"print mesas0.count()\n",
"for mesa in mesas0:\n",
" display_html(HTML(\"<a href='%s'>%s</a> - Total computados: %d\" % (mesa.url, mesa, mesa.computados)))"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"201\n"
]
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0002/040010002_0049.htm'>Mesa 0049 (Circuito 0002 (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0004/040010004_0152.htm'>Mesa 0152 (Circuito 0004 (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0004/040010004_0168.htm'>Mesa 0168 (Circuito 0004 (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0004A/040010004A0208.htm'>Mesa 0208 (Circuito 0004A (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0004B/040010004B0254.htm'>Mesa 0254 (Circuito 0004B (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0004F/040010004F0297.htm'>Mesa 0297 (Circuito 0004F (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0005/040010005_0330.htm'>Mesa 0330 (Circuito 0005 (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0005/040010005_0340.htm'>Mesa 0340 (Circuito 0005 (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0005A/040010005A0353.htm'>Mesa 0353 (Circuito 0005A (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0005D/040010005D0415.htm'>Mesa 0415 (Circuito 0005D (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0005G/040010005G0485.htm'>Mesa 0485 (Circuito 0005G (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0005G/040010005G0491.htm'>Mesa 0491 (Circuito 0005G (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0005G/040010005G0500.htm'>Mesa 0500 (Circuito 0005G (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0005I/040010005I0530.htm'>Mesa 0530 (Circuito 0005I (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0006D/040010006D0606.htm'>Mesa 0606 (Circuito 0006D (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0007A/040010007A0640.htm'>Mesa 0640 (Circuito 0007A (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0007A/040010007A0653.htm'>Mesa 0653 (Circuito 0007A (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0007E/040010007E0764.htm'>Mesa 0764 (Circuito 0007E (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0007F/040010007F0804.htm'>Mesa 0804 (Circuito 0007F (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0008B/040010008B0918.htm'>Mesa 0918 (Circuito 0008B (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0009A/040010009A0968.htm'>Mesa 0968 (Circuito 0009A (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0010B/040010010B1236.htm'>Mesa 1236 (Circuito 0010B (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0010E/040010010E1296.htm'>Mesa 1296 (Circuito 0010E (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0010G/040010010G1365.htm'>Mesa 1365 (Circuito 0010G (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0010G/040010010G1393.htm'>Mesa 1393 (Circuito 0010G (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0010G/040010010G1405.htm'>Mesa 1405 (Circuito 0010G (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0010H/040010010H1424.htm'>Mesa 1424 (Circuito 0010H (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0010I/040010010I1464.htm'>Mesa 1464 (Circuito 0010I (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0010J/040010010J1480.htm'>Mesa 1480 (Circuito 0010J (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0010J/040010010J1496.htm'>Mesa 1496 (Circuito 0010J (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0010J/040010010J1501.htm'>Mesa 1501 (Circuito 0010J (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0010K/040010010K1510.htm'>Mesa 1510 (Circuito 0010K (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0010L/040010010L1537.htm'>Mesa 1537 (Circuito 0010L (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0010L/040010010L1551.htm'>Mesa 1551 (Circuito 0010L (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0010M/040010010M1593.htm'>Mesa 1593 (Circuito 0010M (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0011E/040010011E1797.htm'>Mesa 1797 (Circuito 0011E (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0011E/040010011E1819.htm'>Mesa 1819 (Circuito 0011E (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0011F/040010011F1830.htm'>Mesa 1830 (Circuito 0011F (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0011F/040010011F1839.htm'>Mesa 1839 (Circuito 0011F (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0011G/040010011G1860.htm'>Mesa 1860 (Circuito 0011G (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0011K/040010011K2013.htm'>Mesa 2013 (Circuito 0011K (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0012/040010012_2044.htm'>Mesa 2044 (Circuito 0012 (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0012/040010012_2045.htm'>Mesa 2045 (Circuito 0012 (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0012B/040010012B2081.htm'>Mesa 2081 (Circuito 0012B (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0012B/040010012B2094.htm'>Mesa 2094 (Circuito 0012B (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0012B/040010012B2116.htm'>Mesa 2116 (Circuito 0012B (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0012B/040010012B2131.htm'>Mesa 2131 (Circuito 0012B (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0012D/040010012D2206.htm'>Mesa 2206 (Circuito 0012D (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0012D/040010012D2214.htm'>Mesa 2214 (Circuito 0012D (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0012E/040010012E2234.htm'>Mesa 2234 (Circuito 0012E (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0012E/040010012E2236.htm'>Mesa 2236 (Circuito 0012E (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0012F/040010012F2285.htm'>Mesa 2285 (Circuito 0012F (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0012G/040010012G2303.htm'>Mesa 2303 (Circuito 0012G (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0012G/040010012G2306.htm'>Mesa 2306 (Circuito 0012G (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0013E/040010013E2486.htm'>Mesa 2486 (Circuito 0013E (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0013F/040010013F2504.htm'>Mesa 2504 (Circuito 0013F (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0013G/040010013G2540.htm'>Mesa 2540 (Circuito 0013G (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0013J/040010013J2632.htm'>Mesa 2632 (Circuito 0013J (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0013J/040010013J2633.htm'>Mesa 2633 (Circuito 0013J (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0013J/040010013J2634.htm'>Mesa 2634 (Circuito 0013J (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0013J/040010013J2674.htm'>Mesa 2674 (Circuito 0013J (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0013J/040010013J2675.htm'>Mesa 2675 (Circuito 0013J (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0013J/040010013J2712.htm'>Mesa 2712 (Circuito 0013J (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0013M/040010013M2721.htm'>Mesa 2721 (Circuito 0013M (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0014A/040010014A2768.htm'>Mesa 2768 (Circuito 0014A (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0014A/040010014A2798.htm'>Mesa 2798 (Circuito 0014A (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0014A/040010014A2801.htm'>Mesa 2801 (Circuito 0014A (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0014D/040010014D2856.htm'>Mesa 2856 (Circuito 0014D (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0014J/040010014J2963.htm'>Mesa 2963 (Circuito 0014J (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0014J/040010014J2965.htm'>Mesa 2965 (Circuito 0014J (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0014M/040010014M3023.htm'>Mesa 3023 (Circuito 0014M (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0014P/040010014P3075.htm'>Mesa 3075 (Circuito 0014P (001 - Capital))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/002/0024/040020024_3167.htm'>Mesa 3167 (Circuito 0024 (002 - Calamuchita))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/002/0026/040020026_3208.htm'>Mesa 3208 (Circuito 0026 (002 - Calamuchita))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/002/0026/040020026_3216.htm'>Mesa 3216 (Circuito 0026 (002 - Calamuchita))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/003/0028/040030028_3268.htm'>Mesa 3268 (Circuito 0028 (003 - Col\u00f3n))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/003/0028A/040030028A3285.htm'>Mesa 3285 (Circuito 0028A (003 - Col\u00f3n))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/003/0030/040030030_3356.htm'>Mesa 3356 (Circuito 0030 (003 - Col\u00f3n))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/003/0033/040030033_3426.htm'>Mesa 3426 (Circuito 0033 (003 - Col\u00f3n))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/003/0033/040030033_3436.htm'>Mesa 3436 (Circuito 0033 (003 - Col\u00f3n))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/003/0033/040030033_3457.htm'>Mesa 3457 (Circuito 0033 (003 - Col\u00f3n))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/003/0035/040030035_3492.htm'>Mesa 3492 (Circuito 0035 (003 - Col\u00f3n))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/003/0035/040030035_3498.htm'>Mesa 3498 (Circuito 0035 (003 - Col\u00f3n))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/003/0035/040030035_3509.htm'>Mesa 3509 (Circuito 0035 (003 - Col\u00f3n))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/003/0035A/040030035A3515.htm'>Mesa 3515 (Circuito 0035A (003 - Col\u00f3n))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/003/0037/040030037_3546.htm'>Mesa 3546 (Circuito 0037 (003 - Col\u00f3n))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/003/0038/040030038_3567.htm'>Mesa 3567 (Circuito 0038 (003 - Col\u00f3n))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/003/0038/040030038_3575.htm'>Mesa 3575 (Circuito 0038 (003 - Col\u00f3n))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/003/0040A/040030040A3651.htm'>Mesa 3651 (Circuito 0040A (003 - Col\u00f3n))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/003/0041/040030041_3677.htm'>Mesa 3677 (Circuito 0041 (003 - Col\u00f3n))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/003/0041/040030041_3684.htm'>Mesa 3684 (Circuito 0041 (003 - Col\u00f3n))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/003/0041/040030041_3720.htm'>Mesa 3720 (Circuito 0041 (003 - Col\u00f3n))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/004/0044/040040044_3771.htm'>Mesa 3771 (Circuito 0044 (004 - Cruz del Eje))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/004/0044/040040044_3796.htm'>Mesa 3796 (Circuito 0044 (004 - Cruz del Eje))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/004/0044/040040044_3819.htm'>Mesa 3819 (Circuito 0044 (004 - Cruz del Eje))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/004/0044/040040044_3826.htm'>Mesa 3826 (Circuito 0044 (004 - Cruz del Eje))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/004/0044A/040040044A3833.htm'>Mesa 3833 (Circuito 0044A (004 - Cruz del Eje))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/004/0045/040040045_3835.htm'>Mesa 3835 (Circuito 0045 (004 - Cruz del Eje))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/004/0046/040040046_3838.htm'>Mesa 3838 (Circuito 0046 (004 - Cruz del Eje))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/004/0051/040040051_3852.htm'>Mesa 3852 (Circuito 0051 (004 - Cruz del Eje))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/005/0060/040050060_3910.htm'>Mesa 3910 (Circuito 0060 (005 - General Roca))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/005/0062/040050062_3938.htm'>Mesa 3938 (Circuito 0062 (005 - General Roca))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/005/0063/040050063_3950.htm'>Mesa 3950 (Circuito 0063 (005 - General Roca))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/006/0089/040060089_4108.htm'>Mesa 4108 (Circuito 0089 (006 - General San Mart\u00edn))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/006/0089/040060089_4152.htm'>Mesa 4152 (Circuito 0089 (006 - General San Mart\u00edn))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/006/0089/040060089_4157.htm'>Mesa 4157 (Circuito 0089 (006 - General San Mart\u00edn))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/006/0089/040060089_4195.htm'>Mesa 4195 (Circuito 0089 (006 - General San Mart\u00edn))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/006/0089/040060089_4207.htm'>Mesa 4207 (Circuito 0089 (006 - General San Mart\u00edn))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/006/0090/040060090_4295.htm'>Mesa 4295 (Circuito 0090 (006 - General San Mart\u00edn))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/006/0090/040060090_4296.htm'>Mesa 4296 (Circuito 0090 (006 - General San Mart\u00edn))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/007/0100/040070100_4377.htm'>Mesa 4377 (Circuito 0100 (007 - Ischilin))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/008/0105/040080105_4394.htm'>Mesa 4394 (Circuito 0105 (008 - Ju\u00e1rez Celman))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/008/0105/040080105_4396.htm'>Mesa 4396 (Circuito 0105 (008 - Ju\u00e1rez Celman))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/008/0112/040080112_4484.htm'>Mesa 4484 (Circuito 0112 (008 - Ju\u00e1rez Celman))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/008/0114/040080114_4502.htm'>Mesa 4502 (Circuito 0114 (008 - Ju\u00e1rez Celman))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/009/0120/040090120_4538.htm'>Mesa 4538 (Circuito 0120 (009 - Marcos Ju\u00e1rez))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/009/0126/040090126_4609.htm'>Mesa 4609 (Circuito 0126 (009 - Marcos Ju\u00e1rez))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/009/0131/040090131_4673.htm'>Mesa 4673 (Circuito 0131 (009 - Marcos Ju\u00e1rez))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/009/0133/040090133_4704.htm'>Mesa 4704 (Circuito 0133 (009 - Marcos Ju\u00e1rez))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/009/0133/040090133_4713.htm'>Mesa 4713 (Circuito 0133 (009 - Marcos Ju\u00e1rez))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/012/0148/040120148_4851.htm'>Mesa 4851 (Circuito 0148 (012 - Punilla))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/012/0150/040120150_4877.htm'>Mesa 4877 (Circuito 0150 (012 - Punilla))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/012/0150/040120150_4917.htm'>Mesa 4917 (Circuito 0150 (012 - Punilla))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/012/0154/040120154_4981.htm'>Mesa 4981 (Circuito 0154 (012 - Punilla))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/012/0154/040120154_4999.htm'>Mesa 4999 (Circuito 0154 (012 - Punilla))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/012/0154/040120154_5006.htm'>Mesa 5006 (Circuito 0154 (012 - Punilla))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/012/0156/040120156_5031.htm'>Mesa 5031 (Circuito 0156 (012 - Punilla))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/012/0156/040120156_5032.htm'>Mesa 5032 (Circuito 0156 (012 - Punilla))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/012/0157/040120157_5216.htm'>Mesa 5216 (Circuito 0157 (012 - Punilla))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/012/0158/040120158_5221.htm'>Mesa 5221 (Circuito 0158 (012 - Punilla))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/012/0158/040120158_5231.htm'>Mesa 5231 (Circuito 0158 (012 - Punilla))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0162/040130162_5289.htm'>Mesa 5289 (Circuito 0162 (013 - R\u00edo Cuarto))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0165/040130165_5332.htm'>Mesa 5332 (Circuito 0165 (013 - R\u00edo Cuarto))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0165/040130165_5347.htm'>Mesa 5347 (Circuito 0165 (013 - R\u00edo Cuarto))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0165/040130165_5362.htm'>Mesa 5362 (Circuito 0165 (013 - R\u00edo Cuarto))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0165/040130165_5363.htm'>Mesa 5363 (Circuito 0165 (013 - R\u00edo Cuarto))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0172/040130172_5433.htm'>Mesa 5433 (Circuito 0172 (013 - R\u00edo Cuarto))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0173/040130173_5440.htm'>Mesa 5440 (Circuito 0173 (013 - R\u00edo Cuarto))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0179/040130179_5462.htm'>Mesa 5462 (Circuito 0179 (013 - R\u00edo Cuarto))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0179/040130179_5463.htm'>Mesa 5463 (Circuito 0179 (013 - R\u00edo Cuarto))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0186/040130186_5530.htm'>Mesa 5530 (Circuito 0186 (013 - R\u00edo Cuarto))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0186/040130186_5581.htm'>Mesa 5581 (Circuito 0186 (013 - R\u00edo Cuarto))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0188/040130188_5615.htm'>Mesa 5615 (Circuito 0188 (013 - R\u00edo Cuarto))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0188/040130188_5637.htm'>Mesa 5637 (Circuito 0188 (013 - R\u00edo Cuarto))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0188/040130188_5661.htm'>Mesa 5661 (Circuito 0188 (013 - R\u00edo Cuarto))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0188/040130188_5675.htm'>Mesa 5675 (Circuito 0188 (013 - R\u00edo Cuarto))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0188/040130188_5717.htm'>Mesa 5717 (Circuito 0188 (013 - R\u00edo Cuarto))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0188/040130188_5723.htm'>Mesa 5723 (Circuito 0188 (013 - R\u00edo Cuarto))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0188/040130188_5756.htm'>Mesa 5756 (Circuito 0188 (013 - R\u00edo Cuarto))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0188/040130188_5793.htm'>Mesa 5793 (Circuito 0188 (013 - R\u00edo Cuarto))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0188/040130188_5813.htm'>Mesa 5813 (Circuito 0188 (013 - R\u00edo Cuarto))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/014/0202/040140202_5874.htm'>Mesa 5874 (Circuito 0202 (014 - R\u00edo Primero))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/015/0223/040150223_5986.htm'>Mesa 5986 (Circuito 0223 (015 - R\u00edo Seco))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/015/0227A/040150227A5999.htm'>Mesa 5999 (Circuito 0227A (015 - R\u00edo Seco))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/015/0227A/040150227A6000.htm'>Mesa 6000 (Circuito 0227A (015 - R\u00edo Seco))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/015/0228/040150228_6010.htm'>Mesa 6010 (Circuito 0228 (015 - R\u00edo Seco))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/016/0238/040160238_6099.htm'>Mesa 6099 (Circuito 0238 (016 - R\u00edo Segundo))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/016/0239/040160239_6132.htm'>Mesa 6132 (Circuito 0239 (016 - R\u00edo Segundo))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/016/0243/040160243_6210.htm'>Mesa 6210 (Circuito 0243 (016 - R\u00edo Segundo))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/016/0243/040160243_6213.htm'>Mesa 6213 (Circuito 0243 (016 - R\u00edo Segundo))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/016/0244/040160244_6242.htm'>Mesa 6242 (Circuito 0244 (016 - R\u00edo Segundo))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/016/0245/040160245_6248.htm'>Mesa 6248 (Circuito 0245 (016 - R\u00edo Segundo))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/016/0245/040160245_6264.htm'>Mesa 6264 (Circuito 0245 (016 - R\u00edo Segundo))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/017/0248/040170248_6299.htm'>Mesa 6299 (Circuito 0248 (017 - Presidente Roque S\u00e1enz Pe\u00f1a))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/018/0261/040180261_6385.htm'>Mesa 6385 (Circuito 0261 (018 - San Alberto))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/018/0262/040180262_6395.htm'>Mesa 6395 (Circuito 0262 (018 - San Alberto))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/018/0265A/040180265A6450.htm'>Mesa 6450 (Circuito 0265A (018 - San Alberto))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/018/0265A/040180265A6451.htm'>Mesa 6451 (Circuito 0265A (018 - San Alberto))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/019/0268/040190268_6520.htm'>Mesa 6520 (Circuito 0268 (019 - San Javier))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/019/0268/040190268_6532.htm'>Mesa 6532 (Circuito 0268 (019 - San Javier))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/019/0268/040190268_6540.htm'>Mesa 6540 (Circuito 0268 (019 - San Javier))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/019/0273/040190273_6573.htm'>Mesa 6573 (Circuito 0273 (019 - San Javier))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/020/0279/040200279_6655.htm'>Mesa 6655 (Circuito 0279 (020 - San Justo))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/020/0279/040200279_6661.htm'>Mesa 6661 (Circuito 0279 (020 - San Justo))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/020/0298/040200298_6819.htm'>Mesa 6819 (Circuito 0298 (020 - San Justo))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/020/0304/040200304_6865.htm'>Mesa 6865 (Circuito 0304 (020 - San Justo))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/020/0304/040200304_6894.htm'>Mesa 6894 (Circuito 0304 (020 - San Justo))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/020/0305/040200305_6907.htm'>Mesa 6907 (Circuito 0305 (020 - San Justo))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/020/0306/040200306_6919.htm'>Mesa 6919 (Circuito 0306 (020 - San Justo))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/020/0310/040200310_6947.htm'>Mesa 6947 (Circuito 0310 (020 - San Justo))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/020/0310/040200310_6972.htm'>Mesa 6972 (Circuito 0310 (020 - San Justo))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/020/0310/040200310_6975.htm'>Mesa 6975 (Circuito 0310 (020 - San Justo))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/020/0310/040200310_6997.htm'>Mesa 6997 (Circuito 0310 (020 - San Justo))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/020/0310A/040200310A7016.htm'>Mesa 7016 (Circuito 0310A (020 - San Justo))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/020/0310A/040200310A7042.htm'>Mesa 7042 (Circuito 0310A (020 - San Justo))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/020/0310A/040200310A7058.htm'>Mesa 7058 (Circuito 0310A (020 - San Justo))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/020/0314/040200314_7102.htm'>Mesa 7102 (Circuito 0314 (020 - San Justo))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/021/0316/040210316_7132.htm'>Mesa 7132 (Circuito 0316 (021 - Santa Mar\u00eda))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/021/0316/040210316_7148.htm'>Mesa 7148 (Circuito 0316 (021 - Santa Mar\u00eda))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/021/0316/040210316_7166.htm'>Mesa 7166 (Circuito 0316 (021 - Santa Mar\u00eda))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/021/0316/040210316_7203.htm'>Mesa 7203 (Circuito 0316 (021 - Santa Mar\u00eda))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/021/0316H/040210316H7244.htm'>Mesa 7244 (Circuito 0316H (021 - Santa Mar\u00eda))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/021/0318/040210318_7255.htm'>Mesa 7255 (Circuito 0318 (021 - Santa Mar\u00eda))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/021/0326B/040210326B7312.htm'>Mesa 7312 (Circuito 0326B (021 - Santa Mar\u00eda))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/021/0331/040210331_7331.htm'>Mesa 7331 (Circuito 0331 (021 - Santa Mar\u00eda))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/022/0335/040220335_7348.htm'>Mesa 7348 (Circuito 0335 (022 - Sobremonte))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/023/0342/040230342_7450.htm'>Mesa 7450 (Circuito 0342 (023 - Tercero Arriba))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/023/0342/040230342_7453.htm'>Mesa 7453 (Circuito 0342 (023 - Tercero Arriba))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/023/0348/040230348_7498.htm'>Mesa 7498 (Circuito 0348 (023 - Tercero Arriba))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/023/0348/040230348_7561.htm'>Mesa 7561 (Circuito 0348 (023 - Tercero Arriba))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/023/0348/040230348_7580.htm'>Mesa 7580 (Circuito 0348 (023 - Tercero Arriba))</a> - Total computados: 0"
],
"metadata": {},
"output_type": "display_data"
}
],
"prompt_number": 6
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# En cuantas mesas computadas las distintas opciones tuvieron 0 voto? Cuantos votos significarian para cada una si se tratase de un error?"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"result = {}\n",
"for opcion in Opcion.objects.all():\n",
" \n",
" cantidad = Mesa.objects.annotate(computados=Sum('votomesa__votos')).filter(computados__gt=0,\n",
" votomesa__votos=0,\n",
" votomesa__opcion=opcion).count()\n",
" result[opcion] = cantidad"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 4
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"result"
],
"language": "python",
"metadata": {},
"outputs": [
{
"metadata": {},
"output_type": "pyout",
"prompt_number": 5,
"text": [
"{<Opcion: FRENTE PROGRESISTA CIVICO Y SOCIAL>: 184,\n",
" <Opcion: VECINALISMO INDEPENDIENTE>: 394,\n",
" <Opcion: UNION CIVICA RADICAL>: 11,\n",
" <Opcion: Votos recurridos>: 7068,\n",
" <Opcion: Votos nulos>: 1026,\n",
" <Opcion: FRENTE DE IZQUIERDA Y DE LOS TRABAJADORES>: 148,\n",
" <Opcion: UNION POR CORDOBA>: 17,\n",
" <Opcion: UNION PRO>: 36,\n",
" <Opcion: ENCUENTRO VECINAL CORDOBA>: 614,\n",
" <Opcion: Votos en blanco>: 747,\n",
" <Opcion: COALICION CIVICA - AFIRMACION PARA UNA REPUBLICA IGUALITARIA (ARI)>: 228,\n",
" <Opcion: FRENTE PARA LA VICTORIA>: 18}"
]
}
],
"prompt_number": 5
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Si multiplicamos por la cantidad de votos promedio para cada opcion"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"from django.db.models import Avg\n",
"\n",
"proyeccion = {}\n",
"for opcion, mesas_0 in result.items():\n",
" prom = VotoMesa.objects.filter(opcion=opcion).aggregate(Avg('votos'))['votos__avg']\n",
" proyeccion[opcion] = prom * mesas_0\n",
"\n",
"sorted(proyeccion.items(), key=lambda a: a[1], reverse=True)"
],
"language": "python",
"metadata": {},
"outputs": [
{
"metadata": {},
"output_type": "pyout",
"prompt_number": 6,
"text": [
"[(<Opcion: Votos nulos>, 4659.387286255058),\n",
" (<Opcion: VECINALISMO INDEPENDIENTE>, 4547.997389374756),\n",
" (<Opcion: ENCUENTRO VECINAL CORDOBA>, 3304.988643780185),\n",
" (<Opcion: FRENTE DE IZQUIERDA Y DE LOS TRABAJADORES>, 2774.7923247617805),\n",
" (<Opcion: Votos en blanco>, 2262.158987077405),\n",
" (<Opcion: COALICION CIVICA - AFIRMACION PARA UNA REPUBLICA IGUALITARIA (ARI)>,\n",
" 1778.4952356089284),\n",
" (<Opcion: FRENTE PROGRESISTA CIVICO Y SOCIAL>, 1702.8105991384934),\n",
" (<Opcion: UNION PRO>, 1274.271243962929),\n",
" (<Opcion: UNION POR CORDOBA>, 1090.4853152329983),\n",
" (<Opcion: Votos recurridos>, 677.1847017360658),\n",
" (<Opcion: FRENTE PARA LA VICTORIA>, 660.443284166558),\n",
" (<Opcion: UNION CIVICA RADICAL>, 607.2801200887612)]"
]
}
],
"prompt_number": 6
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"La UCR es la menos afectada por el \"error\" de mesas con 0 voto a favor y el FIT es una de las m\u00e1s afectadas?"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Municipios y circuitos ordenados por % de votos nulos"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"result = []\n",
"for mun in Municipio.objects.all():\n",
" total = VotoMesa.objects.filter(mesa__circuito__municipio=mun).aggregate(Sum('votos'))['votos__sum']\n",
" nulos = VotoMesa.objects.filter(mesa__circuito__municipio=mun, \n",
" opcion__nombre='Votos nulos').aggregate(Sum('votos'))['votos__sum']\n",
" if total:\n",
" porcent = (nulos / float(total)) * 100\n",
" result.append((mun, total, nulos, porcent))\n",
" \n",
"\n",
"for r in sorted(result, key=lambda r: r[3], reverse=True):\n",
" print \"%s - Total: %d - nulos %d (%.2f%%)\" % r\n",
" result_circ = []\n",
" for circuito in Circuito.objects.filter(municipio=r[0]):\n",
" \n",
" total = VotoMesa.objects.filter(mesa__circuito=circuito).aggregate(Sum('votos'))['votos__sum']\n",
" nulos = VotoMesa.objects.filter(mesa__circuito=circuito, \n",
" opcion__nombre='Votos nulos').aggregate(Sum('votos'))['votos__sum']\n",
" if total:\n",
" porcent = (nulos / float(total)) * 100\n",
" result_circ.append((circuito.numero, total, nulos, porcent))\n",
" for rc in sorted(result_circ, key=lambda r: r[3], reverse=True):\n",
" print \" Circuito %s - Total: %d - nulos %d (%.2f%%)\" % rc"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"012 - Punilla - Total: 106543 - nulos 2478 (2.33%)\n",
" Circuito 0149 - Total: 414 - nulos 16 (3.86%)\n",
" Circuito 0152 - Total: 3946 - nulos 131 (3.32%)\n",
" Circuito 0156A - Total: 1066 - nulos 35 (3.28%)\n",
" Circuito 0155A - Total: 714 - nulos 22 (3.08%)\n",
" Circuito 0156D - Total: 2694 - nulos 80 (2.97%)\n",
" Circuito 0152A - Total: 3293 - nulos 97 (2.95%)\n",
" Circuito 0159 - Total: 3935 - nulos 108 (2.74%)\n",
" Circuito 0158 - Total: 3460 - nulos 94 (2.72%)\n",
" Circuito 0150 - Total: 12972 - nulos 327 (2.52%)\n",
" Circuito 0156C - Total: 733 - nulos 18 (2.46%)\n",
" Circuito 0147B - Total: 988 - nulos 24 (2.43%)\n",
" Circuito 0147A - Total: 664 - nulos 16 (2.41%)\n",
" Circuito 0148 - Total: 6496 - nulos 156 (2.40%)\n",
" Circuito 0156 - Total: 38645 - nulos 863 (2.23%)\n",
" Circuito 0147 - Total: 3592 - nulos 77 (2.14%)\n",
" Circuito 0157 - Total: 5095 - nulos 107 (2.10%)\n",
" Circuito 0158A - Total: 243 - nulos 5 (2.06%)\n",
" Circuito 0158C - Total: 1322 - nulos 26 (1.97%)\n",
" Circuito 0153 - Total: 4923 - nulos 92 (1.87%)\n",
" Circuito 0154 - Total: 9396 - nulos 167 (1.78%)\n",
" Circuito 0158B - Total: 531 - nulos 9 (1.69%)\n",
" Circuito 0156E - Total: 167 - nulos 2 (1.20%)\n",
" Circuito 0155 - Total: 542 - nulos 4 (0.74%)\n",
" Circuito 0156B - Total: 284 - nulos 1 (0.35%)\n",
" Circuito 0151 - Total: 428 - nulos 1 (0.23%)\n",
"021 - Santa Mar\u00eda - Total: 58373 - nulos 1302 (2.23%)\n",
" Circuito 0318 - Total: 4 - nulos 1 (25.00%)"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
" Circuito 0316J - Total: 1567 - nulos 63 (4.02%)\n",
" Circuito 0326 - Total: 5225 - nulos 210 (4.02%)\n",
" Circuito 0326B - Total: 681 - nulos 26 (3.82%)\n",
" Circuito 0316G - Total: 769 - nulos 20 (2.60%)\n",
" Circuito 0316A - Total: 2330 - nulos 58 (2.49%)\n",
" Circuito 0319 - Total: 1169 - nulos 28 (2.40%)\n",
" Circuito 0316 - Total: 29881 - nulos 705 (2.36%)\n",
" Circuito 0316E - Total: 732 - nulos 17 (2.32%)\n",
" Circuito 0326A - Total: 1827 - nulos 41 (2.24%)\n",
" Circuito 0316I - Total: 527 - nulos 9 (1.71%)\n",
" Circuito 0328 - Total: 769 - nulos 13 (1.69%)\n",
" Circuito 0324 - Total: 778 - nulos 11 (1.41%)\n",
" Circuito 0330 - Total: 433 - nulos 6 (1.39%)\n",
" Circuito 0326C - Total: 734 - nulos 10 (1.36%)\n",
" Circuito 0316F - Total: 389 - nulos 5 (1.29%)\n",
" Circuito 0316B - Total: 85 - nulos 1 (1.18%)\n",
" Circuito 0317 - Total: 175 - nulos 2 (1.14%)\n",
" Circuito 0331 - Total: 2677 - nulos 29 (1.08%)\n",
" Circuito 0330A - Total: 319 - nulos 3 (0.94%)\n",
" Circuito 0316H - Total: 456 - nulos 4 (0.88%)\n",
" Circuito 0328B - Total: 469 - nulos 4 (0.85%)\n",
" Circuito 0323 - Total: 4289 - nulos 34 (0.79%)\n",
" Circuito 0316D - Total: 285 - nulos 1 (0.35%)\n",
" Circuito 0325 - Total: 1095 - nulos 1 (0.09%)\n",
" Circuito 0316C - Total: 101 - nulos 0 (0.00%)\n",
" Circuito 0320 - Total: 18 - nulos 0 (0.00%)\n",
" Circuito 0322 - Total: 51 - nulos 0 (0.00%)\n",
" Circuito 0327 - Total: 403 - nulos 0 (0.00%)\n",
" Circuito 0329 - Total: 135 - nulos 0 (0.00%)\n",
"003 - Col\u00f3n - Total: 135270 - nulos 2784 (2.06%)\n",
" Circuito 0041A - Total: 6367 - nulos 203 (3.19%)\n",
" Circuito 0035 - Total: 6955 - nulos 218 (3.13%)\n",
" Circuito 0033A - Total: 218 - nulos 6 (2.75%)\n",
" Circuito 0037 - Total: 12241 - nulos 308 (2.52%)\n",
" Circuito 0040 - Total: 11665 - nulos 284 (2.43%)\n",
" Circuito 0031A - Total: 1531 - nulos 35 (2.29%)\n",
" Circuito 0028 - Total: 12038 - nulos 265 (2.20%)\n",
" Circuito 0028A - Total: 8011 - nulos 176 (2.20%)\n",
" Circuito 0029 - Total: 12316 - nulos 269 (2.18%)\n",
" Circuito 0034 - Total: 6310 - nulos 125 (1.98%)\n",
" Circuito 0033 - Total: 19262 - nulos 350 (1.82%)\n",
" Circuito 0032 - Total: 1185 - nulos 21 (1.77%)\n",
" Circuito 0038 - Total: 5055 - nulos 87 (1.72%)\n",
" Circuito 0027 - Total: 2130 - nulos 35 (1.64%)\n",
" Circuito 0031B - Total: 200 - nulos 3 (1.50%)\n",
" Circuito 0041 - Total: 19738 - nulos 291 (1.47%)\n",
" Circuito 0040A - Total: 5204 - nulos 69 (1.33%)\n",
" Circuito 0031 - Total: 728 - nulos 8 (1.10%)\n",
" Circuito 0030 - Total: 3209 - nulos 28 (0.87%)\n",
" Circuito 0035A - Total: 419 - nulos 3 (0.72%)\n",
" Circuito 0029A - Total: 223 - nulos 0 (0.00%)\n",
" Circuito 0036 - Total: 220 - nulos 0 (0.00%)\n",
" Circuito 0039 - Total: 45 - nulos 0 (0.00%)\n",
"013 - R\u00edo Cuarto - Total: 148468 - nulos 3020 (2.03%)\n",
" Circuito 0184A - Total: 487 - nulos 15 (3.08%)"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
" Circuito 0186 - Total: 17867 - nulos 524 (2.93%)\n",
" Circuito 0165 - Total: 20432 - nulos 577 (2.82%)\n",
" Circuito 0175 - Total: 39 - nulos 1 (2.56%)\n",
" Circuito 0188 - Total: 54868 - nulos 1280 (2.33%)\n",
" Circuito 0182 - Total: 735 - nulos 17 (2.31%)\n",
" Circuito 0169 - Total: 275 - nulos 6 (2.18%)\n",
" Circuito 0176 - Total: 46 - nulos 1 (2.17%)\n",
" Circuito 0179 - Total: 3666 - nulos 78 (2.13%)\n",
" Circuito 0172 - Total: 2867 - nulos 58 (2.02%)\n",
" Circuito 0187 - Total: 57 - nulos 1 (1.75%)\n",
" Circuito 0190 - Total: 114 - nulos 2 (1.75%)\n",
" Circuito 0168 - Total: 652 - nulos 11 (1.69%)\n",
" Circuito 0189 - Total: 5512 - nulos 85 (1.54%)\n",
" Circuito 0160 - Total: 1946 - nulos 26 (1.34%)\n",
" Circuito 0171 - Total: 83 - nulos 1 (1.20%)\n",
" Circuito 0161 - Total: 4708 - nulos 53 (1.13%)\n",
" Circuito 0191 - Total: 2444 - nulos 27 (1.10%)\n",
" Circuito 0160A - Total: 199 - nulos 2 (1.01%)\n",
" Circuito 0180 - Total: 199 - nulos 2 (1.01%)\n",
" Circuito 0183 - Total: 6982 - nulos 68 (0.97%)\n",
" Circuito 0184 - Total: 6131 - nulos 57 (0.93%)\n",
" Circuito 0166 - Total: 4630 - nulos 43 (0.93%)\n",
" Circuito 0174 - Total: 590 - nulos 5 (0.85%)\n",
" Circuito 0177 - Total: 1803 - nulos 14 (0.78%)\n",
" Circuito 0162 - Total: 3925 - nulos 30 (0.76%)\n",
" Circuito 0163 - Total: 786 - nulos 6 (0.76%)\n",
" Circuito 0194 - Total: 413 - nulos 3 (0.73%)\n",
" Circuito 0193 - Total: 418 - nulos 3 (0.72%)\n",
" Circuito 0178A - Total: 319 - nulos 2 (0.63%)\n",
" Circuito 0170 - Total: 2256 - nulos 13 (0.58%)\n",
" Circuito 0167 - Total: 874 - nulos 5 (0.57%)\n",
" Circuito 0191A - Total: 215 - nulos 1 (0.47%)\n",
" Circuito 0164 - Total: 1369 - nulos 3 (0.22%)\n",
" Circuito 0178 - Total: 29 - nulos 0 (0.00%)\n",
" Circuito 0178B - Total: 62 - nulos 0 (0.00%)\n",
" Circuito 0181 - Total: 111 - nulos 0 (0.00%)\n",
" Circuito 0185 - Total: 2 - nulos 0 (0.00%)\n",
" Circuito 0192 - Total: 357 - nulos 0 (0.00%)\n",
"001 - Capital - Total: 792729 - nulos 15760 (1.99%)\n",
" Circuito 0013M - Total: 221 - nulos 11 (4.98%)"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
" Circuito 0004E - Total: 1176 - nulos 49 (4.17%)\n",
" Circuito 0013D - Total: 1821 - nulos 75 (4.12%)\n",
" Circuito 0010M - Total: 541 - nulos 21 (3.88%)\n",
" Circuito 0005A - Total: 3809 - nulos 134 (3.52%)\n",
" Circuito 0005F - Total: 3320 - nulos 112 (3.37%)\n",
" Circuito 0014N - Total: 5339 - nulos 179 (3.35%)\n",
" Circuito 0014K - Total: 2958 - nulos 94 (3.18%)\n",
" Circuito 0010E - Total: 8818 - nulos 277 (3.14%)\n",
" Circuito 0005E - Total: 3435 - nulos 104 (3.03%)\n",
" Circuito 0013G - Total: 12526 - nulos 378 (3.02%)\n",
" Circuito 0008 - Total: 464 - nulos 14 (3.02%)\n",
" Circuito 0011 - Total: 3149 - nulos 93 (2.95%)\n",
" Circuito 0013E - Total: 744 - nulos 21 (2.82%)\n",
" Circuito 0011I - Total: 10372 - nulos 287 (2.77%)\n",
" Circuito 0012G - Total: 7504 - nulos 205 (2.73%)\n",
" Circuito 0008C - Total: 6584 - nulos 178 (2.70%)\n",
" Circuito 0010L - Total: 18979 - nulos 506 (2.67%)\n",
" Circuito 0013K - Total: 1391 - nulos 37 (2.66%)\n",
" Circuito 0014A - Total: 11172 - nulos 297 (2.66%)\n",
" Circuito 0014E - Total: 4771 - nulos 126 (2.64%)\n",
" Circuito 0012I - Total: 1333 - nulos 35 (2.63%)\n",
" Circuito 0012A - Total: 3964 - nulos 104 (2.62%)\n",
" Circuito 0010A - Total: 3774 - nulos 99 (2.62%)\n",
" Circuito 0010D - Total: 2602 - nulos 68 (2.61%)\n",
" Circuito 0012E - Total: 2871 - nulos 75 (2.61%)\n",
" Circuito 0013O - Total: 735 - nulos 19 (2.59%)\n",
" Circuito 0012D - Total: 17836 - nulos 461 (2.58%)\n",
" Circuito 0011E - Total: 11705 - nulos 302 (2.58%)\n",
" Circuito 0013A - Total: 14213 - nulos 361 (2.54%)\n",
" Circuito 0013H - Total: 13323 - nulos 336 (2.52%)\n",
" Circuito 0010J - Total: 8944 - nulos 225 (2.52%)\n",
" Circuito 0006F - Total: 6010 - nulos 151 (2.51%)\n",
" Circuito 0005I - Total: 3038 - nulos 76 (2.50%)\n",
" Circuito 0014O - Total: 5418 - nulos 135 (2.49%)\n",
" Circuito 0007G - Total: 9105 - nulos 223 (2.45%)\n",
" Circuito 0011K - Total: 7989 - nulos 193 (2.42%)\n",
" Circuito 0011G - Total: 9200 - nulos 221 (2.40%)\n",
" Circuito 0013C - Total: 10512 - nulos 246 (2.34%)\n",
" Circuito 0009C - Total: 10664 - nulos 248 (2.33%)\n",
" Circuito 0012 - Total: 6088 - nulos 141 (2.32%)\n",
" Circuito 0010 - Total: 12803 - nulos 293 (2.29%)\n",
" Circuito 0004C - Total: 3240 - nulos 74 (2.28%)\n",
" Circuito 0013J - Total: 21029 - nulos 477 (2.27%)\n",
" Circuito 0013I - Total: 4644 - nulos 105 (2.26%)\n",
" Circuito 0005G - Total: 11490 - nulos 254 (2.21%)\n",
" Circuito 0005C - Total: 13696 - nulos 302 (2.21%)\n",
" Circuito 0013 - Total: 7122 - nulos 157 (2.20%)\n",
" Circuito 0007A - Total: 4567 - nulos 99 (2.17%)\n",
" Circuito 0005H - Total: 1202 - nulos 26 (2.16%)\n",
" Circuito 0005 - Total: 9957 - nulos 215 (2.16%)\n",
" Circuito 0006E - Total: 1311 - nulos 28 (2.14%)\n",
" Circuito 0005B - Total: 1574 - nulos 33 (2.10%)\n",
" Circuito 0013F - Total: 5892 - nulos 123 (2.09%)\n",
" Circuito 0013N - Total: 5821 - nulos 120 (2.06%)\n",
" Circuito 0011D - Total: 10103 - nulos 207 (2.05%)\n",
" Circuito 0014H - Total: 983 - nulos 20 (2.03%)\n",
" Circuito 0010F - Total: 9765 - nulos 196 (2.01%)\n",
" Circuito 0008B - Total: 14390 - nulos 288 (2.00%)\n",
" Circuito 0010C - Total: 5471 - nulos 109 (1.99%)\n",
" Circuito 0014G - Total: 6685 - nulos 131 (1.96%)\n",
" Circuito 0014P - Total: 2713 - nulos 53 (1.95%)\n",
" Circuito 0012F - Total: 14782 - nulos 286 (1.93%)\n",
" Circuito 0007F - Total: 6495 - nulos 125 (1.92%)\n",
" Circuito 0011J - Total: 13442 - nulos 249 (1.85%)\n",
" Circuito 0014I - Total: 3906 - nulos 72 (1.84%)\n",
" Circuito 0007E - Total: 12240 - nulos 220 (1.80%)\n",
" Circuito 0012C - Total: 3519 - nulos 63 (1.79%)\n",
" Circuito 0014Q - Total: 842 - nulos 15 (1.78%)\n",
" Circuito 0014F - Total: 5289 - nulos 94 (1.78%)\n",
" Circuito 0009F - Total: 11750 - nulos 208 (1.77%)\n",
" Circuito 0005D - Total: 7292 - nulos 129 (1.77%)\n",
" Circuito 0007B - Total: 16991 - nulos 300 (1.77%)\n",
" Circuito 0014B - Total: 5911 - nulos 102 (1.73%)\n",
" Circuito 0011A - Total: 17438 - nulos 300 (1.72%)\n",
" Circuito 0009D - Total: 7406 - nulos 127 (1.71%)\n",
" Circuito 0011C - Total: 11896 - nulos 202 (1.70%)\n",
" Circuito 0010G - Total: 14702 - nulos 248 (1.69%)\n",
" Circuito 0012H - Total: 7496 - nulos 125 (1.67%)\n",
" Circuito 0013L - Total: 303 - nulos 5 (1.65%)\n",
" Circuito 0010I - Total: 7355 - nulos 119 (1.62%)\n",
" Circuito 0011B - Total: 4910 - nulos 77 (1.57%)\n",
" Circuito 0010K - Total: 3135 - nulos 49 (1.56%)\n",
" Circuito 0012B - Total: 16704 - nulos 259 (1.55%)\n",
" Circuito 0009E - Total: 3444 - nulos 53 (1.54%)\n",
" Circuito 0011F - Total: 4669 - nulos 71 (1.52%)\n",
" Circuito 0014C - Total: 3493 - nulos 53 (1.52%)\n",
" Circuito 0002 - Total: 3744 - nulos 56 (1.50%)\n",
" Circuito 0004B - Total: 11849 - nulos 176 (1.49%)\n",
" Circuito 0006B - Total: 210 - nulos 3 (1.43%)\n",
" Circuito 0009A - Total: 3729 - nulos 53 (1.42%)\n",
" Circuito 0006C - Total: 8460 - nulos 120 (1.42%)\n",
" Circuito 0010B - Total: 9398 - nulos 132 (1.40%)\n",
" Circuito 0010H - Total: 9271 - nulos 126 (1.36%)\n",
" Circuito 0004A - Total: 13506 - nulos 181 (1.34%)\n",
" Circuito 0006 - Total: 4031 - nulos 53 (1.31%)\n",
" Circuito 0007 - Total: 160 - nulos 2 (1.25%)\n",
" Circuito 0008A - Total: 2902 - nulos 36 (1.24%)\n",
" Circuito 0003 - Total: 14302 - nulos 176 (1.23%)\n",
" Circuito 0004F - Total: 1152 - nulos 14 (1.22%)\n",
" Circuito 0001 - Total: 10842 - nulos 128 (1.18%)\n",
" Circuito 0006D - Total: 5020 - nulos 59 (1.18%)\n",
" Circuito 0011H - Total: 5189 - nulos 60 (1.16%)\n",
" Circuito 0009B - Total: 6348 - nulos 73 (1.15%)\n",
" Circuito 0014M - Total: 7561 - nulos 79 (1.04%)\n",
" Circuito 0007D - Total: 6355 - nulos 66 (1.04%)\n",
" Circuito 0009G - Total: 4540 - nulos 47 (1.04%)\n",
" Circuito 0009 - Total: 4746 - nulos 49 (1.03%)\n",
" Circuito 0004 - Total: 13812 - nulos 127 (0.92%)\n",
" Circuito 0013B - Total: 128 - nulos 1 (0.78%)\n",
" Circuito 0014L - Total: 4654 - nulos 36 (0.77%)\n",
" Circuito 0014 - Total: 4947 - nulos 37 (0.75%)\n",
" Circuito 0004D - Total: 1260 - nulos 9 (0.71%)\n",
" Circuito 0014D - Total: 5450 - nulos 35 (0.64%)\n",
" Circuito 0006A - Total: 340 - nulos 2 (0.59%)\n",
" Circuito 0014J - Total: 6120 - nulos 32 (0.52%)\n",
" Circuito 0011M - Total: 2495 - nulos 11 (0.44%)\n",
" Circuito 0011L - Total: 1913 - nulos 3 (0.16%)\n",
" Circuito 0007C - Total: 9 - nulos 0 (0.00%)\n",
"011 - Pocho - Total: 3035 - nulos 55 (1.81%)\n",
" Circuito 0146B - Total: 122 - nulos 12 (9.84%)\n",
" Circuito 0146A - Total: 202 - nulos 5 (2.48%)\n",
" Circuito 0146 - Total: 1387 - nulos 29 (2.09%)\n",
" Circuito 0146C - Total: 87 - nulos 1 (1.15%)\n",
" Circuito 0144 - Total: 610 - nulos 7 (1.15%)\n",
" Circuito 0145 - Total: 365 - nulos 1 (0.27%)\n",
" Circuito 0144A - Total: 40 - nulos 0 (0.00%)\n",
" Circuito 0144B - Total: 35 - nulos 0 (0.00%)\n",
" Circuito 0145A - Total: 187 - nulos 0 (0.00%)\n",
"008 - Ju\u00e1rez Celman - Total: 37857 - nulos 651 (1.72%)\n",
" Circuito 0109 - Total: 7226 - nulos 193 (2.67%)\n",
" Circuito 0108 - Total: 799 - nulos 18 (2.25%)\n",
" Circuito 0112 - Total: 8244 - nulos 184 (2.23%)\n",
" Circuito 0106 - Total: 7751 - nulos 135 (1.74%)\n",
" Circuito 0102 - Total: 3784 - nulos 64 (1.69%)\n",
" Circuito 0114 - Total: 256 - nulos 3 (1.17%)\n",
" Circuito 0113 - Total: 510 - nulos 5 (0.98%)\n",
" Circuito 0118 - Total: 3715 - nulos 33 (0.89%)\n",
" Circuito 0111 - Total: 917 - nulos 5 (0.55%)\n",
" Circuito 0107 - Total: 1457 - nulos 6 (0.41%)\n",
" Circuito 0116 - Total: 1074 - nulos 2 (0.19%)\n",
" Circuito 0117 - Total: 1667 - nulos 3 (0.18%)\n",
" Circuito 0103 - Total: 47 - nulos 0 (0.00%)\n",
" Circuito 0105 - Total: 251 - nulos 0 (0.00%)\n",
" Circuito 0110 - Total: 26 - nulos 0 (0.00%)\n",
" Circuito 0110A - Total: 55 - nulos 0 (0.00%)\n",
" Circuito 0116A - Total: 78 - nulos 0 (0.00%)\n",
"004 - Cruz del Eje - Total: 30008 - nulos 506 (1.69%)\n",
" Circuito 0053A - Total: 30 - nulos 1 (3.33%)"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
" Circuito 0052 - Total: 169 - nulos 5 (2.96%)\n",
" Circuito 0043 - Total: 36 - nulos 1 (2.78%)\n",
" Circuito 0044A - Total: 191 - nulos 5 (2.62%)\n",
" Circuito 0054 - Total: 1455 - nulos 35 (2.41%)\n",
" Circuito 0054A - Total: 92 - nulos 2 (2.17%)\n",
" Circuito 0044 - Total: 16929 - nulos 319 (1.88%)\n",
" Circuito 0056 - Total: 5096 - nulos 96 (1.88%)\n",
" Circuito 0049 - Total: 64 - nulos 1 (1.56%)\n",
" Circuito 0055A - Total: 79 - nulos 1 (1.27%)\n",
" Circuito 0051A - Total: 82 - nulos 1 (1.22%)\n",
" Circuito 0050 - Total: 640 - nulos 7 (1.09%)\n",
" Circuito 0043A - Total: 96 - nulos 1 (1.04%)\n",
" Circuito 0050A - Total: 486 - nulos 5 (1.03%)\n",
" Circuito 0055 - Total: 1614 - nulos 14 (0.87%)\n",
" Circuito 0043B - Total: 153 - nulos 1 (0.65%)\n",
" Circuito 0051 - Total: 462 - nulos 3 (0.65%)\n",
" Circuito 0045 - Total: 465 - nulos 3 (0.65%)\n",
" Circuito 0048 - Total: 381 - nulos 2 (0.52%)\n",
" Circuito 0042 - Total: 440 - nulos 2 (0.45%)\n",
" Circuito 0046 - Total: 298 - nulos 1 (0.34%)\n",
" Circuito 0043C - Total: 2 - nulos 0 (0.00%)\n",
" Circuito 0046B - Total: 179 - nulos 0 (0.00%)\n",
" Circuito 0047 - Total: 63 - nulos 0 (0.00%)\n",
" Circuito 0053 - Total: 29 - nulos 0 (0.00%)\n",
" Circuito 0053B - Total: 19 - nulos 0 (0.00%)\n",
" Circuito 0057 - Total: 458 - nulos 0 (0.00%)\n",
"002 - Calamuchita - Total: 32614 - nulos 537 (1.65%)\n",
" Circuito 0018B - Total: 160 - nulos 9 (5.62%)\n",
" Circuito 0016C - Total: 82 - nulos 3 (3.66%)\n",
" Circuito 0024 - Total: 1424 - nulos 36 (2.53%)\n",
" Circuito 0017 - Total: 5259 - nulos 125 (2.38%)\n",
" Circuito 0020A - Total: 5079 - nulos 106 (2.09%)\n",
" Circuito 0015A - Total: 336 - nulos 7 (2.08%)\n",
" Circuito 0015 - Total: 204 - nulos 4 (1.96%)\n",
" Circuito 0020B - Total: 534 - nulos 10 (1.87%)\n",
" Circuito 0026 - Total: 7323 - nulos 116 (1.58%)\n",
" Circuito 0022 - Total: 833 - nulos 13 (1.56%)\n",
" Circuito 0020 - Total: 838 - nulos 13 (1.55%)\n",
" Circuito 0328A - Total: 522 - nulos 8 (1.53%)\n",
" Circuito 0019 - Total: 2187 - nulos 33 (1.51%)\n",
" Circuito 0023 - Total: 821 - nulos 12 (1.46%)\n",
" Circuito 0018 - Total: 1167 - nulos 14 (1.20%)\n",
" Circuito 0026B - Total: 97 - nulos 1 (1.03%)\n",
" Circuito 0025B - Total: 236 - nulos 2 (0.85%)\n",
" Circuito 0024A - Total: 2325 - nulos 18 (0.77%)\n",
" Circuito 0025 - Total: 2408 - nulos 7 (0.29%)\n",
" Circuito 0016 - Total: 87 - nulos 0 (0.00%)\n",
" Circuito 0016A - Total: 46 - nulos 0 (0.00%)\n",
" Circuito 0016B - Total: 15 - nulos 0 (0.00%)\n",
" Circuito 0018A - Total: 132 - nulos 0 (0.00%)\n",
" Circuito 0018C - Total: 33 - nulos 0 (0.00%)\n",
" Circuito 0018D - Total: 68 - nulos 0 (0.00%)\n",
" Circuito 0021 - Total: 219 - nulos 0 (0.00%)\n",
" Circuito 0025A - Total: 79 - nulos 0 (0.00%)\n",
" Circuito 0026A - Total: 100 - nulos 0 (0.00%)\n",
"016 - R\u00edo Segundo - Total: 66285 - nulos 1075 (1.62%)\n",
" Circuito 0243 - Total: 13162 - nulos 320 (2.43%)"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
" Circuito 0237 - Total: 4377 - nulos 97 (2.22%)\n",
" Circuito 0233 - Total: 1152 - nulos 23 (2.00%)\n",
" Circuito 0245 - Total: 9395 - nulos 173 (1.84%)\n",
" Circuito 0241 - Total: 4207 - nulos 76 (1.81%)\n",
" Circuito 0240 - Total: 9233 - nulos 163 (1.77%)\n",
" Circuito 0231 - Total: 263 - nulos 4 (1.52%)\n",
" Circuito 0244A - Total: 224 - nulos 3 (1.34%)\n",
" Circuito 0235 - Total: 5481 - nulos 70 (1.28%)\n",
" Circuito 0239 - Total: 9402 - nulos 114 (1.21%)\n",
" Circuito 0237A - Total: 696 - nulos 8 (1.15%)\n",
" Circuito 0234 - Total: 1148 - nulos 11 (0.96%)\n",
" Circuito 0237B - Total: 146 - nulos 1 (0.68%)\n",
" Circuito 0242 - Total: 344 - nulos 2 (0.58%)\n",
" Circuito 0236 - Total: 1254 - nulos 5 (0.40%)\n",
" Circuito 0244 - Total: 1600 - nulos 4 (0.25%)\n",
" Circuito 0238 - Total: 559 - nulos 1 (0.18%)\n",
" Circuito 0230 - Total: 1700 - nulos 0 (0.00%)\n",
" Circuito 0230A - Total: 554 - nulos 0 (0.00%)\n",
" Circuito 0232 - Total: 1338 - nulos 0 (0.00%)\n",
" Circuito 0236A - Total: 32 - nulos 0 (0.00%)\n",
" Circuito 0242A - Total: 18 - nulos 0 (0.00%)\n",
"023 - Tercero Arriba - Total: 71519 - nulos 1112 (1.55%)\n",
" Circuito 0340 - Total: 7476 - nulos 155 (2.07%)\n",
" Circuito 0344 - Total: 8376 - nulos 170 (2.03%)\n",
" Circuito 0348 - Total: 30840 - nulos 543 (1.76%)\n",
" Circuito 0341 - Total: 3474 - nulos 61 (1.76%)\n",
" Circuito 0346 - Total: 1043 - nulos 14 (1.34%)\n",
" Circuito 0349 - Total: 3669 - nulos 43 (1.17%)\n",
" Circuito 0336 - Total: 7567 - nulos 83 (1.10%)\n",
" Circuito 0343 - Total: 481 - nulos 5 (1.04%)\n",
" Circuito 0339 - Total: 1046 - nulos 9 (0.86%)\n",
" Circuito 0337A - Total: 492 - nulos 4 (0.81%)\n",
" Circuito 0342 - Total: 2676 - nulos 20 (0.75%)\n",
" Circuito 0338 - Total: 1343 - nulos 5 (0.37%)\n",
" Circuito 0337 - Total: 1940 - nulos 0 (0.00%)\n",
" Circuito 0345 - Total: 339 - nulos 0 (0.00%)\n",
" Circuito 0347 - Total: 204 - nulos 0 (0.00%)\n",
" Circuito 0347A - Total: 234 - nulos 0 (0.00%)\n",
" Circuito 0349A - Total: 319 - nulos 0 (0.00%)\n",
"006 - General San Mart\u00edn - Total: 81199 - nulos 1253 (1.54%)\n",
" Circuito 0081 - Total: 58 - nulos 2 (3.45%)"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
" Circuito 0083 - Total: 896 - nulos 27 (3.01%)\n",
" Circuito 0089 - Total: 51605 - nulos 898 (1.74%)\n",
" Circuito 0078 - Total: 1075 - nulos 18 (1.67%)\n",
" Circuito 0090 - Total: 12410 - nulos 192 (1.55%)\n",
" Circuito 0075 - Total: 772 - nulos 9 (1.17%)\n",
" Circuito 0088 - Total: 2317 - nulos 25 (1.08%)\n",
" Circuito 0077 - Total: 2913 - nulos 29 (1.00%)\n",
" Circuito 0086 - Total: 520 - nulos 5 (0.96%)\n",
" Circuito 0079 - Total: 2077 - nulos 19 (0.91%)\n",
" Circuito 0074 - Total: 2343 - nulos 16 (0.68%)\n",
" Circuito 0073 - Total: 922 - nulos 6 (0.65%)\n",
" Circuito 0087 - Total: 1523 - nulos 6 (0.39%)\n",
" Circuito 0076 - Total: 770 - nulos 1 (0.13%)\n",
" Circuito 0080 - Total: 498 - nulos 0 (0.00%)\n",
" Circuito 0082 - Total: 445 - nulos 0 (0.00%)\n",
" Circuito 0084 - Total: 35 - nulos 0 (0.00%)\n",
" Circuito 0088A - Total: 7 - nulos 0 (0.00%)\n",
" Circuito 0088B - Total: 13 - nulos 0 (0.00%)\n",
"007 - Ischilin - Total: 20259 - nulos 312 (1.54%)\n",
" Circuito 0098 - Total: 49 - nulos 2 (4.08%)\n",
" Circuito 0095 - Total: 14346 - nulos 244 (1.70%)\n",
" Circuito 0091 - Total: 361 - nulos 6 (1.66%)\n",
" Circuito 0092 - Total: 310 - nulos 5 (1.61%)\n",
" Circuito 0096A - Total: 454 - nulos 7 (1.54%)\n",
" Circuito 0099 - Total: 3101 - nulos 44 (1.42%)\n",
" Circuito 0091C - Total: 201 - nulos 2 (1.00%)\n",
" Circuito 0094 - Total: 488 - nulos 2 (0.41%)\n",
" Circuito 0091A - Total: 12 - nulos 0 (0.00%)\n",
" Circuito 0091B - Total: 78 - nulos 0 (0.00%)\n",
" Circuito 0093 - Total: 254 - nulos 0 (0.00%)\n",
" Circuito 0097 - Total: 58 - nulos 0 (0.00%)\n",
" Circuito 0100 - Total: 486 - nulos 0 (0.00%)\n",
" Circuito 0101 - Total: 61 - nulos 0 (0.00%)\n",
"018 - San Alberto - Total: 21994 - nulos 327 (1.49%)\n",
" Circuito 0263D - Total: 344 - nulos 14 (4.07%)"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
" Circuito 0260A - Total: 38 - nulos 1 (2.63%)\n",
" Circuito 0264A - Total: 134 - nulos 3 (2.24%)\n",
" Circuito 0261 - Total: 3667 - nulos 78 (2.13%)\n",
" Circuito 0262 - Total: 5611 - nulos 113 (2.01%)\n",
" Circuito 0263C - Total: 351 - nulos 7 (1.99%)\n",
" Circuito 0266 - Total: 1011 - nulos 19 (1.88%)\n",
" Circuito 0263A - Total: 115 - nulos 2 (1.74%)\n",
" Circuito 0264 - Total: 239 - nulos 4 (1.67%)\n",
" Circuito 0263 - Total: 1652 - nulos 26 (1.57%)\n",
" Circuito 0260 - Total: 695 - nulos 9 (1.29%)\n",
" Circuito 0261A - Total: 634 - nulos 8 (1.26%)\n",
" Circuito 0265A - Total: 2959 - nulos 33 (1.12%)\n",
" Circuito 0263E - Total: 480 - nulos 4 (0.83%)\n",
" Circuito 0265C - Total: 591 - nulos 2 (0.34%)\n",
" Circuito 0265 - Total: 3197 - nulos 4 (0.13%)\n",
" Circuito 0259 - Total: 15 - nulos 0 (0.00%)\n",
" Circuito 0261B - Total: 42 - nulos 0 (0.00%)\n",
" Circuito 0263B - Total: 26 - nulos 0 (0.00%)\n",
" Circuito 0265B - Total: 54 - nulos 0 (0.00%)\n",
" Circuito 0266A - Total: 139 - nulos 0 (0.00%)\n",
"020 - San Justo - Total: 127322 - nulos 1796 (1.41%)\n",
" Circuito 0311 - Total: 177 - nulos 6 (3.39%)"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
" Circuito 0287 - Total: 93 - nulos 3 (3.23%)\n",
" Circuito 0288A - Total: 86 - nulos 2 (2.33%)\n",
" Circuito 0302 - Total: 86 - nulos 2 (2.33%)\n",
" Circuito 0310 - Total: 19612 - nulos 441 (2.25%)\n",
" Circuito 0298 - Total: 10672 - nulos 214 (2.01%)\n",
" Circuito 0279 - Total: 14760 - nulos 264 (1.79%)\n",
" Circuito 0310A - Total: 18878 - nulos 307 (1.63%)\n",
" Circuito 0313 - Total: 495 - nulos 8 (1.62%)\n",
" Circuito 0285 - Total: 4201 - nulos 65 (1.55%)\n",
" Circuito 0301 - Total: 1326 - nulos 19 (1.43%)\n",
" Circuito 0278 - Total: 1450 - nulos 20 (1.38%)\n",
" Circuito 0297 - Total: 944 - nulos 13 (1.38%)\n",
" Circuito 0290 - Total: 1369 - nulos 18 (1.31%)\n",
" Circuito 0304 - Total: 11098 - nulos 143 (1.29%)\n",
" Circuito 0308 - Total: 2215 - nulos 27 (1.22%)\n",
" Circuito 0314 - Total: 2050 - nulos 23 (1.12%)\n",
" Circuito 0294 - Total: 790 - nulos 8 (1.01%)\n",
" Circuito 0291 - Total: 4694 - nulos 47 (1.00%)\n",
" Circuito 0282 - Total: 6492 - nulos 65 (1.00%)\n",
" Circuito 0303 - Total: 1563 - nulos 15 (0.96%)\n",
" Circuito 0315 - Total: 537 - nulos 5 (0.93%)\n",
" Circuito 0305 - Total: 3576 - nulos 32 (0.89%)\n",
" Circuito 0295A - Total: 169 - nulos 1 (0.59%)\n",
" Circuito 0293 - Total: 2639 - nulos 12 (0.45%)\n",
" Circuito 0288 - Total: 1558 - nulos 7 (0.45%)\n",
" Circuito 0307 - Total: 466 - nulos 2 (0.43%)\n",
" Circuito 0309 - Total: 1139 - nulos 4 (0.35%)\n",
" Circuito 0277 - Total: 2227 - nulos 7 (0.31%)\n",
" Circuito 0280 - Total: 4307 - nulos 13 (0.30%)\n",
" Circuito 0295 - Total: 1245 - nulos 3 (0.24%)\n",
" Circuito 0279A - Total: 293 - nulos 0 (0.00%)\n",
" Circuito 0281 - Total: 101 - nulos 0 (0.00%)\n",
" Circuito 0283 - Total: 1268 - nulos 0 (0.00%)\n",
" Circuito 0283A - Total: 155 - nulos 0 (0.00%)\n",
" Circuito 0286 - Total: 111 - nulos 0 (0.00%)\n",
" Circuito 0289 - Total: 932 - nulos 0 (0.00%)\n",
" Circuito 0291A - Total: 64 - nulos 0 (0.00%)\n",
" Circuito 0292 - Total: 77 - nulos 0 (0.00%)\n",
" Circuito 0294A - Total: 168 - nulos 0 (0.00%)\n",
" Circuito 0296 - Total: 1722 - nulos 0 (0.00%)\n",
" Circuito 0299 - Total: 289 - nulos 0 (0.00%)\n",
" Circuito 0300 - Total: 984 - nulos 0 (0.00%)\n",
" Circuito 0306 - Total: 219 - nulos 0 (0.00%)\n",
" Circuito 0312 - Total: 25 - nulos 0 (0.00%)\n",
"010 - Minas - Total: 3371 - nulos 46 (1.36%)\n",
" Circuito 0139B - Total: 187 - nulos 7 (3.74%)\n",
" Circuito 0140 - Total: 164 - nulos 4 (2.44%)\n",
" Circuito 0139A - Total: 57 - nulos 1 (1.75%)\n",
" Circuito 0140A - Total: 60 - nulos 1 (1.67%)\n",
" Circuito 0138B - Total: 66 - nulos 1 (1.52%)\n",
" Circuito 0138C - Total: 217 - nulos 3 (1.38%)\n",
" Circuito 0142 - Total: 1494 - nulos 20 (1.34%)\n",
" Circuito 0138 - Total: 577 - nulos 7 (1.21%)\n",
" Circuito 0142A - Total: 104 - nulos 1 (0.96%)\n",
" Circuito 0139 - Total: 156 - nulos 1 (0.64%)\n",
" Circuito 0138A - Total: 18 - nulos 0 (0.00%)\n",
" Circuito 0138D - Total: 111 - nulos 0 (0.00%)\n",
" Circuito 0141 - Total: 56 - nulos 0 (0.00%)\n",
" Circuito 0141A - Total: 104 - nulos 0 (0.00%)\n",
"019 - San Javier - Total: 31731 - nulos 421 (1.33%)\n",
" Circuito 0269B - Total: 16 - nulos 1 (6.25%)"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
" Circuito 0274 - Total: 599 - nulos 14 (2.34%)\n",
" Circuito 0267 - Total: 307 - nulos 7 (2.28%)\n",
" Circuito 0270 - Total: 2932 - nulos 60 (2.05%)\n",
" Circuito 0275 - Total: 1624 - nulos 32 (1.97%)\n",
" Circuito 0273 - Total: 604 - nulos 9 (1.49%)\n",
" Circuito 0268 - Total: 19465 - nulos 250 (1.28%)\n",
" Circuito 0272 - Total: 725 - nulos 9 (1.24%)\n",
" Circuito 0271 - Total: 1091 - nulos 11 (1.01%)\n",
" Circuito 0275A - Total: 1322 - nulos 11 (0.83%)\n",
" Circuito 0276 - Total: 604 - nulos 5 (0.83%)\n",
" Circuito 0269 - Total: 2041 - nulos 12 (0.59%)\n",
" Circuito 0269A - Total: 117 - nulos 0 (0.00%)\n",
" Circuito 0274A - Total: 284 - nulos 0 (0.00%)\n",
"017 - Presidente Roque S\u00e1enz Pe\u00f1a - Total: 22544 - nulos 231 (1.02%)\n",
" Circuito 0254 - Total: 78 - nulos 2 (2.56%)\n",
" Circuito 0252 - Total: 3940 - nulos 66 (1.68%)\n",
" Circuito 0255 - Total: 331 - nulos 5 (1.51%)\n",
" Circuito 0251 - Total: 67 - nulos 1 (1.49%)\n",
" Circuito 0256 - Total: 97 - nulos 1 (1.03%)\n",
" Circuito 0257 - Total: 2391 - nulos 23 (0.96%)\n",
" Circuito 0248 - Total: 13271 - nulos 127 (0.96%)\n",
" Circuito 0258 - Total: 479 - nulos 4 (0.84%)\n",
" Circuito 0249 - Total: 982 - nulos 2 (0.20%)\n",
" Circuito 0253 - Total: 908 - nulos 0 (0.00%)\n",
"015 - R\u00edo Seco - Total: 7589 - nulos 72 (0.95%)\n",
" Circuito 0228 - Total: 1570 - nulos 25 (1.59%)\n",
" Circuito 0226A - Total: 231 - nulos 3 (1.30%)\n",
" Circuito 0229A - Total: 155 - nulos 2 (1.29%)\n",
" Circuito 0229 - Total: 3427 - nulos 37 (1.08%)\n",
" Circuito 0223 - Total: 295 - nulos 3 (1.02%)\n",
" Circuito 0225 - Total: 584 - nulos 2 (0.34%)\n",
" Circuito 0224 - Total: 18 - nulos 0 (0.00%)\n",
" Circuito 0225A - Total: 56 - nulos 0 (0.00%)\n",
" Circuito 0226 - Total: 299 - nulos 0 (0.00%)\n",
" Circuito 0227 - Total: 482 - nulos 0 (0.00%)\n",
" Circuito 0227B - Total: 242 - nulos 0 (0.00%)\n",
" Circuito 0227D - Total: 230 - nulos 0 (0.00%)\n",
"014 - R\u00edo Primero - Total: 30305 - nulos 285 (0.94%)\n",
" Circuito 0216 - Total: 23 - nulos 1 (4.35%)"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
" Circuito 0217 - Total: 88 - nulos 2 (2.27%)\n",
" Circuito 0203 - Total: 300 - nulos 6 (2.00%)\n",
" Circuito 0211 - Total: 6598 - nulos 123 (1.86%)\n",
" Circuito 0201A - Total: 110 - nulos 2 (1.82%)\n",
" Circuito 0208 - Total: 260 - nulos 4 (1.54%)\n",
" Circuito 0218 - Total: 5171 - nulos 64 (1.24%)\n",
" Circuito 0220 - Total: 5763 - nulos 57 (0.99%)\n",
" Circuito 0212 - Total: 131 - nulos 1 (0.76%)\n",
" Circuito 0213 - Total: 1721 - nulos 11 (0.64%)\n",
" Circuito 0195 - Total: 160 - nulos 1 (0.62%)\n",
" Circuito 0219 - Total: 163 - nulos 1 (0.61%)\n",
" Circuito 0200 - Total: 416 - nulos 2 (0.48%)\n",
" Circuito 0222 - Total: 779 - nulos 3 (0.39%)\n",
" Circuito 0198 - Total: 856 - nulos 2 (0.23%)\n",
" Circuito 0205 - Total: 1592 - nulos 2 (0.13%)\n",
" Circuito 0204 - Total: 2948 - nulos 3 (0.10%)\n",
" Circuito 0196 - Total: 183 - nulos 0 (0.00%)\n",
" Circuito 0197 - Total: 254 - nulos 0 (0.00%)\n",
" Circuito 0199 - Total: 187 - nulos 0 (0.00%)\n",
" Circuito 0201 - Total: 79 - nulos 0 (0.00%)\n",
" Circuito 0206 - Total: 56 - nulos 0 (0.00%)\n",
" Circuito 0207 - Total: 180 - nulos 0 (0.00%)\n",
" Circuito 0209 - Total: 141 - nulos 0 (0.00%)\n",
" Circuito 0210 - Total: 88 - nulos 0 (0.00%)\n",
" Circuito 0212B - Total: 215 - nulos 0 (0.00%)\n",
" Circuito 0214 - Total: 1419 - nulos 0 (0.00%)\n",
" Circuito 0215 - Total: 125 - nulos 0 (0.00%)\n",
" Circuito 0215A - Total: 196 - nulos 0 (0.00%)\n",
" Circuito 0221 - Total: 103 - nulos 0 (0.00%)\n",
"005 - General Roca - Total: 20448 - nulos 172 (0.84%)\n",
" Circuito 0065 - Total: 15 - nulos 1 (6.67%)\n",
" Circuito 0068 - Total: 233 - nulos 4 (1.72%)\n",
" Circuito 0061 - Total: 5597 - nulos 70 (1.25%)\n",
" Circuito 0059 - Total: 1253 - nulos 13 (1.04%)\n",
" Circuito 0060 - Total: 2178 - nulos 21 (0.96%)\n",
" Circuito 0071 - Total: 230 - nulos 2 (0.87%)\n",
" Circuito 0072 - Total: 1843 - nulos 16 (0.87%)\n",
" Circuito 0070 - Total: 3816 - nulos 33 (0.86%)\n",
" Circuito 0062 - Total: 656 - nulos 4 (0.61%)\n",
" Circuito 0063 - Total: 3061 - nulos 8 (0.26%)\n",
" Circuito 0058 - Total: 196 - nulos 0 (0.00%)\n",
" Circuito 0066 - Total: 1274 - nulos 0 (0.00%)\n",
" Circuito 0067 - Total: 54 - nulos 0 (0.00%)\n",
" Circuito 0069 - Total: 42 - nulos 0 (0.00%)\n",
"009 - Marcos Ju\u00e1rez - Total: 65172 - nulos 438 (0.67%)\n",
" Circuito 0120 - Total: 4551 - nulos 74 (1.63%)"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
" Circuito 0136 - Total: 1966 - nulos 26 (1.32%)\n",
" Circuito 0130 - Total: 546 - nulos 6 (1.10%)\n",
" Circuito 0133 - Total: 16629 - nulos 177 (1.06%)\n",
" Circuito 0124 - Total: 889 - nulos 8 (0.90%)\n",
" Circuito 0121 - Total: 1621 - nulos 14 (0.86%)\n",
" Circuito 0131 - Total: 7177 - nulos 56 (0.78%)\n",
" Circuito 0134 - Total: 4180 - nulos 29 (0.69%)\n",
" Circuito 0132 - Total: 2046 - nulos 8 (0.39%)\n",
" Circuito 0125 - Total: 7013 - nulos 25 (0.36%)\n",
" Circuito 0128 - Total: 2742 - nulos 6 (0.22%)\n",
" Circuito 0129 - Total: 3063 - nulos 5 (0.16%)\n",
" Circuito 0126 - Total: 4619 - nulos 3 (0.06%)\n",
" Circuito 0119 - Total: 2319 - nulos 1 (0.04%)\n",
" Circuito 0122 - Total: 139 - nulos 0 (0.00%)\n",
" Circuito 0123 - Total: 3173 - nulos 0 (0.00%)\n",
" Circuito 0127 - Total: 1684 - nulos 0 (0.00%)\n",
" Circuito 0128A - Total: 98 - nulos 0 (0.00%)\n",
" Circuito 0131A - Total: 23 - nulos 0 (0.00%)\n",
" Circuito 0135 - Total: 280 - nulos 0 (0.00%)\n",
" Circuito 0137 - Total: 414 - nulos 0 (0.00%)\n",
"022 - Sobremonte - Total: 2397 - nulos 15 (0.63%)\n",
" Circuito 0335 - Total: 1730 - nulos 13 (0.75%)\n",
" Circuito 0334 - Total: 268 - nulos 2 (0.75%)\n",
" Circuito 0332 - Total: 399 - nulos 0 (0.00%)\n"
]
}
],
"prompt_number": 9
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Mesas con muchos nulos y pocos al FIT\n",
"\n",
"Se consideran mesas computadas con 9 o m\u00e1s votos nulos que representen al menos un 3% de la mesa y donde el FIT haya sacado menos del 3% de los votos. \n",
"\n",
"\u00bfPuede que muchos de los votos nulos sean del FIT?"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"contador = 0\n",
"for mesa in Mesa.objects.annotate(Sum('votomesa__votos')).filter(votomesa__votos__sum__gt=0):\n",
" nulos = mesa.votomesa_set.filter(opcion__nombre='Votos nulos').aggregate(Sum('votos'))['votos__sum']\n",
" porcentaje_nulo = (nulos / float(mesa.computados)) * 100\n",
" votos_fit = mesa.votomesa_set.get(opcion__nombre='FRENTE DE IZQUIERDA Y DE LOS TRABAJADORES').votos\n",
" porcentaje_fit = (votos_fit / float(mesa.computados)) * 100\n",
" if nulos >= 9 and porcentaje_nulo >= 3 and porcentaje_fit <= 3:\n",
" contador += 1\n",
" display_html(HTML(\"<a href='%s'>%s</a> - Nulos %d, (%.2f%%) - FIT %d (%.2f %%)\" % (mesa.url, mesa, nulos, porcentaje_nulo, \n",
" votos_fit, porcentaje_fit)))"
],
"language": "python",
"metadata": {},
"outputs": [
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/024/0351/040240351_7636.htm'>Mesa 7636 (Circuito 0351 (None))</a> - Nulos 9, (3.59%) - FIT 3 (1.20 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/024/0359/040240359_7658.htm'>Mesa 7658 (Circuito 0359 (None))</a> - Nulos 13, (4.38%) - FIT 6 (2.02 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0007E/040010007E0789.htm'>Mesa 0789 (Circuito 0007E (001 - Capital))</a> - Nulos 9, (3.67%) - FIT 4 (1.63 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0009C/040010009C1009.htm'>Mesa 1009 (Circuito 0009C (001 - Capital))</a> - Nulos 10, (4.37%) - FIT 0 (0.00 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0011I/040010011I1912.htm'>Mesa 1912 (Circuito 0011I (001 - Capital))</a> - Nulos 14, (5.17%) - FIT 6 (2.21 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0012I/040010012I2350.htm'>Mesa 2350 (Circuito 0012I (001 - Capital))</a> - Nulos 9, (3.42%) - FIT 6 (2.28 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0013C/040010013C2461.htm'>Mesa 2461 (Circuito 0013C (001 - Capital))</a> - Nulos 10, (4.59%) - FIT 0 (0.00 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0014A/040010014A2766.htm'>Mesa 2766 (Circuito 0014A (001 - Capital))</a> - Nulos 9, (3.30%) - FIT 1 (0.37 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/002/0017/040020017_3108.htm'>Mesa 3108 (Circuito 0017 (002 - Calamuchita))</a> - Nulos 10, (3.75%) - FIT 4 (1.50 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/002/0024/040020024_3162.htm'>Mesa 3162 (Circuito 0024 (002 - Calamuchita))</a> - Nulos 13, (5.53%) - FIT 5 (2.13 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/002/0026/040020026_3190.htm'>Mesa 3190 (Circuito 0026 (002 - Calamuchita))</a> - Nulos 11, (4.44%) - FIT 6 (2.42 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/003/0029/040030029_3331.htm'>Mesa 3331 (Circuito 0029 (003 - Col\u00f3n))</a> - Nulos 16, (6.06%) - FIT 7 (2.65 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/003/0033/040030033_3442.htm'>Mesa 3442 (Circuito 0033 (003 - Col\u00f3n))</a> - Nulos 10, (4.03%) - FIT 6 (2.42 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/004/0044/040040044_3805.htm'>Mesa 3805 (Circuito 0044 (004 - Cruz del Eje))</a> - Nulos 9, (3.70%) - FIT 4 (1.65 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/004/0044/040040044_3813.htm'>Mesa 3813 (Circuito 0044 (004 - Cruz del Eje))</a> - Nulos 9, (3.49%) - FIT 6 (2.33 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/004/0044/040040044_3818.htm'>Mesa 3818 (Circuito 0044 (004 - Cruz del Eje))</a> - Nulos 12, (4.56%) - FIT 6 (2.28 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/004/0056/040040056_3880.htm'>Mesa 3880 (Circuito 0056 (004 - Cruz del Eje))</a> - Nulos 9, (3.56%) - FIT 4 (1.58 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/004/0056/040040056_3890.htm'>Mesa 3890 (Circuito 0056 (004 - Cruz del Eje))</a> - Nulos 13, (5.26%) - FIT 5 (2.02 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/004/0056/040040056_3892.htm'>Mesa 3892 (Circuito 0056 (004 - Cruz del Eje))</a> - Nulos 19, (7.31%) - FIT 5 (1.92 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/005/0061/040050061_3928.htm'>Mesa 3928 (Circuito 0061 (005 - General Roca))</a> - Nulos 9, (3.61%) - FIT 3 (1.20 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/006/0077/040060077_4009.htm'>Mesa 4009 (Circuito 0077 (006 - General San Mart\u00edn))</a> - Nulos 10, (3.45%) - FIT 2 (0.69 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/006/0083/040060083_4032.htm'>Mesa 4032 (Circuito 0083 (006 - General San Mart\u00edn))</a> - Nulos 14, (6.33%) - FIT 5 (2.26 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/006/0089/040060089_4137.htm'>Mesa 4137 (Circuito 0089 (006 - General San Mart\u00edn))</a> - Nulos 11, (4.03%) - FIT 7 (2.56 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/006/0089/040060089_4159.htm'>Mesa 4159 (Circuito 0089 (006 - General San Mart\u00edn))</a> - Nulos 12, (4.48%) - FIT 7 (2.61 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/006/0089/040060089_4160.htm'>Mesa 4160 (Circuito 0089 (006 - General San Mart\u00edn))</a> - Nulos 11, (4.37%) - FIT 2 (0.79 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/006/0089/040060089_4193.htm'>Mesa 4193 (Circuito 0089 (006 - General San Mart\u00edn))</a> - Nulos 9, (3.30%) - FIT 7 (2.56 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/006/0089/040060089_4196.htm'>Mesa 4196 (Circuito 0089 (006 - General San Mart\u00edn))</a> - Nulos 9, (3.33%) - FIT 8 (2.96 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/006/0090/040060090_4263.htm'>Mesa 4263 (Circuito 0090 (006 - General San Mart\u00edn))</a> - Nulos 9, (3.06%) - FIT 7 (2.38 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/006/0090/040060090_4267.htm'>Mesa 4267 (Circuito 0090 (006 - General San Mart\u00edn))</a> - Nulos 9, (3.18%) - FIT 7 (2.47 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/006/0090/040060090_4281.htm'>Mesa 4281 (Circuito 0090 (006 - General San Mart\u00edn))</a> - Nulos 9, (3.24%) - FIT 6 (2.16 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/006/0090/040060090_4288.htm'>Mesa 4288 (Circuito 0090 (006 - General San Mart\u00edn))</a> - Nulos 12, (4.33%) - FIT 8 (2.89 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/007/0099/040070099_4367.htm'>Mesa 4367 (Circuito 0099 (007 - Ischilin))</a> - Nulos 9, (3.35%) - FIT 4 (1.49 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/007/0099/040070099_4368.htm'>Mesa 4368 (Circuito 0099 (007 - Ischilin))</a> - Nulos 9, (3.40%) - FIT 2 (0.75 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/008/0102/040080102_4380.htm'>Mesa 4380 (Circuito 0102 (008 - Ju\u00e1rez Celman))</a> - Nulos 10, (3.55%) - FIT 6 (2.13 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/008/0102/040080102_4391.htm'>Mesa 4391 (Circuito 0102 (008 - Ju\u00e1rez Celman))</a> - Nulos 11, (4.01%) - FIT 4 (1.46 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/008/0106/040080106_4398.htm'>Mesa 4398 (Circuito 0106 (008 - Ju\u00e1rez Celman))</a> - Nulos 9, (3.25%) - FIT 4 (1.44 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/008/0106/040080106_4410.htm'>Mesa 4410 (Circuito 0106 (008 - Ju\u00e1rez Celman))</a> - Nulos 10, (3.82%) - FIT 7 (2.67 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/008/0106/040080106_4418.htm'>Mesa 4418 (Circuito 0106 (008 - Ju\u00e1rez Celman))</a> - Nulos 9, (3.32%) - FIT 7 (2.58 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/008/0109/040080109_4451.htm'>Mesa 4451 (Circuito 0109 (008 - Ju\u00e1rez Celman))</a> - Nulos 14, (5.32%) - FIT 6 (2.28 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/008/0109/040080109_4452.htm'>Mesa 4452 (Circuito 0109 (008 - Ju\u00e1rez Celman))</a> - Nulos 11, (3.97%) - FIT 5 (1.81 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/008/0109/040080109_4454.htm'>Mesa 4454 (Circuito 0109 (008 - Ju\u00e1rez Celman))</a> - Nulos 10, (3.72%) - FIT 5 (1.86 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/008/0109/040080109_4455.htm'>Mesa 4455 (Circuito 0109 (008 - Ju\u00e1rez Celman))</a> - Nulos 9, (3.49%) - FIT 7 (2.71 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/008/0112/040080112_4468.htm'>Mesa 4468 (Circuito 0112 (008 - Ju\u00e1rez Celman))</a> - Nulos 9, (3.10%) - FIT 7 (2.41 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/008/0112/040080112_4471.htm'>Mesa 4471 (Circuito 0112 (008 - Ju\u00e1rez Celman))</a> - Nulos 10, (3.69%) - FIT 3 (1.11 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/008/0112/040080112_4473.htm'>Mesa 4473 (Circuito 0112 (008 - Ju\u00e1rez Celman))</a> - Nulos 10, (3.57%) - FIT 3 (1.07 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/008/0112/040080112_4477.htm'>Mesa 4477 (Circuito 0112 (008 - Ju\u00e1rez Celman))</a> - Nulos 9, (3.16%) - FIT 5 (1.75 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/008/0112/040080112_4497.htm'>Mesa 4497 (Circuito 0112 (008 - Ju\u00e1rez Celman))</a> - Nulos 9, (3.24%) - FIT 5 (1.80 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/009/0120/040090120_4551.htm'>Mesa 4551 (Circuito 0120 (009 - Marcos Ju\u00e1rez))</a> - Nulos 9, (3.52%) - FIT 4 (1.56 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/009/0120/040090120_4554.htm'>Mesa 4554 (Circuito 0120 (009 - Marcos Ju\u00e1rez))</a> - Nulos 9, (3.52%) - FIT 5 (1.95 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/009/0133/040090133_4740.htm'>Mesa 4740 (Circuito 0133 (009 - Marcos Ju\u00e1rez))</a> - Nulos 10, (3.80%) - FIT 1 (0.38 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/009/0133/040090133_4753.htm'>Mesa 4753 (Circuito 0133 (009 - Marcos Ju\u00e1rez))</a> - Nulos 9, (3.25%) - FIT 7 (2.53 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/009/0134/040090134_4759.htm'>Mesa 4759 (Circuito 0134 (009 - Marcos Ju\u00e1rez))</a> - Nulos 9, (3.38%) - FIT 3 (1.13 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/011/0146B/040110146B4821.htm'>Mesa 4821 (Circuito 0146B (011 - Pocho))</a> - Nulos 12, (9.84%) - FIT 2 (1.64 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/012/0152/040120152_4929.htm'>Mesa 4929 (Circuito 0152 (012 - Punilla))</a> - Nulos 12, (4.63%) - FIT 5 (1.93 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0165/040130165_5318.htm'>Mesa 5318 (Circuito 0165 (013 - R\u00edo Cuarto))</a> - Nulos 14, (4.93%) - FIT 5 (1.76 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0165/040130165_5328.htm'>Mesa 5328 (Circuito 0165 (013 - R\u00edo Cuarto))</a> - Nulos 13, (4.69%) - FIT 8 (2.89 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0165/040130165_5339.htm'>Mesa 5339 (Circuito 0165 (013 - R\u00edo Cuarto))</a> - Nulos 13, (4.87%) - FIT 5 (1.87 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0165/040130165_5345.htm'>Mesa 5345 (Circuito 0165 (013 - R\u00edo Cuarto))</a> - Nulos 14, (5.51%) - FIT 7 (2.76 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0165/040130165_5351.htm'>Mesa 5351 (Circuito 0165 (013 - R\u00edo Cuarto))</a> - Nulos 9, (81.82%) - FIT 0 (0.00 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0165/040130165_5352.htm'>Mesa 5352 (Circuito 0165 (013 - R\u00edo Cuarto))</a> - Nulos 10, (3.66%) - FIT 8 (2.93 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0165/040130165_5354.htm'>Mesa 5354 (Circuito 0165 (013 - R\u00edo Cuarto))</a> - Nulos 13, (4.85%) - FIT 5 (1.87 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0165/040130165_5356.htm'>Mesa 5356 (Circuito 0165 (013 - R\u00edo Cuarto))</a> - Nulos 14, (5.51%) - FIT 6 (2.36 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0165/040130165_5357.htm'>Mesa 5357 (Circuito 0165 (013 - R\u00edo Cuarto))</a> - Nulos 10, (3.86%) - FIT 5 (1.93 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0165/040130165_5358.htm'>Mesa 5358 (Circuito 0165 (013 - R\u00edo Cuarto))</a> - Nulos 12, (4.35%) - FIT 8 (2.90 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0165/040130165_5376.htm'>Mesa 5376 (Circuito 0165 (013 - R\u00edo Cuarto))</a> - Nulos 10, (3.70%) - FIT 4 (1.48 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0165/040130165_5384.htm'>Mesa 5384 (Circuito 0165 (013 - R\u00edo Cuarto))</a> - Nulos 10, (3.45%) - FIT 4 (1.38 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0165/040130165_5385.htm'>Mesa 5385 (Circuito 0165 (013 - R\u00edo Cuarto))</a> - Nulos 16, (5.71%) - FIT 4 (1.43 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0166/040130166_5399.htm'>Mesa 5399 (Circuito 0166 (013 - R\u00edo Cuarto))</a> - Nulos 9, (3.47%) - FIT 3 (1.16 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0172/040130172_5432.htm'>Mesa 5432 (Circuito 0172 (013 - R\u00edo Cuarto))</a> - Nulos 11, (4.33%) - FIT 3 (1.18 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0179/040130179_5464.htm'>Mesa 5464 (Circuito 0179 (013 - R\u00edo Cuarto))</a> - Nulos 10, (4.00%) - FIT 2 (0.80 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0179/040130179_5468.htm'>Mesa 5468 (Circuito 0179 (013 - R\u00edo Cuarto))</a> - Nulos 10, (3.98%) - FIT 5 (1.99 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0184A/040130184A5528.htm'>Mesa 5528 (Circuito 0184A (013 - R\u00edo Cuarto))</a> - Nulos 11, (4.45%) - FIT 3 (1.21 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0186/040130186_5537.htm'>Mesa 5537 (Circuito 0186 (013 - R\u00edo Cuarto))</a> - Nulos 10, (4.02%) - FIT 4 (1.61 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0186/040130186_5540.htm'>Mesa 5540 (Circuito 0186 (013 - R\u00edo Cuarto))</a> - Nulos 11, (4.26%) - FIT 2 (0.78 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0186/040130186_5547.htm'>Mesa 5547 (Circuito 0186 (013 - R\u00edo Cuarto))</a> - Nulos 13, (4.94%) - FIT 5 (1.90 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0186/040130186_5551.htm'>Mesa 5551 (Circuito 0186 (013 - R\u00edo Cuarto))</a> - Nulos 11, (4.26%) - FIT 4 (1.55 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0186/040130186_5553.htm'>Mesa 5553 (Circuito 0186 (013 - R\u00edo Cuarto))</a> - Nulos 9, (3.47%) - FIT 1 (0.39 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0186/040130186_5557.htm'>Mesa 5557 (Circuito 0186 (013 - R\u00edo Cuarto))</a> - Nulos 11, (4.03%) - FIT 6 (2.20 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0186/040130186_5558.htm'>Mesa 5558 (Circuito 0186 (013 - R\u00edo Cuarto))</a> - Nulos 10, (4.07%) - FIT 2 (0.81 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0186/040130186_5560.htm'>Mesa 5560 (Circuito 0186 (013 - R\u00edo Cuarto))</a> - Nulos 9, (3.50%) - FIT 2 (0.78 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0186/040130186_5564.htm'>Mesa 5564 (Circuito 0186 (013 - R\u00edo Cuarto))</a> - Nulos 14, (5.11%) - FIT 7 (2.55 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0186/040130186_5577.htm'>Mesa 5577 (Circuito 0186 (013 - R\u00edo Cuarto))</a> - Nulos 9, (3.78%) - FIT 6 (2.52 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0186/040130186_5584.htm'>Mesa 5584 (Circuito 0186 (013 - R\u00edo Cuarto))</a> - Nulos 10, (3.86%) - FIT 5 (1.93 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0186/040130186_5588.htm'>Mesa 5588 (Circuito 0186 (013 - R\u00edo Cuarto))</a> - Nulos 9, (3.54%) - FIT 5 (1.97 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0186/040130186_5590.htm'>Mesa 5590 (Circuito 0186 (013 - R\u00edo Cuarto))</a> - Nulos 11, (3.96%) - FIT 8 (2.88 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0186/040130186_5600.htm'>Mesa 5600 (Circuito 0186 (013 - R\u00edo Cuarto))</a> - Nulos 12, (4.51%) - FIT 5 (1.88 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0188/040130188_5607.htm'>Mesa 5607 (Circuito 0188 (013 - R\u00edo Cuarto))</a> - Nulos 9, (3.60%) - FIT 4 (1.60 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0188/040130188_5614.htm'>Mesa 5614 (Circuito 0188 (013 - R\u00edo Cuarto))</a> - Nulos 12, (4.51%) - FIT 7 (2.63 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0188/040130188_5636.htm'>Mesa 5636 (Circuito 0188 (013 - R\u00edo Cuarto))</a> - Nulos 9, (3.46%) - FIT 7 (2.69 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0188/040130188_5685.htm'>Mesa 5685 (Circuito 0188 (013 - R\u00edo Cuarto))</a> - Nulos 13, (86.67%) - FIT 0 (0.00 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0188/040130188_5688.htm'>Mesa 5688 (Circuito 0188 (013 - R\u00edo Cuarto))</a> - Nulos 11, (4.09%) - FIT 7 (2.60 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0188/040130188_5702.htm'>Mesa 5702 (Circuito 0188 (013 - R\u00edo Cuarto))</a> - Nulos 10, (3.73%) - FIT 7 (2.61 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0188/040130188_5714.htm'>Mesa 5714 (Circuito 0188 (013 - R\u00edo Cuarto))</a> - Nulos 15, (5.70%) - FIT 5 (1.90 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0188/040130188_5732.htm'>Mesa 5732 (Circuito 0188 (013 - R\u00edo Cuarto))</a> - Nulos 10, (3.70%) - FIT 7 (2.59 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0188/040130188_5767.htm'>Mesa 5767 (Circuito 0188 (013 - R\u00edo Cuarto))</a> - Nulos 9, (3.40%) - FIT 6 (2.26 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0188/040130188_5794.htm'>Mesa 5794 (Circuito 0188 (013 - R\u00edo Cuarto))</a> - Nulos 13, (4.98%) - FIT 7 (2.68 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0189/040130189_5825.htm'>Mesa 5825 (Circuito 0189 (013 - R\u00edo Cuarto))</a> - Nulos 9, (3.38%) - FIT 3 (1.13 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0189/040130189_5828.htm'>Mesa 5828 (Circuito 0189 (013 - R\u00edo Cuarto))</a> - Nulos 10, (3.66%) - FIT 4 (1.47 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0189/040130189_5839.htm'>Mesa 5839 (Circuito 0189 (013 - R\u00edo Cuarto))</a> - Nulos 10, (3.80%) - FIT 1 (0.38 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0189/040130189_5841.htm'>Mesa 5841 (Circuito 0189 (013 - R\u00edo Cuarto))</a> - Nulos 9, (3.50%) - FIT 5 (1.95 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0191/040130191_5847.htm'>Mesa 5847 (Circuito 0191 (013 - R\u00edo Cuarto))</a> - Nulos 9, (3.35%) - FIT 3 (1.12 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/014/0218/040140218_5958.htm'>Mesa 5958 (Circuito 0218 (014 - R\u00edo Primero))</a> - Nulos 13, (4.76%) - FIT 2 (0.73 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/015/0229/040150229_6016.htm'>Mesa 6016 (Circuito 0229 (015 - R\u00edo Seco))</a> - Nulos 9, (3.41%) - FIT 7 (2.65 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/016/0235/040160235_6051.htm'>Mesa 6051 (Circuito 0235 (016 - R\u00edo Segundo))</a> - Nulos 10, (3.83%) - FIT 6 (2.30 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/016/0237/040160237_6078.htm'>Mesa 6078 (Circuito 0237 (016 - R\u00edo Segundo))</a> - Nulos 13, (4.66%) - FIT 3 (1.08 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/016/0237/040160237_6082.htm'>Mesa 6082 (Circuito 0237 (016 - R\u00edo Segundo))</a> - Nulos 9, (3.30%) - FIT 8 (2.93 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/016/0237/040160237_6087.htm'>Mesa 6087 (Circuito 0237 (016 - R\u00edo Segundo))</a> - Nulos 9, (3.15%) - FIT 4 (1.40 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/016/0237/040160237_6088.htm'>Mesa 6088 (Circuito 0237 (016 - R\u00edo Segundo))</a> - Nulos 10, (3.66%) - FIT 6 (2.20 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/016/0237/040160237_6091.htm'>Mesa 6091 (Circuito 0237 (016 - R\u00edo Segundo))</a> - Nulos 12, (4.41%) - FIT 7 (2.57 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/016/0239/040160239_6123.htm'>Mesa 6123 (Circuito 0239 (016 - R\u00edo Segundo))</a> - Nulos 9, (3.20%) - FIT 8 (2.85 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/016/0243/040160243_6200.htm'>Mesa 6200 (Circuito 0243 (016 - R\u00edo Segundo))</a> - Nulos 9, (3.24%) - FIT 8 (2.88 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/016/0243/040160243_6216.htm'>Mesa 6216 (Circuito 0243 (016 - R\u00edo Segundo))</a> - Nulos 11, (3.87%) - FIT 8 (2.82 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/016/0243/040160243_6218.htm'>Mesa 6218 (Circuito 0243 (016 - R\u00edo Segundo))</a> - Nulos 9, (3.28%) - FIT 7 (2.55 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/016/0245/040160245_6270.htm'>Mesa 6270 (Circuito 0245 (016 - R\u00edo Segundo))</a> - Nulos 12, (4.40%) - FIT 7 (2.56 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/016/0245/040160245_6275.htm'>Mesa 6275 (Circuito 0245 (016 - R\u00edo Segundo))</a> - Nulos 12, (4.49%) - FIT 5 (1.87 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/016/0245/040160245_6279.htm'>Mesa 6279 (Circuito 0245 (016 - R\u00edo Segundo))</a> - Nulos 9, (3.25%) - FIT 8 (2.89 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/017/0252/040170252_6336.htm'>Mesa 6336 (Circuito 0252 (017 - Presidente Roque S\u00e1enz Pe\u00f1a))</a> - Nulos 11, (4.09%) - FIT 0 (0.00 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/017/0257/040170257_6362.htm'>Mesa 6362 (Circuito 0257 (017 - Presidente Roque S\u00e1enz Pe\u00f1a))</a> - Nulos 9, (3.37%) - FIT 6 (2.25 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/019/0268/040190268_6472.htm'>Mesa 6472 (Circuito 0268 (019 - San Javier))</a> - Nulos 9, (3.17%) - FIT 5 (1.76 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/020/0279/040200279_6611.htm'>Mesa 6611 (Circuito 0279 (020 - San Justo))</a> - Nulos 11, (3.89%) - FIT 6 (2.12 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/020/0279/040200279_6612.htm'>Mesa 6612 (Circuito 0279 (020 - San Justo))</a> - Nulos 10, (3.53%) - FIT 6 (2.12 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/020/0279/040200279_6620.htm'>Mesa 6620 (Circuito 0279 (020 - San Justo))</a> - Nulos 10, (3.40%) - FIT 6 (2.04 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/020/0279/040200279_6646.htm'>Mesa 6646 (Circuito 0279 (020 - San Justo))</a> - Nulos 14, (5.28%) - FIT 4 (1.51 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/020/0279/040200279_6650.htm'>Mesa 6650 (Circuito 0279 (020 - San Justo))</a> - Nulos 9, (3.31%) - FIT 7 (2.57 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/020/0291/040200291_6749.htm'>Mesa 6749 (Circuito 0291 (020 - San Justo))</a> - Nulos 9, (3.31%) - FIT 7 (2.57 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/020/0298/040200298_6814.htm'>Mesa 6814 (Circuito 0298 (020 - San Justo))</a> - Nulos 9, (3.42%) - FIT 7 (2.66 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/020/0298/040200298_6831.htm'>Mesa 6831 (Circuito 0298 (020 - San Justo))</a> - Nulos 9, (3.36%) - FIT 5 (1.87 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/020/0304/040200304_6883.htm'>Mesa 6883 (Circuito 0304 (020 - San Justo))</a> - Nulos 9, (3.37%) - FIT 7 (2.62 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/020/0304/040200304_6887.htm'>Mesa 6887 (Circuito 0304 (020 - San Justo))</a> - Nulos 9, (3.50%) - FIT 7 (2.72 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/020/0310/040200310_6938.htm'>Mesa 6938 (Circuito 0310 (020 - San Justo))</a> - Nulos 10, (3.88%) - FIT 7 (2.71 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/020/0310A/040200310A7030.htm'>Mesa 7030 (Circuito 0310A (020 - San Justo))</a> - Nulos 10, (4.03%) - FIT 7 (2.82 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/023/0336/040230336_7357.htm'>Mesa 7357 (Circuito 0336 (023 - Tercero Arriba))</a> - Nulos 9, (3.31%) - FIT 6 (2.21 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/023/0340/040230340_7404.htm'>Mesa 7404 (Circuito 0340 (023 - Tercero Arriba))</a> - Nulos 9, (3.40%) - FIT 5 (1.89 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/023/0340/040230340_7427.htm'>Mesa 7427 (Circuito 0340 (023 - Tercero Arriba))</a> - Nulos 9, (3.30%) - FIT 7 (2.56 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/023/0341/040230341_7431.htm'>Mesa 7431 (Circuito 0341 (023 - Tercero Arriba))</a> - Nulos 9, (3.27%) - FIT 7 (2.55 %)"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/023/0341/040230341_7439.htm'>Mesa 7439 (Circuito 0341 (023 - Tercero Arriba))</a> - Nulos 12, (4.48%) - FIT 6 (2.24 %)"
],
"metadata": {},
"output_type": "display_data"
}
],
"prompt_number": 10
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"contador"
],
"language": "python",
"metadata": {},
"outputs": [
{
"metadata": {},
"output_type": "pyout",
"prompt_number": 11,
"text": [
"136"
]
}
],
"prompt_number": 11
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Mesas donde la UCR tiene el 50% m\u00e1s que el promedio del circuito"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"from django.db.models import Avg\n",
"\n",
"for circuito in Circuito.objects.all():\n",
" promedio_ucr_circuito = VotoMesa.objects.filter(mesa__circuito=circuito, opcion__nombre='UNION CIVICA RADICAL').aggregate(Avg('votos'))['votos__avg']\n",
" if not promedio_ucr_circuito:\n",
" continue\n",
" for mesa in Mesa.objects.filter(circuito=circuito, \n",
" votomesa__votos__gte=promedio_ucr_circuito * 1.5, \n",
" votomesa__opcion__nombre='UNION CIVICA RADICAL'):\n",
" votos_ucr = mesa.votomesa_set.get(opcion__nombre='UNION CIVICA RADICAL').votos\n",
" porc_ucr = (votos_ucr / float(mesa.computados)) * 100\n",
" display_html(HTML(\"<a href='%s'>%s</a> - Total computados: %d, UCR: %d (%.2f%%) Promedio UCR/circ: %.2f votos\" % (mesa.url, mesa, \n",
" mesa.computados, \n",
" votos_ucr, porc_ucr, \n",
" promedio_ucr_circuito)))"
],
"language": "python",
"metadata": {},
"outputs": [
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0004F/040010004F0301.htm'>Mesa 0301 (Circuito 0004F (001 - Capital))</a> - Total computados: 232, UCR: 28 (12.07%) Promedio UCR/circ: 17.33 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0005/040010005_0325.htm'>Mesa 0325 (Circuito 0005 (001 - Capital))</a> - Total computados: 255, UCR: 69 (27.06%) Promedio UCR/circ: 45.77 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0005A/040010005A0351.htm'>Mesa 0351 (Circuito 0005A (001 - Capital))</a> - Total computados: 271, UCR: 44 (16.24%) Promedio UCR/circ: 28.60 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0007A/040010007A0654.htm'>Mesa 0654 (Circuito 0007A (001 - Capital))</a> - Total computados: 275, UCR: 59 (21.45%) Promedio UCR/circ: 38.26 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0007B/040010007B0663.htm'>Mesa 0663 (Circuito 0007B (001 - Capital))</a> - Total computados: 260, UCR: 86 (33.08%) Promedio UCR/circ: 56.03 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0007E/040010007E0753.htm'>Mesa 0753 (Circuito 0007E (001 - Capital))</a> - Total computados: 275, UCR: 86 (31.27%) Promedio UCR/circ: 54.28 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0007F/040010007F0810.htm'>Mesa 0810 (Circuito 0007F (001 - Capital))</a> - Total computados: 265, UCR: 78 (29.43%) Promedio UCR/circ: 51.72 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0010E/040010010E1285.htm'>Mesa 1285 (Circuito 0010E (001 - Capital))</a> - Total computados: 270, UCR: 57 (21.11%) Promedio UCR/circ: 35.97 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0010J/040010010J1492.htm'>Mesa 1492 (Circuito 0010J (001 - Capital))</a> - Total computados: 271, UCR: 63 (23.25%) Promedio UCR/circ: 40.11 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0010K/040010010K1509.htm'>Mesa 1509 (Circuito 0010K (001 - Capital))</a> - Total computados: 295, UCR: 83 (28.14%) Promedio UCR/circ: 49.33 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0010M/040010010M1594.htm'>Mesa 1594 (Circuito 0010M (001 - Capital))</a> - Total computados: 268, UCR: 18 (6.72%) Promedio UCR/circ: 11.33 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0011E/040010011E1810.htm'>Mesa 1810 (Circuito 0011E (001 - Capital))</a> - Total computados: 282, UCR: 70 (24.82%) Promedio UCR/circ: 45.27 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0011I/040010011I1934.htm'>Mesa 1934 (Circuito 0011I (001 - Capital))</a> - Total computados: 261, UCR: 54 (20.69%) Promedio UCR/circ: 33.98 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0011K/040010011K2007.htm'>Mesa 2007 (Circuito 0011K (001 - Capital))</a> - Total computados: 253, UCR: 65 (25.69%) Promedio UCR/circ: 38.41 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0012E/040010012E2230.htm'>Mesa 2230 (Circuito 0012E (001 - Capital))</a> - Total computados: 251, UCR: 63 (25.10%) Promedio UCR/circ: 38.15 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0012E/040010012E2235.htm'>Mesa 2235 (Circuito 0012E (001 - Capital))</a> - Total computados: 264, UCR: 60 (22.73%) Promedio UCR/circ: 38.15 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0013E/040010013E2487.htm'>Mesa 2487 (Circuito 0013E (001 - Capital))</a> - Total computados: 246, UCR: 52 (21.14%) Promedio UCR/circ: 34.25 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0013J/040010013J2672.htm'>Mesa 2672 (Circuito 0013J (001 - Capital))</a> - Total computados: 260, UCR: 66 (25.38%) Promedio UCR/circ: 43.87 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0013J/040010013J2683.htm'>Mesa 2683 (Circuito 0013J (001 - Capital))</a> - Total computados: 251, UCR: 66 (26.29%) Promedio UCR/circ: 43.87 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0013M/040010013M2722.htm'>Mesa 2722 (Circuito 0013M (001 - Capital))</a> - Total computados: 221, UCR: 55 (24.89%) Promedio UCR/circ: 27.50 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/001/0014P/040010014P3079.htm'>Mesa 3079 (Circuito 0014P (001 - Capital))</a> - Total computados: 265, UCR: 68 (25.66%) Promedio UCR/circ: 42.55 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/003/0033/040030033_3388.htm'>Mesa 3388 (Circuito 0033 (003 - Col\u00f3n))</a> - Total computados: 247, UCR: 82 (33.20%) Promedio UCR/circ: 54.31 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/003/0033/040030033_3397.htm'>Mesa 3397 (Circuito 0033 (003 - Col\u00f3n))</a> - Total computados: 271, UCR: 88 (32.47%) Promedio UCR/circ: 54.31 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/003/0033/040030033_3425.htm'>Mesa 3425 (Circuito 0033 (003 - Col\u00f3n))</a> - Total computados: 268, UCR: 88 (32.84%) Promedio UCR/circ: 54.31 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/003/0033/040030033_3447.htm'>Mesa 3447 (Circuito 0033 (003 - Col\u00f3n))</a> - Total computados: 273, UCR: 84 (30.77%) Promedio UCR/circ: 54.31 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/003/0033/040030033_3460.htm'>Mesa 3460 (Circuito 0033 (003 - Col\u00f3n))</a> - Total computados: 277, UCR: 84 (30.32%) Promedio UCR/circ: 54.31 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/003/0035A/040030035A3517.htm'>Mesa 3517 (Circuito 0035A (003 - Col\u00f3n))</a> - Total computados: 212, UCR: 41 (19.34%) Promedio UCR/circ: 24.67 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/003/0037/040030037_3532.htm'>Mesa 3532 (Circuito 0037 (003 - Col\u00f3n))</a> - Total computados: 268, UCR: 72 (26.87%) Promedio UCR/circ: 43.02 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/003/0038/040030038_3571.htm'>Mesa 3571 (Circuito 0038 (003 - Col\u00f3n))</a> - Total computados: 283, UCR: 54 (19.08%) Promedio UCR/circ: 33.14 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/003/0038/040030038_3583.htm'>Mesa 3583 (Circuito 0038 (003 - Col\u00f3n))</a> - Total computados: 274, UCR: 51 (18.61%) Promedio UCR/circ: 33.14 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/003/0040/040030040_3601.htm'>Mesa 3601 (Circuito 0040 (003 - Col\u00f3n))</a> - Total computados: 258, UCR: 68 (26.36%) Promedio UCR/circ: 43.93 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/004/0044/040040044_3776.htm'>Mesa 3776 (Circuito 0044 (004 - Cruz del Eje))</a> - Total computados: 237, UCR: 95 (40.08%) Promedio UCR/circ: 58.41 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/004/0044/040040044_3787.htm'>Mesa 3787 (Circuito 0044 (004 - Cruz del Eje))</a> - Total computados: 249, UCR: 88 (35.34%) Promedio UCR/circ: 58.41 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/004/0044A/040040044A3834.htm'>Mesa 3834 (Circuito 0044A (004 - Cruz del Eje))</a> - Total computados: 191, UCR: 69 (36.13%) Promedio UCR/circ: 34.50 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/004/0045/040040045_3836.htm'>Mesa 3836 (Circuito 0045 (004 - Cruz del Eje))</a> - Total computados: 235, UCR: 120 (51.06%) Promedio UCR/circ: 71.00 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/004/0046/040040046_3839.htm'>Mesa 3839 (Circuito 0046 (004 - Cruz del Eje))</a> - Total computados: 143, UCR: 32 (22.38%) Promedio UCR/circ: 18.33 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/004/0051/040040051_3853.htm'>Mesa 3853 (Circuito 0051 (004 - Cruz del Eje))</a> - Total computados: 235, UCR: 91 (38.72%) Promedio UCR/circ: 55.33 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/006/0089/040060089_4077.htm'>Mesa 4077 (Circuito 0089 (006 - General San Mart\u00edn))</a> - Total computados: 277, UCR: 78 (28.16%) Promedio UCR/circ: 50.86 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/006/0089/040060089_4080.htm'>Mesa 4080 (Circuito 0089 (006 - General San Mart\u00edn))</a> - Total computados: 273, UCR: 80 (29.30%) Promedio UCR/circ: 50.86 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/006/0089/040060089_4127.htm'>Mesa 4127 (Circuito 0089 (006 - General San Mart\u00edn))</a> - Total computados: 276, UCR: 80 (28.99%) Promedio UCR/circ: 50.86 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/006/0089/040060089_4199.htm'>Mesa 4199 (Circuito 0089 (006 - General San Mart\u00edn))</a> - Total computados: 275, UCR: 84 (30.55%) Promedio UCR/circ: 50.86 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/006/0089/040060089_4220.htm'>Mesa 4220 (Circuito 0089 (006 - General San Mart\u00edn))</a> - Total computados: 278, UCR: 77 (27.70%) Promedio UCR/circ: 50.86 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/006/0089/040060089_4234.htm'>Mesa 4234 (Circuito 0089 (006 - General San Mart\u00edn))</a> - Total computados: 271, UCR: 78 (28.78%) Promedio UCR/circ: 50.86 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/006/0090/040060090_4270.htm'>Mesa 4270 (Circuito 0090 (006 - General San Mart\u00edn))</a> - Total computados: 278, UCR: 63 (22.66%) Promedio UCR/circ: 39.78 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/007/0100/040070100_4376.htm'>Mesa 4376 (Circuito 0100 (007 - Ischilin))</a> - Total computados: 242, UCR: 143 (59.09%) Promedio UCR/circ: 95.00 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/008/0105/040080105_4395.htm'>Mesa 4395 (Circuito 0105 (008 - Ju\u00e1rez Celman))</a> - Total computados: 251, UCR: 70 (27.89%) Promedio UCR/circ: 23.33 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/008/0106/040080106_4401.htm'>Mesa 4401 (Circuito 0106 (008 - Ju\u00e1rez Celman))</a> - Total computados: 277, UCR: 115 (41.52%) Promedio UCR/circ: 75.17 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/008/0109/040080109_4440.htm'>Mesa 4440 (Circuito 0109 (008 - Ju\u00e1rez Celman))</a> - Total computados: 278, UCR: 91 (32.73%) Promedio UCR/circ: 54.81 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/008/0112/040080112_4477.htm'>Mesa 4477 (Circuito 0112 (008 - Ju\u00e1rez Celman))</a> - Total computados: 285, UCR: 92 (32.28%) Promedio UCR/circ: 58.61 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/008/0114/040080114_4501.htm'>Mesa 4501 (Circuito 0114 (008 - Ju\u00e1rez Celman))</a> - Total computados: 256, UCR: 51 (19.92%) Promedio UCR/circ: 25.50 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/009/0131/040090131_4675.htm'>Mesa 4675 (Circuito 0131 (009 - Marcos Ju\u00e1rez))</a> - Total computados: 276, UCR: 62 (22.46%) Promedio UCR/circ: 37.15 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/009/0133/040090133_4698.htm'>Mesa 4698 (Circuito 0133 (009 - Marcos Ju\u00e1rez))</a> - Total computados: 275, UCR: 59 (21.45%) Promedio UCR/circ: 36.20 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/009/0133/040090133_4718.htm'>Mesa 4718 (Circuito 0133 (009 - Marcos Ju\u00e1rez))</a> - Total computados: 258, UCR: 61 (23.64%) Promedio UCR/circ: 36.20 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/009/0133/040090133_4722.htm'>Mesa 4722 (Circuito 0133 (009 - Marcos Ju\u00e1rez))</a> - Total computados: 266, UCR: 55 (20.68%) Promedio UCR/circ: 36.20 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/009/0133/040090133_4737.htm'>Mesa 4737 (Circuito 0133 (009 - Marcos Ju\u00e1rez))</a> - Total computados: 269, UCR: 61 (22.68%) Promedio UCR/circ: 36.20 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/012/0150/040120150_4880.htm'>Mesa 4880 (Circuito 0150 (012 - Punilla))</a> - Total computados: 260, UCR: 78 (30.00%) Promedio UCR/circ: 48.77 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/012/0156/040120156_5103.htm'>Mesa 5103 (Circuito 0156 (012 - Punilla))</a> - Total computados: 249, UCR: 83 (33.33%) Promedio UCR/circ: 53.93 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/012/0157/040120157_5200.htm'>Mesa 5200 (Circuito 0157 (012 - Punilla))</a> - Total computados: 228, UCR: 75 (32.89%) Promedio UCR/circ: 48.36 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0162/040130162_5287.htm'>Mesa 5287 (Circuito 0162 (013 - R\u00edo Cuarto))</a> - Total computados: 261, UCR: 120 (45.98%) Promedio UCR/circ: 78.56 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0165/040130165_5326.htm'>Mesa 5326 (Circuito 0165 (013 - R\u00edo Cuarto))</a> - Total computados: 272, UCR: 59 (21.69%) Promedio UCR/circ: 37.01 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0165/040130165_5333.htm'>Mesa 5333 (Circuito 0165 (013 - R\u00edo Cuarto))</a> - Total computados: 284, UCR: 62 (21.83%) Promedio UCR/circ: 37.01 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0165/040130165_5356.htm'>Mesa 5356 (Circuito 0165 (013 - R\u00edo Cuarto))</a> - Total computados: 254, UCR: 59 (23.23%) Promedio UCR/circ: 37.01 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0172/040130172_5434.htm'>Mesa 5434 (Circuito 0172 (013 - R\u00edo Cuarto))</a> - Total computados: 262, UCR: 67 (25.57%) Promedio UCR/circ: 42.83 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0179/040130179_5459.htm'>Mesa 5459 (Circuito 0179 (013 - R\u00edo Cuarto))</a> - Total computados: 265, UCR: 41 (15.47%) Promedio UCR/circ: 27.12 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0184/040130184_5507.htm'>Mesa 5507 (Circuito 0184 (013 - R\u00edo Cuarto))</a> - Total computados: 274, UCR: 100 (36.50%) Promedio UCR/circ: 55.17 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0186/040130186_5539.htm'>Mesa 5539 (Circuito 0186 (013 - R\u00edo Cuarto))</a> - Total computados: 252, UCR: 46 (18.25%) Promedio UCR/circ: 27.24 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0186/040130186_5552.htm'>Mesa 5552 (Circuito 0186 (013 - R\u00edo Cuarto))</a> - Total computados: 276, UCR: 43 (15.58%) Promedio UCR/circ: 27.24 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0186/040130186_5556.htm'>Mesa 5556 (Circuito 0186 (013 - R\u00edo Cuarto))</a> - Total computados: 263, UCR: 41 (15.59%) Promedio UCR/circ: 27.24 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0186/040130186_5570.htm'>Mesa 5570 (Circuito 0186 (013 - R\u00edo Cuarto))</a> - Total computados: 254, UCR: 41 (16.14%) Promedio UCR/circ: 27.24 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0188/040130188_5628.htm'>Mesa 5628 (Circuito 0188 (013 - R\u00edo Cuarto))</a> - Total computados: 265, UCR: 95 (35.85%) Promedio UCR/circ: 49.90 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0188/040130188_5654.htm'>Mesa 5654 (Circuito 0188 (013 - R\u00edo Cuarto))</a> - Total computados: 272, UCR: 78 (28.68%) Promedio UCR/circ: 49.90 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0188/040130188_5704.htm'>Mesa 5704 (Circuito 0188 (013 - R\u00edo Cuarto))</a> - Total computados: 275, UCR: 88 (32.00%) Promedio UCR/circ: 49.90 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0188/040130188_5768.htm'>Mesa 5768 (Circuito 0188 (013 - R\u00edo Cuarto))</a> - Total computados: 265, UCR: 85 (32.08%) Promedio UCR/circ: 49.90 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0188/040130188_5777.htm'>Mesa 5777 (Circuito 0188 (013 - R\u00edo Cuarto))</a> - Total computados: 265, UCR: 85 (32.08%) Promedio UCR/circ: 49.90 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0188/040130188_5779.htm'>Mesa 5779 (Circuito 0188 (013 - R\u00edo Cuarto))</a> - Total computados: 264, UCR: 75 (28.41%) Promedio UCR/circ: 49.90 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/013/0188/040130188_5810.htm'>Mesa 5810 (Circuito 0188 (013 - R\u00edo Cuarto))</a> - Total computados: 266, UCR: 78 (29.32%) Promedio UCR/circ: 49.90 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/014/0211/040140211_5908.htm'>Mesa 5908 (Circuito 0211 (014 - R\u00edo Primero))</a> - Total computados: 303, UCR: 122 (40.26%) Promedio UCR/circ: 76.48 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/015/0223/040150223_5987.htm'>Mesa 5987 (Circuito 0223 (015 - R\u00edo Seco))</a> - Total computados: 147, UCR: 55 (37.41%) Promedio UCR/circ: 31.67 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/015/0225/040150225_5991.htm'>Mesa 5991 (Circuito 0225 (015 - R\u00edo Seco))</a> - Total computados: 196, UCR: 42 (21.43%) Promedio UCR/circ: 22.33 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/015/0229/040150229_6014.htm'>Mesa 6014 (Circuito 0229 (015 - R\u00edo Seco))</a> - Total computados: 266, UCR: 92 (34.59%) Promedio UCR/circ: 58.77 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/016/0238/040160238_6097.htm'>Mesa 6097 (Circuito 0238 (016 - R\u00edo Segundo))</a> - Total computados: 273, UCR: 92 (33.70%) Promedio UCR/circ: 61.00 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/019/0268/040190268_6479.htm'>Mesa 6479 (Circuito 0268 (019 - San Javier))</a> - Total computados: 284, UCR: 70 (24.65%) Promedio UCR/circ: 42.75 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/019/0273/040190273_6572.htm'>Mesa 6572 (Circuito 0273 (019 - San Javier))</a> - Total computados: 206, UCR: 33 (16.02%) Promedio UCR/circ: 21.75 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/019/0273/040190273_6575.htm'>Mesa 6575 (Circuito 0273 (019 - San Javier))</a> - Total computados: 206, UCR: 35 (16.99%) Promedio UCR/circ: 21.75 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/020/0298/040200298_6805.htm'>Mesa 6805 (Circuito 0298 (020 - San Justo))</a> - Total computados: 272, UCR: 96 (35.29%) Promedio UCR/circ: 61.32 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/020/0305/040200305_6906.htm'>Mesa 6906 (Circuito 0305 (020 - San Justo))</a> - Total computados: 250, UCR: 121 (48.40%) Promedio UCR/circ: 74.86 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/020/0306/040200306_6918.htm'>Mesa 6918 (Circuito 0306 (020 - San Justo))</a> - Total computados: 219, UCR: 78 (35.62%) Promedio UCR/circ: 39.00 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/020/0310/040200310_6958.htm'>Mesa 6958 (Circuito 0310 (020 - San Justo))</a> - Total computados: 257, UCR: 64 (24.90%) Promedio UCR/circ: 38.05 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/020/0310A/040200310A7089.htm'>Mesa 7089 (Circuito 0310A (020 - San Justo))</a> - Total computados: 279, UCR: 61 (21.86%) Promedio UCR/circ: 39.61 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/021/0316/040210316_7205.htm'>Mesa 7205 (Circuito 0316 (021 - Santa Mar\u00eda))</a> - Total computados: 274, UCR: 82 (29.93%) Promedio UCR/circ: 53.90 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/021/0316/040210316_7219.htm'>Mesa 7219 (Circuito 0316 (021 - Santa Mar\u00eda))</a> - Total computados: 202, UCR: 92 (45.54%) Promedio UCR/circ: 53.90 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/021/0316H/040210316H7242.htm'>Mesa 7242 (Circuito 0316H (021 - Santa Mar\u00eda))</a> - Total computados: 237, UCR: 44 (18.57%) Promedio UCR/circ: 27.67 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/021/0326B/040210326B7315.htm'>Mesa 7315 (Circuito 0326B (021 - Santa Mar\u00eda))</a> - Total computados: 222, UCR: 56 (25.23%) Promedio UCR/circ: 35.00 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/021/0331/040210331_7341.htm'>Mesa 7341 (Circuito 0331 (021 - Santa Mar\u00eda))</a> - Total computados: 273, UCR: 76 (27.84%) Promedio UCR/circ: 49.73 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/023/0336/040230336_7372.htm'>Mesa 7372 (Circuito 0336 (023 - Tercero Arriba))</a> - Total computados: 289, UCR: 77 (26.64%) Promedio UCR/circ: 49.97 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/023/0342/040230342_7454.htm'>Mesa 7454 (Circuito 0342 (023 - Tercero Arriba))</a> - Total computados: 276, UCR: 104 (37.68%) Promedio UCR/circ: 69.08 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/023/0348/040230348_7509.htm'>Mesa 7509 (Circuito 0348 (023 - Tercero Arriba))</a> - Total computados: 277, UCR: 88 (31.77%) Promedio UCR/circ: 56.05 votos"
],
"metadata": {},
"output_type": "display_data"
},
{
"html": [
"<a href='http://www.resultados.gob.ar/telegramas/04/023/0348/040230348_7585.htm'>Mesa 7585 (Circuito 0348 (023 - Tercero Arriba))</a> - Total computados: 283, UCR: 85 (30.04%) Promedio UCR/circ: 56.05 votos"
],
"metadata": {},
"output_type": "display_data"
}
],
"prompt_number": 16
},
{
"cell_type": "code",
"collapsed": false,
"input": [],
"language": "python",
"metadata": {},
"outputs": []
}
],
"metadata": {}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment