Skip to content

Instantly share code, notes, and snippets.

@michalskop
Last active August 29, 2015 14:02
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save michalskop/6cdd572b5f618a11e966 to your computer and use it in GitHub Desktop.
Save michalskop/6cdd572b5f618a11e966 to your computer and use it in GitHub Desktop.
Scatterplot with Contour Lines (D3 + R)
setwd('~/uhk/dev/ar_ondrej_plachy/institution/')
data = read.table('data.tsv',sep="\t",header=TRUE)
data$time = data$year - 1983
data$random1 = rnorm(336, mean=0, sd=0.01)
data$random2 = rnorm(336, mean=0, sd=0.01)
attach(data)
fbalm2 =
ifelse(balance_of_parties_mandates<= 0.25, '0.0-0.25',
ifelse(balance_of_parties_mandates <= 0.5, '0.25-0.5',
ifelse(balance_of_parties_mandates <= 0.75, '0.5-0.75',
'0.75-1.0')))
model0a = glm(event~time + provincia + institution, family="binomial")
model1a2 = glm(event~time + provincia + fbalm2 + institution, family="binomial")
summary(model1a2)
#likelihood ratio test
library(epicalc)
lrtest (model0a, model1a2)
model1a = glm(event~time + provincia + balance_of_parties + institution, family="binomial")
model1b = glm(event~time + provincia + effective_number_of_parties + institution, family="binomial")
model1c = glm(event~time + provincia + raes_index + institution, family="binomial")
model2a = glm(event~time + provincia + balance_of_parties + effective_number_of_parties + institution, family="binomial")
model2b = glm(event~time + provincia + balance_of_parties + raes_index + institution, family="binomial")
model3a = glm(event~time + provincia + balance_of_parties + effective_number_of_parties + institution + balance_of_parties*effective_number_of_parties, family="binomial")
model3b = glm(event~time + provincia + balance_of_parties + raes_index + institution + balance_of_parties*effective_number_of_parties, family="binomial")
library("splines", lib.loc="/usr/lib/R/library")
model4a = glm(event~time + provincia + bs(balance_of_parties) + bs(effective_number_of_parties) + institution + bs(balance_of_parties)*bs(effective_number_of_parties), family="binomial")
#factors by quantiles
install.packages("gtools")
library("gtools", lib.loc="/home/michal/R/x86_64-pc-linux-gnu-library/3.1")
fbalm = quantcut(balance_of_parties_mandates, q=c(0,0.25,0.5,0.75,1))
fbalm2 =
ifelse(balance_of_parties_mandates<= 0.2, '0.0-0.2',
ifelse(balance_of_parties_mandates <= 0.4, '0.2-0.4',
ifelse(balance_of_parties_mandates <= 0.6, '0.4-0.6',
ifelse(balance_of_parties_mandates <= 0.8, '0.6-0.8',
'0.8-1.0'))))
fbalm2 =
ifelse(balance_of_parties_mandates<= 0.25, '0.0-0.25',
ifelse(balance_of_parties_mandates <= 0.5, '0.25-0.5',
ifelse(balance_of_parties_mandates <= 0.75, '0.5-0.75',
'0.75-1.0')))
model1a = glm(event~time + provincia + fbalm + institution, family="binomial")
model1a2 = glm(event~time + provincia + fbalm2 + institution, family="binomial")
model0a = glm(event~time + provincia + institution, family="binomial")
# http://www.cookbook-r.com/Graphs/Scatterplots_%28ggplot2%29/
library("ggplot2", lib.loc="/home/michal/R/x86_64-pc-linux-gnu-library/3.1")
ggplot(data,aes(x=balance_of_parties+random1,y=effective_number_of_parties+random2,color=as.factor(event))) + geom_point(shape=1)
ggplot(data,aes(x=balance_of_parties+random1,y=effective_number_of_parties+random2, color=as.factor(event), size=as.factor(event))) + geom_point(shape=1)
# http://stackoverflow.com/questions/11875941/3d-equivalent-of-the-curve-function-in-r
library(emdbook)
curve3d(-2.4966 -11.69859*x - 2.54043*y + 5.44407*x*y,from=c(0,0), to=c(1,5),sys3d=c("contour"))
curve3d(exp(-2.4966 -11.69859*x - 2.54043*y + 5.44407*x*y),from=c(0,0), to=c(1,5),sys3d=c("contour"))
#library("splines", lib.loc="/usr/lib/R/library")
termplot(model3b)
dev.off()
# contour lines:
zmodel3b = function(x,y) { #balance_of_parties, effective_number_of_parties
return (-2.4966 -11.69859*x - 2.54043*y + 5.44407*x*y)
}
x = seq(0.15, 1.025, by = 0.05)
y = seq(0.5, 4.5, by = 0.2)
z = array(0,c(length(x),length(y)))
i = 1
j = 1
for (iks in x) {
for (yps in y) {
z[i,j] = zmodel3b(iks,yps)
j = j + 1
}
i = i + 1
j = 1
}
a = contourLines(x,y,z)
xy = paste(unlist(lapply(a, function(z) {
xs = paste(round(z$x, 3), collapse = ",")
ys = paste(round(z$y, 3), collapse = ",")
sprintf("{\n \"x\": [%s],\n \"y\": [%s]\n}", xs, ys)
})), collapse = ", \n")
cat("<script>", sprintf("var data = [%s]", xy), "</script>", sep = "\n")
# minus controled
data$event_minus_controled = exp(resid(model3b,type="resp") + (-11.69859*balance_of_parties - 2.54043*effective_number_of_parties + 5.44407*balance_of_parties*effective_number_of_parties))
data$fitted = model3b$fitted
data$fitted_minus_controled = exp(-11.69859*balance_of_parties - 2.54043*effective_number_of_parties + 5.44407*balance_of_parties*effective_number_of_parties)
write.csv(data,file="data.csv")
#likelihood ratio test
library(epicalc)
lrtest (model0a, model1a)
<!DOCTYPE html>
<html>
<head>
<title>Institutions Argentina</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="initial-scale=1.0, user-scalable=no"/>
<!--<script src="d3.v3.js"></script>-->
<script src="http://d3js.org/d3.v3.min.js"></script>
<style type="text/css">
text {
font: 36px sans-serif;
}
.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.contour-line {
fill: none;
stroke: lightblue;
stroke-width: 1px;
}
.event {
fill: none;
stroke: green;
stroke-width: 2px
}
.noevent {
fill: red;
stroke: red;
}
</style>
</head>
<body>
<div id="chart"></div>
<script>
var margin = {top: 40, right: 20, bottom: 50, left: 100},
width = 1000 - margin.left - margin.right,
height = 1000 - margin.top - margin.bottom;
var x = d3.scale.linear()
.range([0, width])
.domain([0.15,1.025]);
var y = d3.scale.linear()
.range([height, 0])
.domain([0.5,4.5]);
var xAxis = d3.svg.axis()
.scale(x)
.orient("bottom");
var yAxis = d3.svg.axis()
.scale(y)
.orient("left");
var svg = d3.select("#chart").append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
.call(xAxis)
.append("text")
.attr("x", x(1))
.attr("dx", ".71em")
.attr("dy", "-.5em")
.style("text-anchor", "end")
.text("Balance of parties");
svg.append("g")
.attr("class", "y axis")
.call(yAxis)
.append("text")
.attr("transform", "rotate(-90)")
.attr("y", 6)
.attr("dy", ".71em")
.style("text-anchor", "end")
.text("Effective number of parties");
//contour lines based on http://vis.supstat.com/2012/11/contour-plots-with-d3-and-r/
var line = d3.svg.line()
.x(function(d) { return x(d.x); })
.y(function(d) { return y(d.y); })
.interpolate("basis") //https://github.com/mbostock/d3/wiki/SVG-Shapes#line_interpolate
.tension(1);
d3.csv("data.csv", function(error, data) {
/*d3.json("contour_lines.json", function(er,cl) {
svg.selectAll(".contour-line")
.data(cl.map(function(d) {
return d3.range(d.x.length).map(function(i) {
return {x: d.x[i], y: d.y[i]};
});
}))
.enter().append("svg:path")
.attr("d", line)
.attr("class","contour-line")
})*/
svg.selectAll(".event")
.data(data)
.enter().append("circle")
.attr("cx", function(d) {
return x(parseFloat(d.balance_of_parties) + parseFloat(d.random1)/2)
})
.attr("cy", function(d) {
return y(parseFloat(d.effective_number_of_parties) + parseFloat(d.random2)*2)
})
.attr("r", function(d) {
return Math.round(4);
})
.attr("class","point noevent")
.filter(function(d) { return (d.event == 1) })
.attr("class","point event")
.attr("r", function(d) {
return 14;
})
})
</script>
</body>
</html>
[{
"x": [0.15,0.151],
"y": [4.495,4.5]
},
{
"x": [0.917,0.95,0.979,1],
"y": [0.5,0.612,0.7,0.756]
},
{
"x": [0.15,0.18,0.2,0.207,0.229],
"y": [3.915,4.1,4.246,4.3,4.5]
},
{
"x": [0.806,0.85,0.853,0.9,0.914,0.95,1,1],
"y": [0.5,0.69,0.7,0.858,0.9,0.992,1.1,1.1]
},
{
"x": [0.15,0.189,0.2,0.225,0.25,0.252,0.274,0.292,0.3,0.307],
"y": [3.335,3.5,3.557,3.7,3.882,3.9,4.1,4.3,4.402,4.5]
},
{
"x": [0.694,0.7,0.726,0.75,0.767,0.8,0.825,0.85,0.9,0.909,0.95,1],
"y": [0.5,0.54,0.7,0.824,0.9,1.022,1.1,1.169,1.282,1.3,1.372,1.445]
},
{
"x": [0.15,0.2,0.211,0.25,0.265,0.3,0.3,0.325,0.343,0.35,0.357,0.368,0.377,0.385],
"y": [2.755,2.868,2.9,3.034,3.1,3.3,3.3,3.5,3.7,3.794,3.9,4.1,4.3,4.5]
},
{
"x": [0.583,0.599,0.6,0.62,0.65,0.65,0.693,0.7,0.75,0.762,0.8,0.85,0.894,0.9,0.95,1],
"y": [0.5,0.7,0.71,0.9,1.1,1.103,1.3,1.327,1.472,1.5,1.573,1.648,1.7,1.706,1.752,1.789]
},
{
"x": [0.15,0.2,0.25,0.3,0.35,0.4,0.413,0.443,0.45,0.452,0.456,0.458,0.46,0.461,0.461,0.462,0.462,0.463,0.463],
"y": [2.175,2.179,2.186,2.198,2.219,2.271,2.3,2.5,2.638,2.7,2.9,3.1,3.3,3.5,3.7,3.9,4.1,4.3,4.5]
},
{
"x": [0.472,0.472,0.473,0.474,0.476,0.479,0.485,0.499,0.5,0.55,0.6,0.633,0.65,0.7,0.75,0.8,0.85,0.9,0.95,1],
"y": [0.5,0.7,0.9,1.1,1.3,1.5,1.7,1.9,1.905,2.051,2.088,2.1,2.104,2.114,2.12,2.124,2.128,2.13,2.132,2.134]
},
{
"x": [0.36,0.35,0.345,0.326,0.3,0.299,0.26,0.25,0.2,0.196,0.15],
"y": [0.5,0.644,0.7,0.9,1.095,1.1,1.3,1.339,1.491,1.5,1.594]
},
{
"x": [1,0.967,0.95,0.9,0.85,0.8,0.785,0.75,0.7,0.7,0.651,0.65,0.619,0.6,0.597,0.58,0.567,0.557,0.55,0.548,0.541],
"y": [2.478,2.5,2.512,2.554,2.607,2.675,2.7,2.768,2.9,2.901,3.1,3.106,3.3,3.465,3.5,3.7,3.9,4.1,4.255,4.3,4.5]
},
{
"x": [0.249,0.219,0.2,0.179,0.15],
"y": [0.5,0.7,0.802,0.9,1.014]
},
{
"x": [1,0.95,0.945,0.9,0.85,0.844,0.8,0.779,0.75,0.733,0.7,0.698,0.672,0.651,0.65,0.634,0.619],
"y": [2.822,2.892,2.9,2.978,3.086,3.1,3.226,3.3,3.417,3.5,3.688,3.7,3.9,4.1,4.108,4.3,4.5]
},
{
"x": [1,0.95,0.938,0.9,0.868,0.85,0.817,0.8,0.777,0.75,0.745,0.719,0.7,0.698],
"y": [3.167,3.272,3.3,3.402,3.5,3.565,3.7,3.777,3.9,4.065,4.1,4.3,4.475,4.5]
},
{
"x": [1,0.95,0.935,0.9,0.882,0.85,0.839,0.804,0.8,0.776],
"y": [3.511,3.652,3.7,3.826,3.9,4.044,4.1,4.3,4.328,4.5]
},
{
"x": [1,0.986,0.95,0.933,0.9,0.89,0.854],
"y": [3.856,3.9,4.032,4.1,4.249,4.3,4.5]
},
{
"x": [1,0.975,0.95,0.932],
"y": [4.2,4.3,4.412,4.5]
}]
year provincia balance_of_parties raes_index effective_number_of_parties institution event time random1 random2 event_minus_controled fitted fitted_minus_controled
1 1983 misiones 0.93 0.5 2 DF 0 0 0.00613557719989495 -0.00494378761967004 0.00291839680453572 0.00214235302191025 0.00292465574278281
2 1985 misiones 0.86 0.5 2 DF 0 2 -0.00463660449761856 -0.00377095519487834 0.00308588325985098 0.00307035470972095 0.00309537257638065
3 1987 misiones 0.86 0.54 2.15 DF 0 4 0.0112045031532542 -0.00422034190588436 0.00424357526649029 0.00572267182241095 0.00426792947419865
4 1989 misiones 0.59 0.5 1.98 DF 0 6 -0.0082305122850347 0.0109102414630987 0.00377499263139237 0.00689992223209543 0.00380112985568619
5 1991 misiones 0.86 0.5 1.98 DF 0 8 0.0110908758704022 -0.00187650380447371 0.00294404772553783 0.0072934631267196 0.00296559852351043
6 1993 misiones 0.86 0.5 2 DF 0 10 -0.00752705319326752 -0.0156706502319866 0.00306369390415587 0.0102869328266216 0.00309537257638065
7 1995 misiones 0.93 0.5 2 DF 0 12 -0.00248927394823042 0.00392035855872242 0.00288648908680103 0.0131358642426401 0.00292465574278281
8 1997 misiones 1 0.5 1.98 DF 0 14 0.00198095724715638 -0.00717562043244947 0.00256649890389929 0.0158298030439642 0.00260744933960761
9 1999 misiones 0.93 0.59 2.44 DF 0 16 0.00775014171861879 -0.0218300583449109 0.00828157129071303 0.0690683031791204 0.0088737814362972
10 2001 misiones 0.5 0.77 4.3 DF 0 18 -0.0100783309649417 0.00165724565289191 0.00588731360323035 0.0665619798893391 0.00629252096006799
11 2003 misiones 0.9 0.59 2.42 DF 0 20 0.00331069703095325 -0.00171644572718413 0.00722874243418407 0.110303055120914 0.00807173246550726
12 2005 misiones 0.34 0.57 2.3 DF 0 22 0.00287678472105748 -0.00546894904179252 0.00356281163577685 0.0739584005039397 0.00383630022463011
13 2007 misiones 0.4 0.68 3.13 DF 0 24 -0.00720428590166158 -0.0071755743114583 0.00275971125952061 0.0776229608414477 0.00298246165720321
14 2009 misiones 0.36 0.61 2.53 DF 0 26 0.00546957339032816 -0.00195662711614003 0.0030404081170488 0.115442179545389 0.00341246169309749
15 2011 misiones 0.26 0.19 1.23 DF 1 28 0.00249799603770441 0.0106149348287846 0.0221869980950991 0.38290011906832 0.0119700364536402
16 1983 formosa 0.6 0.67 3 DF 0 0 -0.000900704423899895 -0.00187797750447584 0.00776934065284455 0.0164519762669972 0.00789821890493103
17 1985 formosa 0.7 0.56 2.27 DF 0 2 -0.00453412865636704 -0.00244060027972476 0.00489659064391961 0.0140542329928201 0.00496589433406053
18 1987 formosa 0.91 0.5 1.99 DF 0 4 -0.0193255422683551 0.00475376880213348 0.00286935186784643 0.011162867732712 0.00290156150471534
19 1989 formosa 0.91 0.48 1.92 DF 0 6 0.010880979359646 -0.00511865110438064 0.00241943615198444 0.0127573650088584 0.0024504995040548
20 1991 formosa 0.57 0.63 2.71 DF 0 8 0.0118349194720055 0.0120476625824012 0.00560910566462717 0.040057319225965 0.00583835224956862
21 1993 formosa 0.74 0.48 1.92 DF 1 10 -0.0246774282563358 -0.000154936432380374 0.00800130291930456 0.0285033416502825 0.00302862201328259
22 1983 corrientes 0.43 0.76 4.17 DF 0 0 0.0160642504870577 0.0133091797517512 0.00282876000007595 0.0056919428655699 0.00284490705082734
23 1985 corrientes 0.56 0.6 2.52 DF 0 2 0.00350010686007221 0.00134257798505677 0.00507082972213289 0.0138284054881341 0.00514143828846275
24 1987 corrientes 0.56 0.59 2.45 DF 0 4 -0.00437024738709536 0.00395656099243664 0.00487316877421075 0.018011021160556 0.00496173470737373
25 1989 corrientes 0.63 0.64 2.77 DF 0 6 -0.00210887512696579 -0.00379962150138898 0.0071374936596364 0.0357373493175442 0.00739718140163956
26 1991 corrientes 0.63 0.62 2.6 DF 0 8 0.00229191421015537 0.00162264818967533 0.00610138127422391 0.0413970550388132 0.00635926140285804
27 1993 corrientes 0.56 0.56 2.25 DF 0 10 -0.000302813607479737 0.0137605122820851 0.00430804942189625 0.0396203476330373 0.00448216226748777
28 1995 corrientes 0.63 0.62 2.6 DF 0 12 -0.0159429213885303 -0.013799899118309 0.00590860568443011 0.073502360199084 0.00635926140285804
29 1997 corrientes 0.95 0.64 2.77 DF 0 14 -0.00356851500779983 0.00306901833910926 0.0166697041734952 0.269580933417978 0.0218275707491388
30 1999 corrientes 0.62 0.75 3.93 DF 0 16 -0.0095742632230825 -0.00890414467541482 0.0139327410742389 0.301518997656544 0.0188358231044359
31 2001 corrientes 0.78 0.59 2.47 DF 0 18 -0.00470405074703725 0.00957446675332889 0.00611280743012112 0.186152092129577 0.0073635211906965
32 2003 corrientes 0.29 0.52 2.09 DF 0 20 -0.00103232769671007 -0.00594048714316322 0.0038415198122359 0.15944823324807 0.00450557854636907
33 2005 corrientes 0.8 0.36 1.55 DF 0 22 0.00857246319255588 -0.000514698216673491 0.0013312589879512 0.0757384770166921 0.00143600302760256
34 2007 corrientes 0.63 0.56 2.25 DF 0 24 -0.00383982646975174 -0.00283210898687271 0.00357434375009073 0.264863711094727 0.00465827544742197
35 2009 corrientes 0.63 0.66 2.96 DF 1 26 -0.0177892428591937 -0.0114515588446091 0.0147521909147064 0.478680906636508 0.00875891917057952
36 1983 chaco 1 0.5 2 DF 0 0 0.007641913404718 0.000188128453587383 0.00271244263207616 0.0185957098042203 0.00276335433060985
37 1985 chaco 1 0.5 2 DF 0 2 0.00464403866743736 0.0226540138215481 0.00269502203217974 0.0250388994487505 0.00276335433060985
38 1987 chaco 1 0.5 2 DF 0 4 -0.00968119360088127 -0.00552706764315947 0.00267194646976741 0.0336380572780962 0.00276335433060985
39 1989 chaco 0.75 0.59 2.46 DF 0 6 0.00685989371504505 -0.00155626014866174 0.00619376333864092 0.105121256323665 0.00688031288912835
40 1991 chaco 0.82 0.63 2.72 DF 0 8 -0.00868404427052343 0.00276548421278163 0.0101679472550606 0.228155260454958 0.0127737924477253
41 1993 chaco 0.75 0.66 2.91 DF 0 10 0.0112729971004548 0.0134166526475791 0.0101873369239624 0.301698783007086 0.0137748470837908
42 1995 chaco 0.69 0.62 2.61 DF 1 12 -0.011117497900944 -0.000944932460841888 0.015937531625373 0.240754734728333 0.00745907597036984
43 1983 misiones 0.93 0.5 2 CDM 0 0 0.0155491911043368 -0.00303910145614441 0.00291360079983906 0.00378707447179772 0.00292465574278281
44 1985 misiones 0.86 0.5 2 CDM 0 2 -0.0055873626733578 -0.0147024999368129 0.00307862981338461 0.0054236467630103 0.00309537257638065
45 1987 misiones 0.86 0.54 2.15 CDM 0 4 0.00713477402735226 0.0122776841260804 0.00422508987164483 0.0100882770040062 0.00426792947419865
46 1989 misiones 0.59 0.5 1.98 CDM 0 6 -0.00179680650966159 0.00783687554577616 0.00375521568718222 0.012152629420389 0.00380112985568619
47 1991 misiones 0.86 0.5 1.98 CDM 0 8 0.00204059324783378 0.0126598250507549 0.00292775813242879 0.0128418873398684 0.00296559852351043
48 1993 misiones 0.86 0.5 2 CDM 0 10 -0.00417826599423967 -0.0149487086389082 0.00303993801895278 0.0180711522742314 0.00309537257638065
49 1995 misiones 0.93 0.5 2 CDM 0 12 0.00440176807770567 0.000189129711049092 0.00285808276189959 0.0230257419162736 0.00292465574278281
50 1997 misiones 1 0.5 1.98 CDM 0 14 0.00174384602745028 -0.00638154470339618 0.00253623695040533 0.0276910120694887 0.00260744933960761
51 1999 misiones 0.93 0.59 2.44 CDM 1 16 -0.00978784268921962 0.00595815352877974 0.021477085635023 0.116114440618132 0.0088737814362972
52 1983 misiones 0.93 0.5 2 FI 0 0 0.00901178190888219 0.00159126124862195 0.00291649620457246 0.00279381313523445 0.00292465574278281
53 1985 misiones 0.86 0.5 2 FI 0 2 -0.0216805881541372 6.88165813083663e-05 0.00308300695125228 0.0040028753767157 0.00309537257638065
54 1987 misiones 0.86 0.54 2.15 FI 0 4 0.0173462868622315 -0.00396086145508135 0.00423623153395769 0.00745472410646723 0.00426792947419865
55 1989 misiones 0.59 0.5 1.98 FI 0 6 0.0105032959856045 -0.0110063359537063 0.00376712942585735 0.00898506705588005 0.00380112985568619
56 1991 misiones 0.86 0.5 1.98 FI 0 8 -0.0141657030036571 -0.00400151048971566 0.00293756931817311 0.00949639811432856 0.00296559852351043
57 1993 misiones 0.86 0.5 2 FI 0 10 0.00476402914813355 -0.00156809756229966 0.00305422673062829 0.013381834395126 0.00309537257638065
58 1995 misiones 0.93 0.5 2 FI 0 12 0.00236152093057957 -0.00743377005452541 0.00287514663504586 0.0170731025392444 0.00292465574278281
59 1997 misiones 1 0.5 1.98 FI 0 14 -0.0019138250126264 -0.000139260689143106 0.00255439345083485 0.0205576804431025 0.00260744933960761
60 1999 misiones 0.93 0.59 2.44 FI 0 16 -0.0166620580020808 0.0036947412982783 0.00812406200380014 0.0882707471168404 0.0088737814362972
61 2001 misiones 0.5 0.77 4.3 FI 0 18 -0.000200397074147815 0.00162562278557857 0.00577899876879095 0.0851313346953217 0.00629252096006799
62 2003 misiones 0.9 0.59 2.42 FI 1 20 0.0142721637894979 0.00896552565767599 0.0190890216704723 0.139254750830513 0.00807173246550726
63 1983 misiones 0.93 0.5 2 ley_etica 0 0 0.00147783784806819 0.000453589526090929 0.00292318680473508 0.000502386330235854 0.00292465574278281
64 1985 misiones 0.86 0.5 2 ley_etica 0 2 -0.00740649218139902 -0.0164409911951483 0.0030931431091246 0.000720517638092255 0.00309537257638065
65 1987 misiones 0.86 0.54 2.15 ley_etica 0 4 -0.0166912371280583 -0.00487186169069887 0.00426219009188499 0.00134567473182082 0.00426792947419865
66 1989 misiones 0.59 0.5 1.98 ley_etica 0 6 -0.00641717335944121 0.00478018619648024 0.00379496193127889 0.00162397346841749 0.00380112985568619
67 1991 misiones 0.86 0.5 1.98 ley_etica 0 8 0.00671080929846935 -0.00095984449414543 0.00296051061044019 0.00171711799609816 0.00296559852351043
68 1993 misiones 0.86 0.5 2 ley_etica 0 10 -0.0166541938012227 0.00281298410764664 0.00308786775080922 0.00242747454718813 0.00309537257638065
69 1995 misiones 0.93 0.5 2 ley_etica 0 12 -0.00100157669618766 -0.00325177665682991 0.00291558414141441 0.00310658768955456 0.00292465574278281
70 1997 misiones 1 0.5 1.98 ley_etica 0 14 -0.0142148882703464 -0.0155439569903856 0.00259768578218125 0.00375151409091976 0.00260744933960761
71 1999 misiones 0.93 0.59 2.44 ley_etica 0 16 -0.00722832132561781 0.00967877817211555 0.00872356331211344 0.0170732318202352 0.0088737814362972
72 2001 misiones 0.5 0.77 4.3 ley_etica 0 18 -0.00594721974067458 0.00768261355564169 0.00619003891912911 0.0164204048855072 0.00629252096006799
73 2003 misiones 0.9 0.59 2.42 ley_etica 0 20 -0.00449184948788201 -0.00339038851434887 0.00784723622662268 0.0282067422217793 0.00807173246550726
74 2005 misiones 0.34 0.57 2.3 ley_etica 0 22 -0.00171793471321581 0.00177171538092001 0.00376652868944209 0.0183546137244552 0.00383630022463011
75 2007 misiones 0.4 0.68 3.13 ley_etica 0 24 -0.00989787692611843 -0.0145789844523964 0.00292538901721966 0.0193215498016249 0.00298246165720321
76 2009 misiones 0.36 0.61 2.53 ley_etica 0 26 -0.0141060577690078 0.00750801535150819 0.00331277282689236 0.0296483842259963 0.00341246169309749
77 2011 misiones 0.26 0.19 1.23 ley_etica 0 28 -0.013766730816181 -0.0132884615723881 0.0105440977449484 0.12684031706879 0.0119700364536402
78 1983 misiones 0.93 0.5 2 transparencia_fiscal 0 0 -0.0161678707333192 0.00664579484375512 0.00292358294142791 0.000366880158235456 0.00292465574278281
79 1985 misiones 0.86 0.5 2 transparencia_fiscal 0 2 0.00384986625348267 -0.00294854159611481 0.00309374419823815 0.000526206965995472 0.00309537257638065
80 1987 misiones 0.86 0.54 2.15 transparencia_fiscal 0 4 0.00465444955704484 0.00167213175558563 0.00426373643268644 0.000982936250801453 0.00426792947419865
81 1989 misiones 0.59 0.5 2.77 transparencia_fiscal 0 6 0.00291233951710392 -0.00302300017183318 0.00644835339419759 0.00201486948721825 0.00646135908267686
82 1991 misiones 0.86 0.5 2.6 transparencia_fiscal 0 8 -0.0193189033173711 -0.00369308475431987 0.0111347938244046 0.0047156144384269 0.0111874252160767
83 1993 misiones 0.86 0.5 2.25 transparencia_fiscal 0 10 0.00517557839516359 -0.00787055193383854 0.00527115819703665 0.00302571884142718 0.00528713139272296
84 1995 misiones 0.93 0.5 2.6 transparencia_fiscal 0 12 -0.00902553593077172 0.0122287764163133 0.0131507517111609 0.0102309176453474 0.0132859865776803
85 1997 misiones 1 0.5 2.77 transparencia_fiscal 0 14 -0.00494472852668104 0.00597523348903718 0.025171540832521 0.0265340546835264 0.0258483838575387
87 1983 misiones 0.93 0.5 2 ley_info_publica 0 0 0.00864024927337558 -0.0113528497081467 0.00292271612837785 0.000663414100842464 0.00292465574278281
88 1985 misiones 0.86 0.5 2 ley_info_publica 0 2 -0.0142101749920029 0.00303624303307276 0.00309242905309048 0.000951395564518606 0.00309537257638065
89 1987 misiones 0.86 0.54 2.15 ley_info_publica 0 4 0.00100993267501562 -0.00157518542701535 0.00426035415257479 0.00177651774910362 0.00426792947419865
90 1989 misiones 0.59 0.5 1.98 ley_info_publica 0 6 0.00365998976403754 -0.00601259937074456 0.00379298999595992 0.00214372777953525 0.00380112985568619
91 1991 misiones 0.86 0.5 1.98 ley_info_publica 0 8 0.00322720084520429 -0.00947571314383008 0.00295888426375648 0.00226661562523156 0.00296559852351043
92 1993 misiones 0.86 0.5 2 ley_info_publica 0 10 -0.000569747316659004 -0.0117710960977662 0.00308547221582928 0.00320356499842716 0.00309537257638065
93 1995 misiones 0.93 0.5 2 ley_info_publica 0 12 -0.00226542765046995 -0.0235241932039566 0.00291269238888971 0.00409890600079196 0.00292465574278281
94 1997 misiones 1 0.5 1.98 ley_info_publica 0 14 0.00643217120987926 0.00421433952989939 0.00259457743274755 0.00494881464228238 0.00260744933960761
95 1999 misiones 0.93 0.59 2.44 ley_info_publica 0 16 0.00380795945651228 -0.0041440206298976 0.00867698879652078 0.0224264673412881 0.0088737814362972
96 2001 misiones 0.5 0.77 4.3 ley_info_publica 0 18 -0.00238019599977726 -0.00470095764841401 0.006158223462164 0.021573442031046 0.00629252096006799
97 2003 misiones 0.9 0.59 2.42 ley_info_publica 0 20 -0.0109450302589521 0.00753012134337996 0.00777916043500633 0.0369197198531482 0.00807173246550726
98 2005 misiones 0.34 0.57 2.3 ley_info_publica 0 22 -0.00699423595556509 -0.0148549089999112 0.00374495143510337 0.0240997700267123 0.00383630022463011
99 2007 misiones 0.4 0.68 3.13 ley_info_publica 0 24 -0.00131886443297276 -0.0032041886843717 0.00290777293217856 0.0253615462046294 0.00298246165720321
100 2009 misiones 0.36 0.61 2.53 ley_info_publica 0 26 0.00453015120068799 0.00799634355646673 0.00328263032394975 0.0387889059251078 0.00341246169309749
101 2011 misiones 0.26 0.19 1.23 ley_info_publica 1 28 -0.0168511278085308 0.00893296990066541 0.0277000025996684 0.160974057938005 0.0119700364536402
102 1983 misiones 0.93 0.5 2 estatuto_pp 0 0 0.0111126053951439 0.00684639104760813 0.00282159258067188 0.0358753085214076 0.00292465574278281
103 1985 misiones 0.86 0.5 2 estatuto_pp 0 2 -0.00726758043265137 -0.0124872641444625 0.00294242749444125 0.0506733599350457 0.00309537257638065
104 1987 misiones 0.86 0.54 2.15 estatuto_pp 0 4 -0.0118003175246368 0.00210471872270029 0.00389784128658188 0.090705925354271 0.00426792947419865
105 1989 misiones 0.59 0.5 1.98 estatuto_pp 0 6 -0.00367927943735939 -0.00391035362241514 0.00341378772795739 0.107475907474005 0.00380112985568619
106 1991 misiones 0.86 0.5 1.98 estatuto_pp 0 8 0.00423048825671524 0.014522700204159 0.00264884969404774 0.112953406940843 0.00296559852351043
107 1993 misiones 0.86 0.5 2 estatuto_pp 0 10 -0.001984737058801 0.0102233695830904 0.00265717480785472 0.152644822929136 0.00309537257638065
108 1995 misiones 0.93 0.5 2 estatuto_pp 0 12 0.00470883353968829 0.00141719496159695 0.00242474096488326 0.187452078903048 0.00292465574278281
109 1997 misiones 1 0.5 1.98 estatuto_pp 0 14 -0.0026238136497613 -0.00192834298440969 0.00209672001103096 0.217998254798455 0.00260744933960761
110 1999 misiones 0.93 0.59 2.44 estatuto_pp 0 16 0.0131712641810691 0.00715441511426499 0.00505596640276831 0.56253201118175 0.0088737814362972
111 2001 misiones 0.5 0.77 4.3 estatuto_pp 0 18 -0.00778025349566143 0.026704383157516 0.00362049388657513 0.552751329694997 0.00629252096006799
112 2003 misiones 0.9 0.59 2.42 estatuto_pp 1 20 0.0061861782490875 0.0181855455064213 0.0110890120180302 0.6824134292322 0.00807173246550726
113 1983 misiones 0.93 0.5 2 juicio_politico 0 0 0.00217781783628725 0.00508169883049553 0.00292083019573464 0.00130888950364894 0.00292465574278281
114 1985 misiones 0.86 0.5 2 juicio_politico 0 2 0.00936103378479481 -0.00147512802242628 0.00308956943478286 0.00187653927563167 0.00309537257638065
115 1987 misiones 0.86 0.54 2.15 juicio_politico 0 4 -0.00859062635868843 0.00514860655437097 0.00425301271028349 0.00350120416972837 0.00426792947419865
116 1989 misiones 0.59 0.5 1.98 juicio_politico 0 6 0.00789237550466952 0.00503535807681419 0.00378511000814261 0.0042234022766132 0.00380112985568619
117 1991 misiones 0.86 0.5 1.98 juicio_politico 0 8 0.00342924947009049 -0.00549269509757632 0.00295238672413323 0.00446497271402616 0.00296559852351043
118 1993 misiones 0.86 0.5 2 juicio_politico 0 10 0.0053910839564201 -0.00135341456929029 0.00307591791608041 0.00630491297424935 0.00309537257638065
119 1995 misiones 0.93 0.5 2 juicio_politico 0 12 -0.00385686600467155 0.0174769150550857 0.00290117770739739 0.00806001842933272 0.00292465574278281
120 1997 misiones 1 0.5 1.98 juicio_politico 0 14 0.00438495779285449 -0.00941585356021505 0.00258221932772558 0.0097232452677073 0.00260744933960761
121 1999 misiones 0.93 0.59 2.44 juicio_politico 0 16 0.00876301018265311 -0.00305654299850799 0.00849750482341734 0.043328452766352 0.0088737814362972
122 2001 misiones 0.5 0.77 4.3 juicio_politico 0 18 0.0127990376582606 -0.00179175280287871 0.00603543218737496 0.0417143135129256 0.00629252096006799
123 2003 misiones 0.9 0.59 2.42 juicio_politico 0 20 0.00764755057043717 0.00152054663976964 0.00752334297483292 0.0703575552753764 0.00807173246550726
124 2005 misiones 0.34 0.57 2.3 juicio_politico 0 22 -0.022366156733187 -0.0142893977408406 0.00366204329640302 0.0464871496421394 0.00383630022463011
125 2007 misiones 0.4 0.68 3.13 juicio_politico 0 24 -0.000834537153156299 0.0131211878428591 0.00284023461160797 0.0488623604998988 0.00298246165720321
126 2009 misiones 0.36 0.61 2.53 juicio_politico 0 26 -0.00402710924142916 0.00902835921798504 0.00316972235166999 0.0737899371528218 0.00341246169309749
127 2011 misiones 0.26 0.19 1.23 juicio_politico 0 28 -0.00269330114897946 0.00625773989882196 0.00909467377684516 0.274717622061589 0.0119700364536402
128 1983 formosa 0.6 0.67 3 CDM 0 0 -0.0110597012472799 0.02755336486243 0.00767425735942977 0.0287657511768739 0.00789821890493103
129 1985 formosa 0.7 0.56 2.27 CDM 0 2 -0.00268098709051416 -0.0100815329778043 0.00484513503005608 0.0246182940471524 0.00496589433406053
130 1987 formosa 0.91 0.5 1.99 CDM 0 4 0.00132365684366937 -0.000274639909311553 0.00284525373781361 0.0195967911000854 0.00290156150471534
131 1989 formosa 0.91 0.48 1.92 CDM 0 6 -0.00910071585643969 -0.0115596268483268 0.00239629345508725 0.0223687331471481 0.0024504995040548
132 1991 formosa 0.57 0.63 2.71 CDM 0 8 -0.00561849974956459 0.00177139577234314 0.0054501634990514 0.0688029999310235 0.00583835224956862
133 1993 formosa 0.74 0.48 1.92 CDM 0 10 0.00177205193232147 0.00672078903587612 0.00288268877017385 0.049384275613603 0.00302862201328259
134 1995 formosa 0.74 0.48 1.92 CDM 0 12 -0.0203337194301141 0.0113199384688213 0.00283580949982321 0.0657803007040865 0.00302862201328259
135 1997 formosa 0.59 0.48 1.92 CDM 0 14 -0.0237764979502301 0.00219147048205813 0.00329309072872315 0.10317751997136 0.00365101085191496
136 1999 formosa 0.59 0.39 1.64 CDM 1 16 -0.00180091456656853 -0.00897749608514935 0.00733416367549167 0.114420724225655 0.00302516038823729
137 1983 formosa 0.6 0.67 3 FI 0 0 -0.0139086610002549 -0.0207731329910526 0.00773128925493629 0.0213616443991766 0.00789821890493103
138 1985 formosa 0.7 0.56 2.27 FI 0 2 0.0137251695763643 0.00544319438668791 0.00487603196375758 0.0182616420610563 0.00496589433406053
139 1987 formosa 0.91 0.5 1.99 FI 0 4 -0.0180763188145865 0.00802642621023542 0.00285974255946118 0.014517435376307 0.00290156150471534
140 1989 formosa 0.91 0.48 1.92 FI 0 6 -0.00244874957751252 0.0104085570262767 0.00241019780676598 0.0165830613514899 0.0024504995040548
141 1991 formosa 0.57 0.63 2.71 FI 0 8 0.005294140138881 0.0192427571213695 0.00554450353831674 0.0516415244042402 0.00583835224956862
142 1993 formosa 0.74 0.48 1.92 FI 0 10 0.013072728522553 0.00541018133456922 0.00291897679069247 0.0368745942577442 0.00302862201328259
143 1995 formosa 0.74 0.48 1.92 FI 0 12 0.00507922726124778 -0.000897280565934956 0.00288283707014085 0.0493328319218601 0.00302862201328259
144 1997 formosa 0.59 0.48 1.92 FI 0 14 0.00415278087784598 0.00692888402233579 0.0033765090954284 0.0781617112084768 0.00365101085191496
145 1999 formosa 0.59 0.39 1.64 FI 0 16 0.000970554809243452 0.0103945471129597 0.00277325268404231 0.0869432255131728 0.00302516038823729
146 2001 formosa 0.59 0.48 1.92 FI 0 18 0.000182617270387628 -0.0121864197432794 0.00319067667462589 0.13477105697326 0.00365101085191496
147 2003 formosa 0.45 0.39 1.64 FI 0 20 0.00366657156825026 0.00254042807714834 0.00363220372052061 0.204968689364391 0.00445848150791622
148 2005 formosa 0.38 0.39 1.64 FI 0 22 0.0108796825219418 -0.00294317697194797 0.00401835057801034 0.297858788526444 0.00541260397324837
149 2007 formosa 0.32 0.32 1.47 FI 0 24 -0.00922916402438575 0.00477343615315298 0.00472661306587892 0.437456014692597 0.00732039952924812
150 2009 formosa 0.32 0.44 1.8 FI 0 26 0.0175891311666075 0.019943406859506 0.00359569071686716 0.447480693616907 0.00562497666131397
151 2011 formosa 0.45 0.32 1.47 FI 0 28 0.00850373714519822 -0.00277513264382158 0.00283237190952865 0.469095492786798 0.00452768143507868
152 1983 formosa 0.6 0.67 3 ley_etica 0 0 -0.00450495262630456 0.0104410069190569 0.00786746919199977 0.00390084488978107 0.00789821890493103
153 1985 formosa 0.7 0.56 2.27 ley_etica 0 2 -0.0018622721140257 -0.0052157840522418 0.00494940450297166 0.00332614206842361 0.00496589433406053
154 1987 formosa 0.91 0.5 1.99 ley_etica 0 4 -0.00601498590878197 -0.00890192152796485 0.00289392318485484 0.00263595702254156 0.00290156150471534
155 1989 formosa 0.91 0.48 1.92 ley_etica 0 6 -0.00323718199021327 0.0140227813970174 0.00244311946574145 0.0030161906571975 0.0024504995040548
156 1991 formosa 0.57 0.63 2.71 ley_etica 0 8 -0.0173355866440321 -0.00445989135223341 0.00578213895225411 0.00967493280989587 0.00583835224956862
157 1993 formosa 0.74 0.48 1.92 ley_etica 0 10 0.00669816463156443 -0.000238670150476513 0.00300803090762461 0.00682205380617281 0.00302862201328259
158 1995 formosa 0.74 0.48 1.92 ley_etica 0 12 0.002861845848834 -0.0136523191613468 0.00300081398241222 0.00922415564592839 0.00302862201328259
159 1997 formosa 0.59 0.48 1.92 ley_etica 0 14 -0.00147159351478244 -0.0140989251439183 0.00359671211230139 0.0149839489730833 0.00365101085191496
160 1999 formosa 0.59 0.39 1.64 ley_etica 0 16 0.0127363989409815 0.0204863774802661 0.00297477192854174 0.0167967375983216 0.00302516038823729
161 2001 formosa 0.59 0.48 1.92 ley_etica 0 18 0.00696976512589215 -0.00464158356277237 0.00355309286996333 0.027185619820643 0.00365101085191496
162 2003 formosa 0.45 0.39 1.64 ley_etica 0 20 0.013701837772727 -0.0106636556716983 0.00426567023779048 0.0442089220167796 0.00445848150791622
163 2005 formosa 0.38 0.39 1.64 ley_etica 0 22 0.00245854176974883 0.00633758441249144 0.00504302028101546 0.0707251382784505 0.00541260397324837
164 2007 formosa 0.32 0.32 1.47 ley_etica 0 24 -0.00637018494796421 0.0144378513554284 0.00647682923838405 0.122433831435826 0.00732039952924812
165 2009 formosa 0.32 0.44 1.8 ley_etica 0 26 0.00474735019607687 0.00561277749039618 0.00495476246391046 0.126867571015181 0.00562497666131397
166 2011 formosa 0.45 0.32 1.47 ley_etica 0 28 -0.00702728645594526 -0.00103879015302143 0.00394867084214664 0.136830957355553 0.00452768143507868
167 1983 formosa 0.6 0.67 3 transparencia_fiscal 0 0 -0.00933662776496597 0.00990792944142907 0.0078757307548117 0.00285130431376087 0.00789821890493103
168 1985 formosa 0.7 0.56 2.27 transparencia_fiscal 0 2 -0.00983131438635409 0.00784369375087544 0.00495383764662711 0.00243085063060888 0.00496589433406053
169 1987 formosa 0.91 0.5 1.99 transparencia_fiscal 0 4 -0.00590452949866059 0.0101535971881115 0.00289597823684461 0.00192608238862712 0.00290156150471534
170 1989 formosa 0.91 0.48 1.92 transparencia_fiscal 0 6 0.00808619233438166 -0.0123706621789983 0.0024451041990682 0.00220414375758199 0.0024504995040548
171 1991 formosa 0.57 0.63 2.71 transparencia_fiscal 0 8 -0.00851221218864676 0.00946457267486218 0.00579714592440754 0.00708289354054284 0.00583835224956862
172 1993 formosa 0.74 0.48 1.92 transparencia_fiscal 0 10 -0.0060128849285821 0.00300886729133791 0.00301354536869161 0.00499048600546956 0.00302862201328259
173 1995 formosa 0.74 0.48 1.92 transparencia_fiscal 0 12 0.00187818039893905 0.0114218520705488 0.00300824145255163 0.00675206198582212 0.00302862201328259
174 1997 formosa 0.59 0.48 1.92 transparencia_fiscal 0 14 0.00843451061775087 0.00751357789010854 0.00361112277319577 0.010985333487514 0.00365101085191496
175 1999 formosa 0.59 0.39 1.64 transparencia_fiscal 1 16 0.0114599583963233 0.0034610958706906 0.00812254638080892 0.012320412273096 0.00302516038823729
176 1983 formosa 0.6 0.67 3 ley_info_publica 0 0 0.00299600609910447 0.0155679667610439 0.0078576825388459 0.00514555840160384 0.00789821890493103
177 1985 formosa 0.7 0.56 2.27 ley_info_publica 0 2 -0.0156102063522851 -0.00448595446905963 0.00494415033077342 0.00438828257918597 0.00496589433406053
178 1987 formosa 0.91 0.5 1.99 ley_info_publica 0 4 -0.00248414798133408 0.00395322669879797 0.00289148604611281 0.00347846920755604 0.00290156150471534
179 1989 formosa 0.91 0.48 1.92 ley_info_publica 0 6 -0.000283440333424337 -0.0165645787396337 0.00244076651072435 0.00397974927035124 0.0024504995040548
180 1991 formosa 0.57 0.63 2.71 ley_info_publica 0 8 -0.00269839662825995 -0.00469713380311938 0.00576445192811204 0.0127385276248424 0.00583835224956862
181 1993 formosa 0.74 0.48 1.92 ley_info_publica 0 10 0.000580630786615636 0.00356529987496434 0.00300151528895168 0.00899047751500848 0.00302862201328259
182 1995 formosa 0.74 0.48 1.92 ley_info_publica 0 12 0.0169153728250497 0.0100763942932367 0.00299205658974594 0.0121467613636298 0.00302862201328259
183 1997 formosa 0.59 0.48 1.92 ley_info_publica 0 14 -0.00331590736481609 0.0106404186711848 0.00357980686139849 0.0196952253548771 0.00365101085191496
184 1999 formosa 0.59 0.39 1.64 ley_info_publica 0 16 0.00865300759855246 0.00373343031509714 0.00295914059085346 0.0220652257311392 0.00302516038823729
185 2001 formosa 0.59 0.48 1.92 ley_info_publica 0 18 -0.00460490332647964 -0.0155944476594674 0.00352333979767232 0.0355947290472718 0.00365101085191496
186 2003 formosa 0.45 0.39 1.64 ley_info_publica 0 20 0.0227069667231052 0.00398466119886884 0.0042090465719239 0.0575720844119865 0.00445848150791622
187 2005 formosa 0.38 0.39 1.64 ley_info_publica 0 22 0.00395629275269159 0.00735386413094346 0.00494013575042191 0.0913374923173784 0.00541260397324837
188 2007 formosa 0.32 0.32 1.47 ley_info_publica 0 24 -0.0166337037419537 0.000562601917462647 0.0062655842947628 0.155593059652802 0.00732039952924812
189 2009 formosa 0.32 0.44 1.8 ley_info_publica 0 26 0.00410081315520957 -0.00602164952662717 0.00478846310605318 0.161007293730375 0.00562497666131397
190 2011 formosa 0.45 0.32 1.47 ley_info_publica 0 28 0.00219099484277788 -0.0151829601551136 0.00380794541362089 0.17312020181414 0.00452768143507868
191 1983 formosa 0.6 0.67 3 estatuto_pp 1 0 0.0054921395487631 2.95120564953124e-05 0.0171480668125287 0.224751834025358 0.00789821890493103
192 1983 formosa 0.6 0.67 2.27 juicio_politico 0 0 -0.00947208531030644 -0.0120332458362303 0.00462129078552023 0.00597446210558696 0.00464898315332691
193 1985 formosa 0.7 0.56 1.99 juicio_politico 0 2 0.00602794630266854 0.0128555407481571 0.0034584344533368 0.00606007244187579 0.00347945644973491
194 1987 formosa 0.91 0.5 1.92 juicio_politico 0 4 -0.011138132454231 -0.000166679706603039 0.00243636105522163 0.00578632768821379 0.0024504995040548
195 1989 formosa 0.91 0.48 2.71 juicio_politico 0 6 -0.0079909190503894 -0.00782642009862783 0.0156844697905603 0.0504230685091721 0.0164956070486398
196 1991 formosa 0.57 0.63 1.92 juicio_politico 0 8 0.00678423638146901 0.0104572387619392 0.00368346656779614 0.0160692760883387 0.00374313534206484
197 1993 formosa 0.74 0.48 1.92 juicio_politico 0 10 -0.0126926509978371 0.0059288593507669 0.00297579887218573 0.0175952035660678 0.00302862201328259
198 1995 formosa 0.74 0.48 1.92 juicio_politico 0 12 0.00233927369487338 0.00618183569679656 0.00295768726488492 0.0237001014738661 0.00302862201328259
199 1997 formosa 0.59 0.48 1.64 juicio_politico 0 14 0.00067276784500416 0.00194166987656334 0.00293041721908411 0.0318193024986048 0.00302516038823729
200 1999 formosa 0.59 0.39 1.92 juicio_politico 0 16 -0.0169859093149105 -0.00447622323055636 0.00346941667627311 0.0510175999749994 0.00365101085191496
201 2001 formosa 0.59 0.48 1.64 juicio_politico 0 18 -0.00607655643799437 -0.000763213547703556 0.00285772624655327 0.0569378210329997 0.00302516038823729
202 2003 formosa 0.45 0.39 1.64 juicio_politico 1 20 0.00454187612276179 0.00714209971398409 0.0108828038761834 0.10762432154762 0.00445848150791622
203 1983 corrientes 0.43 0.76 4.17 TC 0 0 -0.00996897944572744 -0.00262145532151118 0.00282573734598305 0.00676105801261581 0.00284490705082734
204 1985 corrientes 0.56 0.6 2.52 TC 0 2 -0.0100381362594464 -0.0035313958191537 0.00505780341878735 0.0164005808934889 0.00514143828846275
205 1987 corrientes 0.56 0.59 2.45 TC 0 4 0.00405070532983211 -0.0185417980180811 0.00485695193221891 0.0213443522664473 0.00496173470737373
206 1989 corrientes 0.63 0.64 2.77 TC 0 6 0.00220216239627468 0.0132867429238142 0.00709144217692786 0.0422103061191805 0.00739718140163956
207 1991 corrientes 0.63 0.62 2.6 TC 0 8 -0.00197636880350381 0.0115966181292065 0.00605611820174224 0.0488432049162246 0.00635926140285804
208 1993 corrientes 0.56 0.56 2.25 TC 0 10 0.00021147086005243 -0.003121115486514 0.00427739025790649 0.046762508188876 0.00448216226748777
209 1995 corrientes 0.63 0.62 2.6 TC 0 12 -0.0125623589771931 -0.0223837984894079 0.00583403115330376 0.0862040275947874 0.00635926140285804
210 1997 corrientes 0.95 0.64 2.77 TC 0 14 -0.020169409514403 0.00976928878673632 0.0160894289426944 0.305011415049921 0.0218275707491388
211 1999 corrientes 0.62 0.75 3.93 TC 1 16 -0.00232657512858569 -0.0106441317061737 0.0364726549309253 0.339197741143902 0.0188358231044359
212 1983 corrientes 0.43 0.76 4.17 CDM 0 0 -0.00367268441464562 0.0132222295250693 0.00281650302474728 0.010034342691762 0.00284490705082734
213 1985 corrientes 0.56 0.6 2.52 CDM 0 2 -0.00160879342090703 0.0109870287626531 0.00501837397463108 0.0242268911845326 0.00514143828846275
214 1987 corrientes 0.56 0.59 2.45 CDM 0 4 -0.00915889072722857 -0.00633706879155084 0.00480809543320254 0.0314543731104129 0.00496173470737373
215 1989 corrientes 0.63 0.64 2.77 CDM 0 6 -0.00584393086040485 -0.00799423382707336 0.00695539210468172 0.061581834815326 0.00739718140163956
216 1991 corrientes 0.63 0.62 2.6 CDM 0 8 -0.00943516041680665 0.00385722314977215 0.00592321414975967 0.0710330067171248 0.00635926140285804
217 1993 corrientes 0.56 0.56 2.25 CDM 0 10 -0.00761600047497772 0.0219085293517215 0.00418719429382941 0.068074688954557 0.00448216226748777
218 1995 corrientes 0.63 0.62 2.6 CDM 0 12 0.0124848593191251 -0.0176619804839146 0.00562231258520146 0.123169167687435 0.00635926140285804
219 1997 corrientes 0.95 0.64 2.77 CDM 0 14 -0.0286971007533664 -0.00414540677352321 0.014701525141876 0.3952226444312 0.0218275707491388
220 1999 corrientes 0.62 0.75 3.93 CDM 0 16 -0.00714026454970291 0.0020792455825211 0.0122135156972061 0.433217358415995 0.0188358231044359
221 2001 corrientes 0.78 0.59 2.47 CDM 0 18 0.000249795404605989 0.0038946282663378 0.00551947388669943 0.288255695615995 0.0073635211906965
222 2003 corrientes 0.29 0.52 2.09 CDM 0 20 -0.00665120909529626 0.0190483233698893 0.00350393420083304 0.251429911385378 0.00450557854636907
223 2005 corrientes 0.8 0.36 1.55 CDM 0 22 0.00100160906043216 -0.0018495448240975 0.00126510352508889 0.126709622136268 0.00143600302760256
224 2007 corrientes 0.63 0.56 2.25 CDM 1 24 0.00676235340266076 0.00494308855764799 0.00857770240712865 0.389479211059936 0.00465827544742197
225 1983 corrientes 0.43 0.76 4.17 FI 0 0 0.00149910685190077 0.0284815003530587 0.00282389074839236 0.00741476392939868 0.00284490705082734
226 1985 corrientes 0.56 0.6 2.52 FI 0 2 0.00339968770619777 -0.0124726365271963 0.00504987465477217 0.0179694408401064 0.00514143828846275
227 1987 corrientes 0.56 0.59 2.45 FI 0 4 -0.00272054456108008 0.009795375443242 0.0048470997198744 0.023374888805792 0.00496173470737373
228 1989 corrientes 0.63 0.64 2.77 FI 1 6 -0.00214993098543419 0.00140982034855952 0.0192010840600841 0.0461322970795781 0.00739718140163956
229 1983 corrientes 0.43 0.76 4.17 ley_etica 0 0 0.00210919306597038 0.0174366776879323 0.00284110192517066 0.00133841724161014 0.00284490705082734
230 1985 corrientes 0.56 0.6 2.52 ley_etica 0 2 -0.000704495386008208 0.00625838312159569 0.00512464235617368 0.00327212455392811 0.00514143828846275
231 1987 corrientes 0.56 0.59 2.45 ley_etica 0 4 -0.0150814664434747 0.00499835565840762 0.00494056524315336 0.00427567263700332 0.00496173470737373
232 1989 corrientes 0.63 0.64 2.77 ley_etica 0 6 -0.0163271285766831 0.016579198061739 0.00733382241460703 0.00860218061484356 0.00739718140163956
233 1991 corrientes 0.63 0.62 2.6 ley_etica 0 8 -0.0143141123885338 0.00245873002106927 0.00629592833424031 0.0100091106763694 0.00635926140285804
234 1993 corrientes 0.56 0.56 2.25 ley_etica 0 10 -0.00421378810612801 0.018195545841561 0.00443948993129204 0.00956608947688737 0.00448216226748777
235 1995 corrientes 0.63 0.62 2.6 ley_etica 0 12 0.0129560783949185 0.017857790301864 0.00624435311841257 0.0182346846909066 0.00635926140285804
236 1997 corrientes 0.95 0.64 2.77 ley_etica 0 14 -0.00276239935907983 0.0087048307175014 0.0201587601219116 0.0795349445595923 0.0218275707491388
237 1999 corrientes 0.62 0.75 3.93 ley_etica 0 16 -6.71246828419167e-05 -0.00214254690220381 0.0171839102854455 0.0917870434883575 0.0188358231044359
238 2001 corrientes 0.78 0.59 2.47 ley_etica 0 18 -0.00568769240795809 0.0231996897329419 0.00699860064891451 0.0508280192088801 0.0073635211906965
239 2003 corrientes 0.29 0.52 2.09 ley_etica 0 20 0.00902149500478486 0.00447738522078897 0.00431800691512873 0.0425223724251417 0.00450557854636907
240 2005 corrientes 0.8 0.36 1.55 ley_etica 0 22 0.00641554358416751 -0.0178840064794386 0.00140922511768468 0.0188235875823224 0.00143600302760256
241 2007 corrientes 0.63 0.56 2.25 ley_etica 0 24 -0.00378145693595796 0.00801669494778852 0.00430964809459051 0.0777890517867961 0.00465827544742197
242 2009 corrientes 0.63 0.66 2.96 ley_etica 1 26 -0.00613654373516677 0.00137676632722306 0.0199481957566794 0.17693381399773 0.00875891917057952
243 1983 corrientes 0.43 0.76 4.17 transparencia_fiscal 0 0 -4.75490269614905e-05 -0.0136606252877415 0.00284212713443124 0.000977633165883617 0.00284490705082734
244 1985 corrientes 0.56 0.6 2.52 transparencia_fiscal 0 2 0.0163488196817073 -0.011708145555669 0.00512915806052638 0.00239133802383592 0.00514143828846275
245 1987 corrientes 0.56 0.59 2.45 transparencia_fiscal 0 4 -0.017174846695732 -0.00102340689495609 0.00494625052388206 0.00312559934964653 0.00496173470737373
246 1989 corrientes 0.63 0.64 2.77 transparencia_fiscal 0 6 -0.0127455656841625 -0.0113603902804416 0.00735075712101687 0.00629571840036275 0.00739718140163956
247 1991 corrientes 0.63 0.62 2.6 transparencia_fiscal 0 8 0.00181716331404371 -0.00757995790918969 0.00631282978008941 0.00732820335484301 0.00635926140285804
248 1993 corrientes 0.56 0.56 2.25 transparencia_fiscal 0 10 -0.00655823328666316 0.00226415337085763 0.00445088331595924 0.00700300453373482 0.00448216226748777
249 1995 corrientes 0.63 0.62 2.6 transparencia_fiscal 0 12 0.0035273716704533 0.00501857124199936 0.00627473891480172 0.0133803620328075 0.00635926140285804
250 1997 corrientes 0.95 0.64 2.77 transparencia_fiscal 0 14 0.000716286502151004 0.00381017692193876 0.0205698362202068 0.0593481424196139 0.0218275707491388
251 1999 corrientes 0.62 0.75 3.93 transparencia_fiscal 0 16 -0.0122539660059816 0.00901373550660137 0.0175848517783558 0.0687227039597401 0.0188358231044359
252 2001 corrientes 0.78 0.59 2.47 transparencia_fiscal 0 18 -0.000672897497317596 -0.0184494382535717 0.00709158428371891 0.0376294721251862 0.0073635211906965
253 2003 corrientes 0.29 0.52 2.09 transparencia_fiscal 0 20 -0.0132954434541937 0.0166607765663226 0.00436626134876644 0.0314091896444481 0.00450557854636907
254 2005 corrientes 0.8 0.36 1.55 transparencia_fiscal 0 22 -0.00378580979731432 -0.00301799508820718 0.00141630147977769 0.0138146969250844 0.00143600302760256
255 2007 corrientes 0.63 0.56 2.25 transparencia_fiscal 0 24 0.00795695188274271 0.00717187376440863 0.0043957046971829 0.0580174450422343 0.00465827544742197
256 2009 corrientes 0.63 0.66 2.96 transparencia_fiscal 0 26 0.0116809019198151 -0.00139774664627783 0.00764768267122443 0.135669831827048 0.00875891917057952
257 2011 corrientes 0.56 0.56 2.25 transparencia_fiscal 0 28 -0.0370545721699329 -0.00514648054140726 0.00406301480062892 0.098180319199791 0.00448216226748777
258 1983 corrientes 0.43 0.76 4.17 ley_info_publica 0 0 0.00940680684710694 0.0023263429100072 0.00283988470703232 0.00176694074844776 0.00284490705082734
259 1985 corrientes 0.56 0.6 2.52 ley_info_publica 0 2 0.00312169140369921 0.0180517087402137 0.00511929007736072 0.00431709030994471 0.00514143828846275
260 1987 corrientes 0.56 0.59 2.45 ley_info_publica 0 4 -0.00536464652122221 -0.000722469851555725 0.00493383268468785 0.00563931213340371 0.00496173470737373
261 1989 corrientes 0.63 0.64 2.77 ley_info_publica 0 6 -0.00648608353162354 -0.010425907581934 0.00731384453937518 0.011329971693423 0.00739718140163956
262 1991 corrientes 0.63 0.62 2.6 ley_info_publica 0 8 -0.00200753600108767 0.0213254430017952 0.00627601436112021 0.0131771158538967 0.00635926140285804
263 1993 corrientes 0.56 0.56 2.25 ley_info_publica 0 10 -0.00095682777199405 0.0122057945825452 0.00442606054921444 0.0125956571001673 0.00448216226748777
264 1995 corrientes 0.63 0.62 2.6 ley_info_publica 0 12 0.0125000984654929 0.00164356925265611 0.00620880857232311 0.023943217752204 0.00635926140285804
265 1997 corrientes 0.95 0.64 2.77 ley_info_publica 0 14 -0.0143221044307634 0.0131010686316076 0.0197024312933013 0.102431839949691 0.0218275707491388
266 1999 corrientes 0.62 0.75 3.93 ley_info_publica 0 16 0.0121332210055965 0.0101721314842509 0.0167433415867263 0.117759878952345 0.0188358231044359
267 2001 corrientes 0.78 0.59 2.47 ley_info_publica 0 18 -0.00130107383396748 0.00799729712740526 0.00689284940756256 0.0660536844719902 0.0073635211906965
268 2003 corrientes 0.29 0.52 2.09 ley_info_publica 0 20 -0.00424769025047351 0.0119298230541113 0.00426273518962078 0.055405288444042 0.00450557854636907
269 2005 corrientes 0.8 0.36 1.55 ley_info_publica 0 22 0.0161709763871669 0.012875506630284 0.0014009516244899 0.0247118414954344 0.00143600302760256
270 2007 corrientes 0.63 0.56 2.25 ley_info_publica 1 24 -0.000456599066522996 0.0147312711814141 0.0114547814659356 0.100238065872315 0.00465827544742197
271 1983 corrientes 0.43 0.76 4.17 estatuto_pp 1 0 -0.00592632772751142 0.000294947255755459 0.00706582729682294 0.0902602887785062 0.00284490705082734
272 1983 corrientes 0.43 0.76 4.17 juicio_politico 0 0 -0.00422698141166407 0.00994902598139764 0.00283501728443012 0.00348236202025783 0.00284490705082734
273 1985 corrientes 0.56 0.6 2.52 juicio_politico 0 2 -0.00462919087105279 -0.00855346594905077 0.00509798624365975 0.00848725541166051 0.00514143828846275
274 1987 corrientes 0.56 0.59 2.45 juicio_politico 0 4 -0.0146311308082315 0.00365164211828178 0.00490709895486245 0.0110724960164727 0.00496173470737373
275 1989 corrientes 0.63 0.64 2.77 juicio_politico 0 6 0.00354733941986064 -0.000880427220227373 0.00723532450472621 0.0221238248345461 0.00739718140163956
276 1991 corrientes 0.63 0.62 2.6 juicio_politico 0 8 0.00613002460338858 0.022175228923984 0.00619800364217462 0.0256849919796748 0.00635926140285804
277 1993 corrientes 0.56 0.56 2.25 juicio_politico 0 10 -0.000936159292060918 -0.0104619111159027 0.00437339779316296 0.0245653449526157 0.00448216226748777
278 1995 corrientes 0.63 0.62 2.6 juicio_politico 0 12 -0.0127352636276956 -0.000145903989113765 0.00607219519704766 0.0461920523291547 0.00635926140285804
279 1997 corrientes 0.95 0.64 2.77 juicio_politico 0 14 -0.00607483136718801 0.0101979378527576 0.0181614050059007 0.183875145635414 0.0218275707491388
280 1999 corrientes 0.62 0.75 3.93 juicio_politico 0 16 0.00299258580859242 0.00159345566986641 0.0152900440936809 0.208558637220541 0.0188358231044359
281 2001 corrientes 0.78 0.59 2.47 juicio_politico 0 18 -0.0111122261099394 0.00129041949123531 0.00651441351451781 0.122521055252869 0.0073635211906965
282 2003 corrientes 0.29 0.52 2.09 juicio_politico 0 20 -0.00147192104402504 -0.00171188341636427 0.0040614299420728 0.103781191896243 0.00450557854636907
283 2005 corrientes 0.8 0.36 1.55 juicio_politico 0 22 0.00822439713004834 0.0276331739357102 0.00136919576252771 0.0476400461657131 0.00143600302760256
284 2007 corrientes 0.63 0.56 2.25 juicio_politico 1 24 -0.000387075447316494 -0.0136637085671117 0.010573573689587 0.180287463835515 0.00465827544742197
285 1983 chaco 1 0.5 2 TC 0 0 -0.0137036906237243 -0.0119512155647224 0.00270313025945667 0.0220348221509696 0.00276335433060985
286 1985 chaco 1 0.5 2 TC 0 2 0.0117435959811266 -0.0205353114038979 0.00268266750452828 0.0296336419687503 0.00276335433060985
287 1987 chaco 1 0.5 2 TC 0 4 -0.00784227977385171 -0.00286012967537177 0.00265567491523858 0.039746451230013 0.00276335433060985
288 1989 chaco 0.75 0.59 2.46 TC 0 6 -0.0150324135439211 -0.0159285251696859 0.00608666354524002 0.122564055313782 0.00688031288912835
289 1991 chaco 0.82 0.63 2.72 TC 0 8 -0.00320913963750954 -0.0185302712549711 0.00984846633202432 0.26007986625356 0.0127737924477253
290 1993 chaco 0.75 0.66 2.91 TC 0 10 0.00618958930820569 0.00599095768042283 0.00981051899976183 0.339389076629795 0.0137748470837908
291 1995 chaco 0.69 0.62 2.61 TC 1 12 -0.00294535180933041 -0.00938669039504286 0.0154192179417842 0.27381689226773 0.00745907597036984
292 1983 chaco 1 0.5 2.03 FI 0 0 0.00214090794569636 0.0166479414971819 0.00293670024559774 0.0262678933982647 0.00301486326924148
293 1985 chaco 1 0.5 1.75 FI 0 2 0.000507701936629225 0.00510940962648039 0.00131597451913153 0.015957808628521 0.00133714304106413
294 1987 chaco 1 0.5 1.88 FI 0 4 0.0172774483341161 0.00047660313806053 0.00189069567612675 0.0310636350296258 0.00195034928877164
295 1989 chaco 0.75 0.59 2 FI 1 6 0.00720806381541862 0.00172163865299823 0.00857584251716329 0.0701085380262029 0.00338399775721467
296 1983 chaco 1 0.5 2 ley_etica 0 0 -0.00464561994162211 0.011811167187685 0.00275117694619154 0.00441647842787418 0.00276335433060985
297 1985 chaco 1 0.5 2 ley_etica 0 2 -0.00719869538179435 -0.00685339163306082 0.00274688797288453 0.00597665432253261 0.00276335433060985
298 1987 chaco 1 0.5 2 ley_etica 0 4 0.018519549196618 0.0152544538769908 0.00274110677751476 0.00808350674174243 0.00276335433060985
299 1989 chaco 0.75 0.59 2.46 ley_etica 0 6 -0.0186808630624342 0.00395113015281311 0.00669859969335761 0.0267656254203686 0.00688031288912835
300 1991 chaco 0.82 0.63 2.72 ley_etica 0 8 -0.0122193621416038 0.0201772953341301 0.0119731951096296 0.0647251965788477 0.0127737924477253
301 1993 chaco 0.75 0.66 2.91 ley_etica 0 10 -0.00142000909924692 -0.00486173433769234 0.0125658904349426 0.0918582192067807 0.0137748470837908
302 1995 chaco 0.69 0.62 2.61 ley_etica 0 12 0.00743177006042016 0.00656944405516329 0.00696100554262355 0.0691076035563694 0.00745907597036984
303 1997 chaco 0.38 0.51 2.03 ley_etica 0 14 0.00468955990993628 0.00623987070654009 0.0042524959633632 0.0572676809332255 0.00450313480230684
304 1999 chaco 0.61 0.43 1.75 ley_etica 0 16 -0.00123469468979186 0.00268517971334174 0.00295489218375152 0.0539454398298003 0.00311867304100428
305 2001 chaco 0.83 0.47 1.88 ley_etica 0 18 -0.000113576670053505 -0.00356051940261294 0.00235955674174459 0.058370226879913 0.00250138357048222
306 2003 chaco 0.83 0.5 2 ley_etica 1 20 -0.0080087553174112 -0.00324473889534146 0.00782989435405934 0.0962727615277506 0.00317155428668227
307 1983 chaco 1 0.5 2 transparencia_fiscal 0 0 -0.00544346430823032 0.00765598272481213 0.00275444680323974 0.00322865391189352 0.00276335433060985
308 1985 chaco 1 0.5 2 transparencia_fiscal 0 2 -0.00675663081711933 -0.0119729079789171 0.00275130190776608 0.00437105832617869 0.00276335433060985
309 1987 chaco 1 0.5 2 transparencia_fiscal 0 4 0.00106125631127423 0.0147264828395856 0.00274705655452855 0.00591528433845928 0.00276335433060985
310 1989 chaco 0.75 0.59 2.46 transparencia_fiscal 0 6 -0.0012387695669772 0.00135677417789239 0.0067461929716464 0.0196857874084289 0.00688031288912835
311 1991 chaco 0.82 0.63 2.72 transparencia_fiscal 0 8 0.00550630091200398 0.0067117842251322 0.0121739055410329 0.0481008360145217 0.0127737924477253
312 1993 chaco 0.75 0.66 2.91 transparencia_fiscal 0 10 0.0206022436672778 -0.00462922810913527 0.012859295113756 0.0687773489800414 0.0137748470837908
313 1995 chaco 0.69 0.62 2.61 transparencia_fiscal 0 12 0.00724336778397407 -0.0129161967388989 0.00708522773752059 0.051419525739914 0.00745907597036984
314 1997 chaco 0.38 0.51 2.03 transparencia_fiscal 0 14 0.00704259865093987 0.00755653059496089 0.00431588331027092 0.0424717664969411 0.00450313480230684
315 1999 chaco 0.61 0.43 1.75 transparencia_fiscal 0 16 0.00101652867800421 0.0112377393268403 0.00299647358106074 0.0399714797040189 0.00311867304100428
316 2001 chaco 0.83 0.47 1.88 transparencia_fiscal 0 18 0.00540196798474395 -0.0101168563853551 0.00239537900902769 0.0433025385235422 0.00250138357048222
317 2003 chaco 0.83 0.5 2 transparencia_fiscal 0 20 -0.00410299845198882 -0.0091669531747953 0.00295072517465408 0.0721708169230313 0.00317155428668227
318 2005 chaco 0.48 0.51 2.03 transparencia_fiscal 0 22 0.00886348098180705 -0.00724629223705884 0.00373225849705315 0.123047441376148 0.00422095323234636
319 2007 chaco 1 0.49 1.97 transparencia_fiscal 0 24 -0.00756312133347526 -0.0015194819545948 0.00228623736890914 0.102428683081836 0.00253282702217584
320 2009 chaco 0.68 0.49 1.97 transparencia_fiscal 0 26 -0.00974022863260208 -0.00143206188404752 0.00290534829746038 0.174389872009644 0.0034588741674216
321 2011 chaco 0.61 0.43 1.75 transparencia_fiscal 0 28 -0.0172707874241479 0.00265193156326488 0.00254018167950118 0.205171998146981 0.00311867304100428
322 1983 chaco 1 0.5 2 ley_info_publica 0 0 0.00100354438660862 0.00605295374438327 0.00274730523468811 0.00582476239277245 0.00276335433060985
323 1985 chaco 1 0.5 2 ley_info_publica 0 2 0.00490406463633516 -0.000817240386994744 0.00274166879361904 0.00787849521101248 0.00276335433060985
324 1987 chaco 1 0.5 2 ley_info_publica 0 4 -0.00244625588046428 0.00522090959110777 0.00273408461894197 0.0106485905587621 0.00276335433060985
325 1989 chaco 0.75 0.59 2.46 ley_info_publica 0 6 -0.00529938208333862 -0.0264670588029457 0.00664333852590039 0.035049501805117 0.00688031288912835
326 1991 chaco 0.82 0.63 2.72 ley_info_publica 0 8 0.00310168043713741 0.00142110311891787 0.01174760170995 0.0837464970166999 0.0127737924477253
327 1993 chaco 0.75 0.66 2.91 ley_info_publica 0 10 -0.0082403176373792 0.00337519128825904 0.0122435059786565 0.117848581748218 0.0137748470837908
328 1995 chaco 0.69 0.62 2.61 ley_info_publica 0 12 0.00188439544478182 0.00545509454006452 0.00682189781501088 0.0892938368415064 0.00745907597036984
329 1997 chaco 0.38 0.51 2.03 ley_info_publica 0 14 -0.00892360768863949 -0.00788122083656548 0.00418079891546393 0.0742714206067013 0.00450313480230684
330 1999 chaco 0.61 0.43 1.75 ley_info_publica 0 16 0.0115035768906633 -0.00351388702918117 0.00290772669538343 0.0700360324334453 0.00311867304100428
331 2001 chaco 0.83 0.47 1.88 ley_info_publica 0 18 -0.0145944836876249 0.00518299047318411 0.00231907628684122 0.0756750528111743 0.00250138357048222
332 2003 chaco 0.83 0.5 2 ley_info_publica 0 20 0.00251939861637821 0.00261297238916125 0.00280352975116337 0.123342530306557 0.00317155428668227
333 2005 chaco 0.48 0.51 2.03 ley_info_publica 0 22 0.0204635671478466 0.0146368844031075 0.00344746271846499 0.20242247043361 0.00422095323234636
334 2007 chaco 1 0.49 1.97 ley_info_publica 0 24 -0.000542678839564742 0.00540495944179772 0.0021345119237505 0.171098065578767 0.00253282702217584
335 2009 chaco 0.68 0.49 1.97 ley_info_publica 1 26 0.00867506372004528 0.0340998405747641 0.00713133816189423 0.276444253675639 0.0034588741674216
336 1983 chaco 1 0.5 2 estatuto_pp 0 0 -0.00110574726650931 -0.0177011669937898 0.00215810360763846 0.247215402344807 0.00276335433060985
337 1985 chaco 1 0.5 2 estatuto_pp 0 2 0.00723483454705636 0.0196093249952661 0.00203080818612755 0.308011443912576 0.00276335433060985
338 1987 chaco 1 0.5 2 estatuto_pp 1 4 0.0077093726216589 0.00811903386379767 0.00515599483333768 0.376285195973642 0.00276335433060985
year provincia raes_index_electoral effective_number_of_parties_electoral balance_of_parties_electoral institution event raes_index_mandates effective_number_of_parties_mandates balance_of_parties_mandates
1983 misiones 0.50 2.00 0.93 DF 0 0.5 2 0.93 CORRIENTES rae ef poc str balance pod nej str.
1985 misiones 0.48 1.92 0.74 DF 0 0.51 2.04 0.5 1983-1985 0,76 4,17 0,73 CORRIENTES 3,25
1987 misiones 0.50 2.00 1.00 DF 0 0.5 1.98 0.86 1985-1987 0,60 2,52 0,56 CORRIENTES 1,86
1989 misiones 0.54 2.15 0.54 DF 0 0.52 2.09 0.59 1987-1989 0,60 2,50 0,56 CORRIENTES 1,86
1991 misiones 0.50 1.98 0.86 DF 0 0.52 2.07 0.54 1989-1991 0,62 2,66 0,63 CORRIENTES 2,00
1993 misiones 0.50 1.98 0.86 DF 0 0.5 1.98 0.86 1991-1993 0,63 2,70 0,70 CORRIENTES 2,17
1995 misiones 0.50 2.00 1.00 DF 0 0.6 2.52 0.59 1993-1995 0,59 2,43 0,63 CORRIENTES 2,00
1997 misiones 0.50 2.00 1.00 DF 0 0.5 2 1 1995-1997 0,59 2,43 0,63 CORRIENTES 2,00
1999 misiones 0.50 1.98 0.86 DF 0 0.5 2 0.93 1997-1999 0,74 3,80 0,85 CORRIENTES 3,25
2001 misiones 0.59 2.44 0.58 DF 0 0.55 2.2 0.5 1999-2001 0,71 3,45 0,62 CORRIENTES 2,36
2003 misiones 0.59 2.42 0.57 DF 0 0.69 3.23 0.62 2001-2003 0,59 2,47 0,70 CORRIENTES 2,17
2005 misiones 0.57 2.30 0.37 DF 0 0.59 2.45 0.4 2003-2005 0,58 2,40 0,45 CORRIENTES 1,86
2007 misiones 0.68 3.13 0.50 DF 0 0.65 2.82 0.36 2005-2007 0,45 1,83 0,61 CORRIENTES 1,53
2009 misiones 0.61 2.53 0.29 DF 0 0.67 3.07 0.31 2007-2009 0,47 1,89 0,33 CORRIENTES 1,44
2011 misiones 0.19 1.23 0.10 DF 0 0.43 1.74 0.15 2009-2011 0,63 2,70 0,70 CORRIENTES 2,17
1983 formosa 0.67 3.00 0.60 DF 0 0.67 3 0.6 2011-2013 0,63 2,70 0,70 CORRIENTES 2,17
1985 formosa 0.66 2.92 0.69 DF 0 0.6 2.53 0.69 1983-1985 0,50 2,00 1,00 CHACO 2,00
1987 formosa 0.59 2.46 0.91 DF 0 0.53 2.13 0.63 1985-1989 0,50 2,00 1,00 CHACO 2,00
1989 formosa 0.55 2.22 0.74 DF 0 0.49 1.97 0.82 1987-1991 0,55 2,25 0,63 CHACO 2,00
1991 formosa 0.70 3.30 0.69 DF 0 0.57 2.33 0.57 1989-1993 0,65 2,86 0,75 CHACO 2,29
1993 formosa 0.55 2.22 0.74 DF 1 0.57 2.33 0.57 1991-1995 0,65 2,83 0,82 CHACO 2,46
1983 corrientes 0.76 4.17 0.73 DF 0 0.76 4.17 0.73 1993-1997 0,65 2,86 0,75 CHACO 2,29
1985 corrientes 0.60 2.52 0.56 DF 0 0.6 2.52 0.56 1995-1999 0,60 2,50 0,69 CHACO 2,13
1987 corrientes 0.59 2.45 0.56 DF 0 0.6 2.5 0.56 1997-2001 0,47 1,89 0,38 CHACO 1,52
1989 corrientes 0.64 2.77 0.70 DF 0 0.62 2.66 0.63 1999-2003 0,45 1,82 0,61 CHACO 1,52
1991 corrientes 0.62 2.60 0.70 DF 0 0.63 2.7 0.7 2001-2005 0,49 1,97 0,83 CHACO 1,78
1993 corrientes 0.56 2.25 0.56 DF 0 0.59 2.43 0.63 2003-2007 0,52 2,07 0,52 CHACO 1,78
1995 corrientes 0.62 2.60 0.70 DF 0 0.59 2.43 0.63 2005-2009 0,51 2,02 0,47 CHACO 1,68
1997 corrientes 0.64 2.77 0.45 DF 0 0.74 3.8 0.85 2007-2011 0,50 2,00 1,00 CHACO 2,00
1999 corrientes 0.75 3.93 0.85 DF 0 0.71 3.45 0.62 2009-2013 0,47 1,88 0,68 CHACO 1,60
2001 corrientes 0.59 2.47 0.70 DF 0 0.59 2.47 0.7 2011-2013 0,45 1,82 0,61 CHACO 1,52
2003 corrientes 0.52 2.09 0.44 DF 0 0.58 2.4 0.45 1983-1985 0,50 2,00 0,93 MISIONES 1,90
2005 corrientes 0.36 1.55 0.38 DF 0 0.45 1.83 0.61 1985-1989 0,51 2,04 0,50 MISIONES 1,74
2007 corrientes 0.56 2.25 0.56 DF 0 0.47 1.89 0.33 1987-1991 0,50 1,98 0,86 MISIONES 1,82
2009 corrientes 0.66 2.96 0.87 DF 1 0.63 2.7 0.7 1989-1993 0,52 2,09 0,59 MISIONES 1,90
1983 chaco 0.50 2.00 1.00 DF 0 0.5 2 1 1991-1995 0,52 2,07 0,54 MISIONES 1,82
1985 chaco 0.50 2.00 1.00 DF 0 0.5 2 1 1993-1997 0,50 1,98 0,86 MISIONES 1,82
1987 chaco 0.50 2.00 1.00 DF 0 0.55 2.25 0.63 1995-1999 0,60 2,52 0,59 MISIONES 1,90
1989 chaco 0.59 2.46 0.63 DF 0 0.65 2.86 0.75 1997-2001 0,50 2,00 1,00 MISIONES 2,00
1991 chaco 0.63 2.72 0.75 DF 0 0.65 2.83 0.82 1999-2003 0,50 2,00 0,93 MISIONES 1,90
1993 chaco 0.66 2.91 0.89 DF 0 0.65 2.86 0.75 2001-2005 0,55 2,20 0,50 MISIONES 2,00
1995 chaco 0.62 2.61 0.63 DF 1 0.6 2.5 0.69 2003-2007 0,69 3,23 0,62 MISIONES 2,69
1983 misiones 0.50 2.00 0.93 CDM 0 0.5 2 0.93 2005-2009 0,59 2,45 0,40 MISIONES 1,75
1985 misiones 0.48 1.92 0.74 CDM 0 0.51 2.04 0.5 2007-2011 0,65 2,82 0,36 MISIONES 1,90
1987 misiones 0.50 2.00 1.00 CDM 0 0.5 1.98 0.86 2009-2013 0,67 3,07 0,31 MISIONES 1,90
1989 misiones 0.54 2.15 0.54 CDM 0 0.52 2.09 0.59 2011-2013 0,43 1,74 0,15 MISIONES 1,33
1991 misiones 0.50 1.98 0.86 CDM 0 0.52 2.07 0.54 1983-1985 0,67 3,00 0,60 FORMOSA 2,31
1993 misiones 0.50 1.98 0.86 CDM 0 0.5 1.98 0.86 1985-1989 0,60 2,53 0,69 FORMOSA 2,14
1995 misiones 0.50 2.00 1.00 CDM 0 0.6 2.52 0.59 1987-1991 0,53 2,13 0,63 FORMOSA 2,00
1997 misiones 0.50 2.00 1.00 CDM 0 0.5 2 1 1989-1993 0,49 1,97 0,82 FORMOSA 1,76
1999 misiones 0.50 1.98 0.86 CDM 1 0.5 2 0.93 1991-1995 0,57 2,33 0,57 FORMOSA 1,88
1983 misiones 0.50 2.00 0.93 FI 0 0.5 2 0.93 1993-1997 0,57 2,33 0,57 FORMOSA 1,88
1985 misiones 0.48 1.92 0.74 FI 0 0.51 2.04 0.5 1995-1999 0,48 1,92 0,74 FORMOSA 1,67
1987 misiones 0.50 2.00 1.00 FI 0 0.5 1.98 0.86 1997-2001 0,48 1,92 0,74 FORMOSA 1,67
1989 misiones 0.54 2.15 0.54 FI 0 0.52 2.09 0.59 1999-2003 0,44 1,80 0,58 FORMOSA 1,50
1991 misiones 0.50 1.98 0.86 FI 0 0.52 2.07 0.54 2001-2005 0,44 1,80 0,58 FORMOSA 1,50
1993 misiones 0.50 1.98 0.86 FI 0 0.5 1.98 0.86 2003-2007 0,44 1,80 0,58 FORMOSA 1,50
1995 misiones 0.50 2.00 1.00 FI 0 0.6 2.52 0.59 2005-2009 0,39 1,64 0,45 FORMOSA 1,36
1997 misiones 0.50 2.00 1.00 FI 0 0.5 2 1 2007-2011 0,36 1,56 0,38 FORMOSA 1,30
1999 misiones 0.50 1.98 0.86 FI 0 0.5 2 0.93 2009-2013 0,32 1,47 0,32 FORMOSA 1,25
2001 misiones 0.59 2.44 0.58 FI 0 0.55 2.2 0.5 2011-2013 0,39 1,64 0,45 FORMOSA 1,36
2003 misiones 0.59 2.42 0.57 FI 0 0.69 3.23 0.62
2005 misiones 0.57 2.30 0.37 FI 0 0.59 2.45 0.4
2007 misiones 0.68 3.13 0.50 FI 0 0.65 2.82 0.36
2009 misiones 0.61 2.53 0.29 FI 0 0.67 3.07 0.31
2011 misiones 0.19 1.23 0.10 FI 0 0.43 1.74 0.15
1983 misiones 0.50 2.00 0.93 ley_etica 0 0.5 2 0.93
1985 misiones 0.48 1.92 0.74 ley_etica 0 0.51 2.04 0.5
1987 misiones 0.50 2.00 1.00 ley_etica 0 0.5 1.98 0.86
1989 misiones 0.54 2.15 0.54 ley_etica 0 0.52 2.09 0.59
1991 misiones 0.50 1.98 0.86 ley_etica 0 0.52 2.07 0.54
1993 misiones 0.50 1.98 0.86 ley_etica 0 0.5 1.98 0.86
1995 misiones 0.50 2.00 1.00 ley_etica 0 0.6 2.52 0.59
1997 misiones 0.50 2.00 1.00 ley_etica 0 0.5 2 1
1999 misiones 0.50 1.98 0.86 ley_etica 0 0.5 2 0.93
2001 misiones 0.59 2.44 0.58 ley_etica 0 0.55 2.2 0.5
2003 misiones 0.59 2.42 0.57 ley_etica 0 0.69 3.23 0.62
2005 misiones 0.57 2.30 0.37 ley_etica 0 0.59 2.45 0.4
2007 misiones 0.68 3.13 0.50 ley_etica 0 0.65 2.82 0.36
2009 misiones 0.61 2.53 0.29 ley_etica 0 0.67 3.07 0.31
2011 misiones 0.19 1.23 0.10 ley_etica 0 0.43 1.74 0.15
1983 misiones 0.50 2.00 0.93 transparencia_fiscal 0 0.5 2 0.93
1985 misiones 0.48 1.92 0.74 transparencia_fiscal 0 0.51 2.04 0.5
1987 misiones 0.50 2.00 1.00 transparencia_fiscal 0 0.5 1.98 0.86
1989 misiones 0.54 2.15 0.54 transparencia_fiscal 0 0.52 2.09 0.59
1991 misiones 0.50 1.98 0.86 transparencia_fiscal 0 0.52 2.07 0.54
1993 misiones 0.50 1.98 0.86 transparencia_fiscal 0 0.5 1.98 0.86
1995 misiones 0.50 2.00 1.00 transparencia_fiscal 0 0.6 2.52 0.59
1997 misiones 0.50 2.00 1.00 transparencia_fiscal 0 0.5 2 1
1999 misiones 0.50 1.98 0.86 transparencia_fiscal 1 0.5 2 0.93
1983 misiones 0.50 2.00 0.93 ley_info_publica 0 0.5 2 0.93
1985 misiones 0.48 1.92 0.74 ley_info_publica 0 0.51 2.04 0.5
1987 misiones 0.50 2.00 1.00 ley_info_publica 0 0.5 1.98 0.86
1989 misiones 0.54 2.15 0.54 ley_info_publica 0 0.52 2.09 0.59
1991 misiones 0.50 1.98 0.86 ley_info_publica 0 0.52 2.07 0.54
1993 misiones 0.50 1.98 0.86 ley_info_publica 0 0.5 1.98 0.86
1995 misiones 0.50 2.00 1.00 ley_info_publica 0 0.6 2.52 0.59
1997 misiones 0.50 2.00 1.00 ley_info_publica 0 0.5 2 1
1999 misiones 0.50 1.98 0.86 ley_info_publica 1 0.5 2 0.93
1983 misiones 0.50 2.00 0.93 estatuto_pp 0 0.5 2 0.93
1985 misiones 0.48 1.92 0.74 estatuto_pp 0 0.51 2.04 0.5
1987 misiones 0.50 2.00 1.00 estatuto_pp 0 0.5 1.98 0.86
1989 misiones 0.54 2.15 0.54 estatuto_pp 0 0.52 2.09 0.59
1991 misiones 0.50 1.98 0.86 estatuto_pp 0 0.52 2.07 0.54
1993 misiones 0.50 1.98 0.86 estatuto_pp 0 0.5 1.98 0.86
1995 misiones 0.50 2.00 1.00 estatuto_pp 0 0.6 2.52 0.59
1997 misiones 0.50 2.00 1.00 estatuto_pp 0 0.5 2 1
1999 misiones 0.50 1.98 0.86 estatuto_pp 0 0.5 2 0.93
2001 misiones 0.59 2.44 0.58 estatuto_pp 0 0.55 2.2 0.5
2003 misiones 0.59 2.42 0.57 estatuto_pp 1 0.69 3.23 0.62
1983 misiones 0.50 2.00 0.93 juicio_politico 0 0.5 2 0.93
1985 misiones 0.48 1.92 0.74 juicio_politico 0 0.51 2.04 0.5
1987 misiones 0.50 2.00 1.00 juicio_politico 0 0.5 1.98 0.86
1989 misiones 0.54 2.15 0.54 juicio_politico 0 0.52 2.09 0.59
1991 misiones 0.50 1.98 0.86 juicio_politico 0 0.52 2.07 0.54
1993 misiones 0.50 1.98 0.86 juicio_politico 0 0.5 1.98 0.86
1995 misiones 0.50 2.00 1.00 juicio_politico 0 0.6 2.52 0.59
1997 misiones 0.50 2.00 1.00 juicio_politico 0 0.5 2 1
1999 misiones 0.50 1.98 0.86 juicio_politico 0 0.5 2 0.93
2001 misiones 0.59 2.44 0.58 juicio_politico 0 0.55 2.2 0.5
2003 misiones 0.59 2.42 0.57 juicio_politico 0 0.69 3.23 0.62
2005 misiones 0.57 2.30 0.37 juicio_politico 0 0.59 2.45 0.4
2007 misiones 0.68 3.13 0.50 juicio_politico 0 0.65 2.82 0.36
2009 misiones 0.61 2.53 0.29 juicio_politico 0 0.67 3.07 0.31
2011 misiones 0.19 1.23 0.10 juicio_politico 0 0.43 1.74 0.15
1983 formosa 0.67 3.00 0.60 CDM 0 0.67 3 0.6
1985 formosa 0.66 2.92 0.69 CDM 0 0.6 2.53 0.69
1987 formosa 0.59 2.46 0.91 CDM 0 0.53 2.13 0.63
1989 formosa 0.55 2.22 0.74 CDM 0 0.49 1.97 0.82
1991 formosa 0.70 3.30 0.69 CDM 0 0.57 2.33 0.57
1993 formosa 0.55 2.22 0.74 CDM 0 0.57 2.33 0.57
1995 formosa 0.55 2.22 0.74 CDM 0 0.48 1.92 0.74
1997 formosa 0.55 2.22 0.74 CDM 0 0.48 1.92 0.74
1999 formosa 0.42 1.73 0.45 CDM 1 0.44 1.8 0.58
1983 formosa 0.67 3.00 0.60 FI 0 0.67 3 0.6
1985 formosa 0.66 2.92 0.69 FI 0 0.6 2.53 0.69
1987 formosa 0.59 2.46 0.91 FI 0 0.53 2.13 0.63
1989 formosa 0.55 2.22 0.74 FI 0 0.49 1.97 0.82
1991 formosa 0.70 3.30 0.69 FI 0 0.57 2.33 0.57
1993 formosa 0.55 2.22 0.74 FI 0 0.57 2.33 0.57
1995 formosa 0.55 2.22 0.74 FI 0 0.48 1.92 0.74
1997 formosa 0.55 2.22 0.74 FI 0 0.48 1.92 0.74
1999 formosa 0.42 1.73 0.45 FI 0 0.44 1.8 0.58
2001 formosa 0.55 2.22 0.74 FI 0 0.44 1.8 0.58
2003 formosa 0.42 1.73 0.45 FI 0 0.44 1.8 0.58
2005 formosa 0.42 1.73 0.45 FI 0 0.39 1.64 0.45
2007 formosa 0.34 1.51 0.32 FI 0 0.36 1.56 0.38
2009 formosa 0.49 1.97 0.58 FI 0 0.32 1.47 0.32
2011 formosa 0.34 1.51 0.32 FI 0 0.39 1.64 0.45
1983 formosa 0.67 3.00 0.60 ley_etica 0 0.67 3 0.6
1985 formosa 0.66 2.92 0.69 ley_etica 0 0.6 2.53 0.69
1987 formosa 0.59 2.46 0.91 ley_etica 0 0.53 2.13 0.63
1989 formosa 0.55 2.22 0.74 ley_etica 0 0.49 1.97 0.82
1991 formosa 0.70 3.30 0.69 ley_etica 0 0.57 2.33 0.57
1993 formosa 0.55 2.22 0.74 ley_etica 0 0.57 2.33 0.57
1995 formosa 0.55 2.22 0.74 ley_etica 0 0.48 1.92 0.74
1997 formosa 0.55 2.22 0.74 ley_etica 0 0.48 1.92 0.74
1999 formosa 0.42 1.73 0.45 ley_etica 0 0.44 1.8 0.58
2001 formosa 0.55 2.22 0.74 ley_etica 0 0.44 1.8 0.58
2003 formosa 0.42 1.73 0.45 ley_etica 0 0.44 1.8 0.58
2005 formosa 0.42 1.73 0.45 ley_etica 0 0.39 1.64 0.45
2007 formosa 0.34 1.51 0.32 ley_etica 0 0.36 1.56 0.38
2009 formosa 0.49 1.97 0.58 ley_etica 0 0.32 1.47 0.32
2011 formosa 0.34 1.51 0.32 ley_etica 0 0.39 1.64 0.45
1983 formosa 0.67 3.00 0.60 transparencia_fiscal 0 0.67 3 0.6
1985 formosa 0.66 2.92 0.69 transparencia_fiscal 0 0.6 2.53 0.69
1987 formosa 0.59 2.46 0.91 transparencia_fiscal 0 0.53 2.13 0.63
1989 formosa 0.55 2.22 0.74 transparencia_fiscal 0 0.49 1.97 0.82
1991 formosa 0.70 3.30 0.69 transparencia_fiscal 0 0.57 2.33 0.57
1993 formosa 0.55 2.22 0.74 transparencia_fiscal 0 0.57 2.33 0.57
1995 formosa 0.55 2.22 0.74 transparencia_fiscal 0 0.48 1.92 0.74
1997 formosa 0.55 2.22 0.74 transparencia_fiscal 0 0.48 1.92 0.74
1999 formosa 0.42 1.73 0.45 transparencia_fiscal 1 0.44 1.8 0.58
1983 formosa 0.67 3.00 0.60 ley_info_publica 0 0.67 3 0.6
1985 formosa 0.66 2.92 0.69 ley_info_publica 0 0.6 2.53 0.69
1987 formosa 0.59 2.46 0.91 ley_info_publica 0 0.53 2.13 0.63
1989 formosa 0.55 2.22 0.74 ley_info_publica 0 0.49 1.97 0.82
1991 formosa 0.70 3.30 0.69 ley_info_publica 0 0.57 2.33 0.57
1993 formosa 0.55 2.22 0.74 ley_info_publica 0 0.57 2.33 0.57
1995 formosa 0.55 2.22 0.74 ley_info_publica 0 0.48 1.92 0.74
1997 formosa 0.55 2.22 0.74 ley_info_publica 0 0.48 1.92 0.74
1999 formosa 0.42 1.73 0.45 ley_info_publica 0 0.44 1.8 0.58
2001 formosa 0.55 2.22 0.74 ley_info_publica 0 0.44 1.8 0.58
2003 formosa 0.42 1.73 0.45 ley_info_publica 0 0.44 1.8 0.58
2005 formosa 0.42 1.73 0.45 ley_info_publica 0 0.39 1.64 0.45
2007 formosa 0.34 1.51 0.32 ley_info_publica 0 0.36 1.56 0.38
2009 formosa 0.49 1.97 0.58 ley_info_publica 0 0.32 1.47 0.32
2011 formosa 0.34 1.51 0.32 ley_info_publica 0 0.39 1.64 0.45
1983 formosa 0.67 3.00 0.60 estatuto_pp 1 0.67 3 0.6
1983 formosa 0.67 3.00 0.60 juicio_politico 0 0.67 3 0.6
1985 formosa 0.66 2.92 0.69 juicio_politico 0 0.6 2.53 0.69
1987 formosa 0.59 2.46 0.91 juicio_politico 0 0.53 2.13 0.63
1989 formosa 0.55 2.22 0.74 juicio_politico 0 0.49 1.97 0.82
1991 formosa 0.70 3.30 0.69 juicio_politico 0 0.57 2.33 0.57
1993 formosa 0.55 2.22 0.74 juicio_politico 0 0.57 2.33 0.57
1995 formosa 0.55 2.22 0.74 juicio_politico 0 0.48 1.92 0.74
1997 formosa 0.55 2.22 0.74 juicio_politico 0 0.48 1.92 0.74
1999 formosa 0.42 1.73 0.45 juicio_politico 0 0.44 1.8 0.58
2001 formosa 0.55 2.22 0.74 juicio_politico 0 0.44 1.8 0.58
2003 formosa 0.42 1.73 0.45 juicio_politico 1 0.44 1.8 0.58
1983 corrientes 0.76 4.17 0.73 TC 0 0.76 4.17 0.73
1985 corrientes 0.60 2.52 0.56 TC 0 0.6 2.52 0.56
1987 corrientes 0.59 2.45 0.56 TC 0 0.6 2.5 0.56
1989 corrientes 0.64 2.77 0.70 TC 0 0.62 2.66 0.63
1991 corrientes 0.62 2.60 0.70 TC 0 0.63 2.7 0.7
1993 corrientes 0.56 2.25 0.56 TC 0 0.59 2.43 0.63
1995 corrientes 0.62 2.60 0.70 TC 0 0.59 2.43 0.63
1997 corrientes 0.64 2.77 0.45 TC 0 0.74 3.8 0.85
1999 corrientes 0.75 3.93 0.85 TC 1 0.71 3.45 0.62
1983 corrientes 0.76 4.17 0.73 CDM 0 0.76 4.17 0.73
1985 corrientes 0.60 2.52 0.56 CDM 0 0.6 2.52 0.56
1987 corrientes 0.59 2.45 0.56 CDM 0 0.6 2.5 0.56
1989 corrientes 0.64 2.77 0.70 CDM 0 0.62 2.66 0.63
1991 corrientes 0.62 2.60 0.70 CDM 0 0.63 2.7 0.7
1993 corrientes 0.56 2.25 0.56 CDM 0 0.59 2.43 0.63
1995 corrientes 0.62 2.60 0.70 CDM 0 0.59 2.43 0.63
1997 corrientes 0.64 2.77 0.45 CDM 0 0.74 3.8 0.85
1999 corrientes 0.75 3.93 0.85 CDM 0 0.71 3.45 0.62
2001 corrientes 0.59 2.47 0.70 CDM 0 0.59 2.47 0.7
2003 corrientes 0.52 2.09 0.44 CDM 0 0.58 2.4 0.45
2005 corrientes 0.36 1.55 0.38 CDM 0 0.45 1.83 0.61
2007 corrientes 0.56 2.25 0.56 CDM 1 0.47 1.89 0.33
1983 corrientes 0.76 4.17 0.73 FI 0 0.76 4.17 0.73
1985 corrientes 0.60 2.52 0.56 FI 0 0.6 2.52 0.56
1987 corrientes 0.59 2.45 0.56 FI 0 0.6 2.5 0.56
1989 corrientes 0.64 2.77 0.70 FI 1 0.62 2.66 0.63
1983 corrientes 0.76 4.17 0.73 ley_etica 0 0.76 4.17 0.73
1985 corrientes 0.60 2.52 0.56 ley_etica 0 0.6 2.52 0.56
1987 corrientes 0.59 2.45 0.56 ley_etica 0 0.6 2.5 0.56
1989 corrientes 0.64 2.77 0.70 ley_etica 0 0.62 2.66 0.63
1991 corrientes 0.62 2.60 0.70 ley_etica 0 0.63 2.7 0.7
1993 corrientes 0.56 2.25 0.56 ley_etica 0 0.59 2.43 0.63
1995 corrientes 0.62 2.60 0.70 ley_etica 0 0.59 2.43 0.63
1997 corrientes 0.64 2.77 0.45 ley_etica 0 0.74 3.8 0.85
1999 corrientes 0.75 3.93 0.85 ley_etica 0 0.71 3.45 0.62
2001 corrientes 0.59 2.47 0.70 ley_etica 0 0.59 2.47 0.7
2003 corrientes 0.52 2.09 0.44 ley_etica 0 0.58 2.4 0.45
2005 corrientes 0.36 1.55 0.38 ley_etica 0 0.45 1.83 0.61
2007 corrientes 0.56 2.25 0.56 ley_etica 0 0.47 1.89 0.33
2009 corrientes 0.66 2.96 0.87 ley_etica 1 0.63 2.7 0.7
1983 corrientes 0.76 4.17 0.73 transparencia_fiscal 0 0.76 4.17 0.73
1985 corrientes 0.60 2.52 0.56 transparencia_fiscal 0 0.6 2.52 0.56
1987 corrientes 0.59 2.45 0.56 transparencia_fiscal 0 0.6 2.5 0.56
1989 corrientes 0.64 2.77 0.70 transparencia_fiscal 0 0.62 2.66 0.63
1991 corrientes 0.62 2.60 0.70 transparencia_fiscal 0 0.63 2.7 0.7
1993 corrientes 0.56 2.25 0.56 transparencia_fiscal 0 0.59 2.43 0.63
1995 corrientes 0.62 2.60 0.70 transparencia_fiscal 0 0.59 2.43 0.63
1997 corrientes 0.64 2.77 0.45 transparencia_fiscal 0 0.74 3.8 0.85
1999 corrientes 0.75 3.93 0.85 transparencia_fiscal 0 0.71 3.45 0.62
2001 corrientes 0.59 2.47 0.70 transparencia_fiscal 0 0.59 2.47 0.7
2003 corrientes 0.52 2.09 0.44 transparencia_fiscal 0 0.58 2.4 0.45
2005 corrientes 0.36 1.55 0.38 transparencia_fiscal 0 0.45 1.83 0.61
2007 corrientes 0.56 2.25 0.56 transparencia_fiscal 0 0.47 1.89 0.33
2009 corrientes 0.66 2.96 0.87 transparencia_fiscal 0 0.63 2.7 0.7
2011 corrientes 0.56 2.25 0.56 transparencia_fiscal 0 0.63 2.7 0.7
1983 corrientes 0.76 4.17 0.73 ley_info_publica 0 0.76 4.17 0.73
1985 corrientes 0.60 2.52 0.56 ley_info_publica 0 0.6 2.52 0.56
1987 corrientes 0.59 2.45 0.56 ley_info_publica 0 0.6 2.5 0.56
1989 corrientes 0.64 2.77 0.70 ley_info_publica 0 0.62 2.66 0.63
1991 corrientes 0.62 2.60 0.70 ley_info_publica 0 0.63 2.7 0.7
1993 corrientes 0.56 2.25 0.56 ley_info_publica 0 0.59 2.43 0.63
1995 corrientes 0.62 2.60 0.70 ley_info_publica 0 0.59 2.43 0.63
1997 corrientes 0.64 2.77 0.45 ley_info_publica 0 0.74 3.8 0.85
1999 corrientes 0.75 3.93 0.85 ley_info_publica 0 0.71 3.45 0.62
2001 corrientes 0.59 2.47 0.70 ley_info_publica 0 0.59 2.47 0.7
2003 corrientes 0.52 2.09 0.44 ley_info_publica 0 0.58 2.4 0.45
2005 corrientes 0.36 1.55 0.38 ley_info_publica 0 0.45 1.83 0.61
2007 corrientes 0.56 2.25 0.56 ley_info_publica 1 0.47 1.89 0.33
1983 corrientes 0.76 4.17 0.73 estatuto_pp 1 0.76 4.17 0.73
1983 corrientes 0.76 4.17 0.73 juicio_politico 0 0.76 4.17 0.73
1985 corrientes 0.60 2.52 0.56 juicio_politico 0 0.6 2.52 0.56
1987 corrientes 0.59 2.45 0.56 juicio_politico 0 0.6 2.5 0.56
1989 corrientes 0.64 2.77 0.70 juicio_politico 0 0.62 2.66 0.63
1991 corrientes 0.62 2.60 0.70 juicio_politico 0 0.63 2.7 0.7
1993 corrientes 0.56 2.25 0.56 juicio_politico 0 0.59 2.43 0.63
1995 corrientes 0.62 2.60 0.70 juicio_politico 0 0.59 2.43 0.63
1997 corrientes 0.64 2.77 0.45 juicio_politico 0 0.74 3.8 0.85
1999 corrientes 0.75 3.93 0.85 juicio_politico 0 0.71 3.45 0.62
2001 corrientes 0.59 2.47 0.70 juicio_politico 0 0.59 2.47 0.7
2003 corrientes 0.52 2.09 0.44 juicio_politico 0 0.58 2.4 0.45
2005 corrientes 0.36 1.55 0.38 juicio_politico 0 0.45 1.83 0.61
2007 corrientes 0.56 2.25 0.56 juicio_politico 1 0.47 1.89 0.33
1983 chaco 0.50 2.00 1.00 TC 0 0.5 2 1
1985 chaco 0.50 2.00 1.00 TC 0 0.5 2 1
1987 chaco 0.50 2.00 1.00 TC 0 0.55 2.25 0.63
1989 chaco 0.59 2.46 0.63 TC 0 0.65 2.86 0.75
1991 chaco 0.63 2.72 0.75 TC 0 0.65 2.83 0.82
1993 chaco 0.66 2.91 0.89 TC 0 0.65 2.86 0.75
1995 chaco 0.62 2.61 0.63 TC 1 0.6 2.5 0.69
1983 chaco 0.51 2.03 0.43 FI 0 0.5 2 1
1985 chaco 0.43 1.75 0.54 FI 0 0.5 2 1
1987 chaco 0.47 1.88 0.68 FI 0 0.55 2.25 0.63
1989 chaco 0.50 2.00 1.00 FI 1 0.65 2.86 0.75
1983 chaco 0.50 2.00 1.00 ley_etica 0 0.5 2 1
1985 chaco 0.50 2.00 1.00 ley_etica 0 0.5 2 1
1987 chaco 0.50 2.00 1.00 ley_etica 0 0.55 2.25 0.63
1989 chaco 0.59 2.46 0.63 ley_etica 0 0.65 2.86 0.75
1991 chaco 0.63 2.72 0.75 ley_etica 0 0.65 2.83 0.82
1993 chaco 0.66 2.91 0.89 ley_etica 0 0.65 2.86 0.75
1995 chaco 0.62 2.61 0.63 ley_etica 0 0.6 2.5 0.69
1997 chaco 0.51 2.03 0.43 ley_etica 0 0.47 1.89 0.38
1999 chaco 0.43 1.75 0.54 ley_etica 0 0.45 1.82 0.61
2001 chaco 0.47 1.88 0.68 ley_etica 0 0.49 1.97 0.83
2003 chaco 0.50 2.00 1.00 ley_etica 1 0.52 2.07 0.52
1983 chaco 0.50 2.00 1.00 transparencia_fiscal 0 0.5 2 1
1985 chaco 0.50 2.00 1.00 transparencia_fiscal 0 0.5 2 1
1987 chaco 0.50 2.00 1.00 transparencia_fiscal 0 0.55 2.25 0.63
1989 chaco 0.59 2.46 0.63 transparencia_fiscal 0 0.65 2.86 0.75
1991 chaco 0.63 2.72 0.75 transparencia_fiscal 0 0.65 2.83 0.82
1993 chaco 0.66 2.91 0.89 transparencia_fiscal 0 0.65 2.86 0.75
1995 chaco 0.62 2.61 0.63 transparencia_fiscal 0 0.6 2.5 0.69
1997 chaco 0.51 2.03 0.43 transparencia_fiscal 0 0.47 1.89 0.38
1999 chaco 0.43 1.75 0.54 transparencia_fiscal 0 0.45 1.82 0.61
2001 chaco 0.47 1.88 0.68 transparencia_fiscal 0 0.49 1.97 0.83
2003 chaco 0.50 2.00 1.00 transparencia_fiscal 0 0.52 2.07 0.52
2005 chaco 0.51 2.03 0.43 transparencia_fiscal 0 0.51 2.02 0.47
2007 chaco 0.49 1.97 0.83 transparencia_fiscal 0 0.5 2 1
2009 chaco 0.49 1.97 0.83 transparencia_fiscal 0 0.47 1.88 0.68
2011 chaco 0.43 1.75 0.54 transparencia_fiscal 0 0.45 1.82 0.61
1983 chaco 0.50 2.00 1.00 ley_info_publica 0 0.5 2 1
1985 chaco 0.50 2.00 1.00 ley_info_publica 0 0.5 2 1
1987 chaco 0.50 2.00 1.00 ley_info_publica 0 0.55 2.25 0.63
1989 chaco 0.59 2.46 0.63 ley_info_publica 0 0.65 2.86 0.75
1991 chaco 0.63 2.72 0.75 ley_info_publica 0 0.65 2.83 0.82
1993 chaco 0.66 2.91 0.89 ley_info_publica 0 0.65 2.86 0.75
1995 chaco 0.62 2.61 0.63 ley_info_publica 0 0.6 2.5 0.69
1997 chaco 0.51 2.03 0.43 ley_info_publica 0 0.47 1.89 0.38
1999 chaco 0.43 1.75 0.54 ley_info_publica 0 0.45 1.82 0.61
2001 chaco 0.47 1.88 0.68 ley_info_publica 0 0.49 1.97 0.83
2003 chaco 0.50 2.00 1.00 ley_info_publica 0 0.52 2.07 0.52
2005 chaco 0.51 2.03 0.43 ley_info_publica 0 0.51 2.02 0.47
2007 chaco 0.49 1.97 0.83 ley_info_publica 0 0.5 2 1
2009 chaco 0.49 1.97 0.83 ley_info_publica 1 0.47 1.88 0.68
1983 chaco 0.50 2.00 1.00 estatuto_pp 0 0.5 2 1
1985 chaco 0.50 2.00 1.00 estatuto_pp 0 0.5 2 1
1987 chaco 0.50 2.00 1.00 estatuto_pp 1 0.55 2.25 0.63
<!DOCTYPE html>
<html>
<head>
<title>Institutions Argentina</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="initial-scale=1.0, user-scalable=no"/>
<!--<script src="d3.v3.js"></script>-->
<script src="http://d3js.org/d3.v3.min.js"></script>
<style type="text/css">
body {
font: 18px sans-serif;
}
.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.contour-line {
fill: none;
stroke: lightblue;
stroke-width: 1px;
}
.event {
fill: none;
stroke: green;
stroke-width: 3px
}
.noevent {
fill: red;
stroke: red;
}
</style>
</head>
<body>
<div id="chart"></div>
<script>
var margin = {top: 20, right: 20, bottom: 30, left: 50},
width = 500 - margin.left - margin.right,
height = 500 - margin.top - margin.bottom;
var x = d3.scale.linear()
.range([0, width])
.domain([0.15,1.025]);
var y = d3.scale.linear()
.range([height, 0])
.domain([0.5,4.5]);
var xAxis = d3.svg.axis()
.scale(x)
.orient("bottom");
var yAxis = d3.svg.axis()
.scale(y)
.orient("left");
var svg = d3.select("#chart").append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
.call(xAxis)
.append("text")
.attr("x", x(1))
.attr("dx", ".71em")
.attr("dy", "-.5em")
.style("text-anchor", "end")
.text("Balance of parties");
svg.append("g")
.attr("class", "y axis")
.call(yAxis)
.append("text")
.attr("transform", "rotate(-90)")
.attr("y", 6)
.attr("dy", ".71em")
.style("text-anchor", "end")
.text("Effective number of parties");
//contour lines based on http://vis.supstat.com/2012/11/contour-plots-with-d3-and-r/
var line = d3.svg.line()
.x(function(d) { return x(d.x); })
.y(function(d) { return y(d.y); })
.interpolate("basis") //https://github.com/mbostock/d3/wiki/SVG-Shapes#line_interpolate
.tension(1);
d3.csv("data.csv", function(error, data) {
d3.json("contour_lines.json", function(er,cl) {
svg.selectAll(".contour-line")
.data(cl.map(function(d) {
return d3.range(d.x.length).map(function(i) {
return {x: d.x[i], y: d.y[i]};
});
}))
.enter().append("svg:path")
.attr("d", line)
.attr("class","contour-line")
})
svg.selectAll(".event")
.data(data)
.enter().append("circle")
.attr("cx", function(d) {
return x(parseFloat(d.balance_of_parties) + parseFloat(d.random1)/2)
})
.attr("cy", function(d) {
return y(parseFloat(d.effective_number_of_parties) + parseFloat(d.random2)*2)
})
.attr("r", function(d) {
return Math.round(parseFloat(d.event_minus_controled)*100 + 1);
})
.attr("class","point noevent")
.filter(function(d) { return (d.event == 1) })
.attr("class","point event")
.attr("r", function(d) {
return Math.min(30,Math.round(parseFloat(d.event_minus_controled)*100 + 1));
})
})
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="500" height="500" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs><style type="text/css"><![CDATA[
text { font-style: normal; font-variant: normal; font-weight: normal; font-size: 18px; line-height: normal; font-family: sans-serif; }
.axis path, .axis line { fill: none; stroke: rgb(0, 0, 0); shape-rendering: crispedges; }
.contour-line { fill: none; stroke: rgb(173, 216, 230); stroke-width: 1px; }
.event { fill: none; stroke: rgb(0, 128, 0); stroke-width: 2px; }
.noevent { fill: rgb(255, 0, 0); stroke: rgb(255, 0, 0); }]]></style></defs><g transform="translate(50,20)"><g class="x axis" transform="translate(0,450)"><g class="tick" transform="translate(24.571428571428584,0)" style="opacity: 1;"><line y2="6" x2="0"></line><text y="9" x="0" dy=".71em" style="text-anchor: middle;">0.2</text></g><g class="tick" transform="translate(73.71428571428572,0)" style="opacity: 1;"><line y2="6" x2="0"></line><text y="9" x="0" dy=".71em" style="text-anchor: middle;">0.3</text></g><g class="tick" transform="translate(122.85714285714288,0)" style="opacity: 1;"><line y2="6" x2="0"></line><text y="9" x="0" dy=".71em" style="text-anchor: middle;">0.4</text></g><g class="tick" transform="translate(172,0)" style="opacity: 1;"><line y2="6" x2="0"></line><text y="9" x="0" dy=".71em" style="text-anchor: middle;">0.5</text></g><g class="tick" transform="translate(221.14285714285717,0)" style="opacity: 1;"><line y2="6" x2="0"></line><text y="9" x="0" dy=".71em" style="text-anchor: middle;">0.6</text></g><g class="tick" transform="translate(270.2857142857143,0)" style="opacity: 1;"><line y2="6" x2="0"></line><text y="9" x="0" dy=".71em" style="text-anchor: middle;">0.7</text></g><g class="tick" transform="translate(319.4285714285715,0)" style="opacity: 1;"><line y2="6" x2="0"></line><text y="9" x="0" dy=".71em" style="text-anchor: middle;">0.8</text></g><g class="tick" transform="translate(368.5714285714286,0)" style="opacity: 1;"><line y2="6" x2="0"></line><text y="9" x="0" dy=".71em" style="text-anchor: middle;">0.9</text></g><g class="tick" transform="translate(417.7142857142858,0)" style="opacity: 1;"><line y2="6" x2="0"></line><text y="9" x="0" dy=".71em" style="text-anchor: middle;">1.0</text></g><path class="domain" d="M0,6V0H430V6"></path><text x="417.7142857142858" dx=".71em" dy="-.5em" style="text-anchor: end;">Balance of parties</text></g><g class="y axis"><g class="tick" transform="translate(0,450)" style="opacity: 1;"><line x2="-6" y2="0"></line><text x="-9" y="0" dy=".32em" style="text-anchor: end;">0.5</text></g><g class="tick" transform="translate(0,393.75)" style="opacity: 1;"><line x2="-6" y2="0"></line><text x="-9" y="0" dy=".32em" style="text-anchor: end;">1.0</text></g><g class="tick" transform="translate(0,337.5)" style="opacity: 1;"><line x2="-6" y2="0"></line><text x="-9" y="0" dy=".32em" style="text-anchor: end;">1.5</text></g><g class="tick" transform="translate(0,281.25)" style="opacity: 1;"><line x2="-6" y2="0"></line><text x="-9" y="0" dy=".32em" style="text-anchor: end;">2.0</text></g><g class="tick" transform="translate(0,225)" style="opacity: 1;"><line x2="-6" y2="0"></line><text x="-9" y="0" dy=".32em" style="text-anchor: end;">2.5</text></g><g class="tick" transform="translate(0,168.75)" style="opacity: 1;"><line x2="-6" y2="0"></line><text x="-9" y="0" dy=".32em" style="text-anchor: end;">3.0</text></g><g class="tick" transform="translate(0,112.5)" style="opacity: 1;"><line x2="-6" y2="0"></line><text x="-9" y="0" dy=".32em" style="text-anchor: end;">3.5</text></g><g class="tick" transform="translate(0,56.25)" style="opacity: 1;"><line x2="-6" y2="0"></line><text x="-9" y="0" dy=".32em" style="text-anchor: end;">4.0</text></g><g class="tick" transform="translate(0,0)" style="opacity: 1;"><line x2="-6" y2="0"></line><text x="-9" y="0" dy=".32em" style="text-anchor: end;">4.5</text></g><path class="domain" d="M-6,0H0V450H-6"></path><text transform="rotate(-90)" y="6" dy=".71em" style="text-anchor: end;">Effective number of parties</text></g><circle cx="384.82188468340286" cy="282.36235221442575" r="2" class="point noevent"></circle><circle cx="347.7750057520138" cy="282.09846491884764" r="2" class="point noevent"></circle><circle cx="351.66739220337104" cy="265.324576928824" r="2" class="point noevent"></circle><circle cx="214.20621698139146" cy="281.04519567080285" r="2" class="point noevent"></circle><circle cx="351.6394723567274" cy="283.9222133560066" r="2" class="point noevent"></circle><circle cx="347.06478121536855" cy="284.775896302197" r="2" class="point noevent"></circle><circle cx="382.70263554414913" cy="280.36791932428747" r="2" class="point noevent"></circle><circle cx="418.2010352093013" cy="285.11451459730114" r="2" class="point noevent"></circle><circle cx="385.21860625086066" cy="236.66176312760496" r="2" class="point noevent"></circle><circle cx="169.5236101057572" cy="22.12711972809933" r="2" class="point noevent"></circle><circle cx="369.3849141276057" cy="234.38620028861644" r="2" class="point noevent"></circle><circle cx="94.078295674317" cy="248.73051353440334" r="2" class="point noevent"></circle><circle cx="121.08694689273462" cy="155.73950422007812" r="2" class="point noevent"></circle><circle cx="104.54395231876637" cy="222.0652411011315" r="2" class="point noevent"></circle><circle cx="54.67093616926452" cy="365.4866396635235" r="7" class="point event"></circle><circle cx="220.92154119869883" cy="169.1725449385071" r="2" class="point noevent"></circle><circle cx="269.1716141015784" cy="251.4241350629381" r="2" class="point noevent"></circle><circle cx="368.73715247120424" cy="281.30540201952" r="2" class="point noevent"></circle><circle cx="376.1593263569416" cy="291.40169649848565" r="2" class="point noevent"></circle><circle cx="209.30800878454994" cy="198.6642759189597" r="2" class="point noevent"></circle><circle cx="283.8792604855861" cy="290.2848606972856" r="7" class="point event"></circle><circle cx="141.54721583396278" cy="34.13043455585597" r="2" class="point noevent"></circle><circle cx="202.34574054276064" cy="222.4479199533622" r="2" class="point noevent"></circle><circle cx="200.41188207059943" cy="229.73477377670176" r="2" class="point noevent"></circle><circle cx="235.3675335402313" cy="195.47991483781252" r="2" class="point noevent"></circle><circle cx="236.44887034878107" cy="213.38490415732306" r="2" class="point noevent"></circle><circle cx="201.41130865644791" cy="250.02888473653084" r="2" class="point noevent"></circle><circle cx="231.9683107445326" cy="216.85497730161953" r="2" class="point noevent"></circle><circle cx="392.2660220266549" cy="193.93447087370038" r="2" class="point noevent"></circle><circle cx="228.61889532232834" cy="66.12843255196833" r="2" class="point noevent"></circle><circle cx="308.444147530728" cy="226.220744980501" r="2" class="point noevent"></circle><circle cx="68.54634233737983" cy="272.4616096072117" r="2" class="point noevent"></circle><circle cx="321.5349480987424" cy="331.99080709875153" r="2" class="point noevent"></circle><circle cx="234.94221406743245" cy="253.76222452204638" r="2" class="point noevent"></circle><circle cx="231.5146431831696" cy="175.82660074003707" r="7" class="point event"></circle><circle cx="419.59201300801647" cy="281.2076710979428" r="2" class="point noevent"></circle><circle cx="418.8553923582847" cy="276.1528468901517" r="2" class="point noevent"></circle><circle cx="415.33547814378346" cy="282.4935902197109" r="2" class="point noevent"></circle><circle cx="296.5427167414111" cy="229.8501585334489" r="2" class="point noevent"></circle><circle cx="327.12334912209997" cy="199.62776605212412" r="2" class="point noevent"></circle><circle cx="297.62707928754037" cy="175.85625315429468" r="2" class="point noevent"></circle><circle cx="262.639700515768" cy="212.83760980368945" r="7" class="point event"></circle><circle cx="387.13494409992285" cy="281.9337978276325" r="2" class="point noevent"></circle><circle cx="347.541390885975" cy="284.5580624857829" r="2" class="point noevent"></circle><circle cx="350.6674016181494" cy="261.61252107163193" r="2" class="point noevent"></circle><circle cx="215.78707040048312" cy="281.73670300220033" r="2" class="point noevent"></circle><circle cx="349.41568862661063" cy="280.6515393635802" r="2" class="point noevent"></circle><circle cx="347.8876260699868" cy="284.6134594437543" r="2" class="point noevent"></circle><circle cx="384.3958630133792" cy="281.207445815014" r="2" class="point noevent"></circle><circle cx="418.1427735953164" cy="284.93584755826413" r="2" class="point noevent"></circle><circle cx="380.9092729392204" cy="230.40941545602453" r="7" class="point event"></circle><circle cx="385.5286092690397" cy="280.89196621906007" r="2" class="point noevent"></circle><circle cx="343.58705548212635" cy="281.23451626920564" r="2" class="point noevent"></circle><circle cx="353.1765162004341" cy="265.26619382739335" r="2" class="point noevent"></circle><circle cx="218.80938129931994" cy="285.97642558958387" r="2" class="point noevent"></circle><circle cx="345.43357011910143" cy="284.400339860186" r="2" class="point noevent"></circle><circle cx="350.08487573354137" cy="281.6028219515174" r="2" class="point noevent"></circle><circle cx="383.8945451429425" cy="282.92259826226825" r="2" class="point noevent"></circle><circle cx="417.2440315683261" cy="283.5313336550572" r="2" class="point noevent"></circle><circle cx="379.22018003377445" cy="230.91868320788737" r="2" class="point noevent"></circle><circle cx="171.95075957606656" cy="22.13423487324485" r="2" class="point noevent"></circle><circle cx="372.07830310256236" cy="231.98275672702292" r="7" class="point event"></circle><circle cx="383.67741158552536" cy="281.1479423566295" r="2" class="point noevent"></circle><circle cx="347.09440477828485" cy="284.94922301890836" r="2" class="point noevent"></circle><circle cx="344.81301030567715" cy="265.4711688804073" r="2" class="point noevent"></circle><circle cx="214.6517802602516" cy="282.4244581057919" r="2" class="point noevent"></circle><circle cx="350.56322742762393" cy="283.71596501118273" r="2" class="point noevent"></circle><circle cx="344.822112380271" cy="280.6170785757795" r="2" class="point noevent"></circle><circle cx="383.06818401179396" cy="281.9816497477867" r="2" class="point noevent"></circle><circle cx="414.2214845964292" cy="286.99739032283674" r="2" class="point noevent"></circle><circle cx="381.53818390284823" cy="229.572274911274" r="2" class="point noevent"></circle><circle cx="170.53868314943426" cy="20.77141194998063" r="2" class="point noevent"></circle><circle cx="367.4677169829776" cy="234.7628374157285" r="2" class="point noevent"></circle><circle cx="92.949307470467" cy="247.101364039293" r="2" class="point noevent"></circle><circle cx="120.4250930981538" cy="157.40527150178923" r="2" class="point noevent"></circle><circle cx="99.73394009104382" cy="219.9356965459107" r="2" class="point noevent"></circle><circle cx="50.67446042802412" cy="370.8649038537873" r="2" class="point noevent"></circle><circle cx="379.3416089055273" cy="279.7546961601551" r="2" class="point noevent"></circle><circle cx="349.8602528508558" cy="281.91342185912583" r="2" class="point noevent"></circle><circle cx="350.05795046258817" cy="263.9987703549932" r="2" class="point noevent"></circle><circle cx="216.94417485277413" cy="195.30517503866247" r="2" class="point noevent"></circle><circle cx="344.16735518487457" cy="214.58094406972197" r="2" class="point noevent"></circle><circle cx="350.18599926281166" cy="254.89587418511366" r="2" class="point noevent"></circle><circle cx="381.09658259986753" cy="210.99852530632947" r="2" class="point noevent"></circle><circle cx="416.49929527630127" cy="193.2805724649666" r="2" class="point noevent"></circle><circle cx="381.78619018715455" cy="61.34863797255633" r="7" class="point event"></circle><circle cx="385.4373183928866" cy="283.804391184333" r="2" class="point noevent"></circle><circle cx="345.4226427162507" cy="280.5668453175586" r="2" class="point noevent"></circle><circle cx="349.16244060014674" cy="264.72941672107845" r="2" class="point noevent"></circle><circle cx="217.1278831991635" cy="284.8528348584175" r="2" class="point noevent"></circle><circle cx="349.70725506482165" cy="285.6320354573618" r="2" class="point noevent"></circle><circle cx="348.77429065933524" cy="283.8984966219974" r="2" class="point noevent"></circle><circle cx="382.75763777731316" cy="286.54294347089024" r="2" class="point noevent"></circle><circle cx="419.2947620687133" cy="282.5517736057726" r="2" class="point noevent"></circle><circle cx="384.2499557521717" cy="232.68240464172695" r="2" class="point noevent"></circle><circle cx="171.4151518400548" cy="23.557715470893186" r="2" class="point noevent"></circle><circle cx="365.88207827922895" cy="232.3057226977395" r="2" class="point noevent"></circle><circle cx="91.65284487948973" cy="250.84235452498007" r="2" class="point noevent"></circle><circle cx="122.533079025041" cy="154.84594245398364" r="2" class="point noevent"></circle><circle cx="104.31312286645478" cy="219.825822699795" r="2" class="point noevent"></circle><circle cx="49.916580024189585" cy="365.8650817723503" r="7" class="point event"></circle><circle cx="386.04481161137824" cy="279.70956201428817" r="2" class="point noevent"></circle><circle cx="347.1285373794057" cy="284.0596344325041" r="2" class="point noevent"></circle><circle cx="346.01477912251784" cy="263.90143828739247" r="2" class="point noevent"></circle><circle cx="215.3245199096774" cy="284.3798295650434" r="2" class="point noevent"></circle><circle cx="349.9537771145072" cy="280.2323924540642" r="2" class="point noevent"></circle><circle cx="348.4266074655518" cy="278.94974184380465" r="2" class="point noevent"></circle><circle cx="384.4713133840378" cy="280.93113113364075" r="2" class="point noevent"></circle><circle cx="417.0695772174873" cy="283.9338771714922" r="2" class="point noevent"></circle><circle cx="386.5506534844913" cy="230.14025659929035" r="2" class="point noevent"></circle><circle cx="170.08828056963748" cy="16.491513789558894" r="2" class="point noevent"></circle><circle cx="370.0914609412044" cy="229.90825226105522" r="7" class="point event"></circle><circle cx="383.8494066683449" cy="280.1066177631385" r="2" class="point noevent"></circle><circle cx="351.2144254442639" cy="281.58190380504595" r="2" class="point noevent"></circle><circle cx="346.8034460947223" cy="263.21656352526657" r="2" class="point noevent"></circle><circle cx="218.16784083829023" cy="282.3670444327168" r="2" class="point noevent"></circle><circle cx="349.7569012983651" cy="284.73585639695466" r="2" class="point noevent"></circle><circle cx="350.2389520578633" cy="281.5545182780903" r="2" class="point noevent"></circle><circle cx="382.3665986388522" cy="277.3176941126057" r="2" class="point noevent"></circle><circle cx="418.79173248624426" cy="285.6185670510484" r="2" class="point noevent"></circle><circle cx="385.46748250202336" cy="232.4377221746643" r="2" class="point noevent"></circle><circle cx="175.14490639602974" cy="22.90314438064769" r="2" class="point noevent"></circle><circle cx="370.4505409973075" cy="233.65787700605185" r="2" class="point noevent"></circle><circle cx="87.8757443455598" cy="250.71511449168918" r="2" class="point noevent"></circle><circle cx="122.65208515665306" cy="151.1727327353567" r="2" class="point noevent"></circle><circle cx="102.21048172924885" cy="219.59361917595342" r="2" class="point noevent"></circle><circle cx="53.39536028910791" cy="366.46700852276507" r="2" class="point noevent"></circle><circle cx="218.42533055066838" cy="162.55049290595326" r="2" class="point noevent"></circle><circle cx="269.6269574577594" cy="253.14334492000597" r="2" class="point noevent"></circle><circle cx="373.81095568158736" cy="282.4367939795951" r="2" class="point noevent"></circle><circle cx="371.2495383895606" cy="292.8509160408735" r="2" class="point noevent"></circle><circle cx="205.01945434724985" cy="200.9764359512228" r="2" class="point noevent"></circle><circle cx="290.37827561765613" cy="288.73782246692787" r="2" class="point noevent"></circle><circle cx="284.946571797172" cy="287.7030138445152" r="2" class="point noevent"></circle><circle cx="210.38634621794347" cy="289.7569191415369" r="2" class="point noevent"></circle><circle cx="215.7860609922146" cy="323.7699366191586" r="7" class="point event"></circle><circle cx="217.72530043993737" cy="173.4239549229868" r="2" class="point noevent"></circle><circle cx="273.6581845244781" cy="249.6502812629952" r="2" class="point noevent"></circle><circle cx="369.0441045198445" cy="280.569054102697" r="2" class="point noevent"></circle><circle cx="372.8840215323827" cy="287.90807466908774" r="2" class="point noevent"></circle><circle cx="207.7008458626965" cy="197.04537964769185" r="2" class="point noevent"></circle><circle cx="293.155013294113" cy="289.0327091997219" r="2" class="point noevent"></circle><circle cx="291.1908958413352" cy="290.45188812733534" r="2" class="point noevent"></circle><circle cx="217.24896901569926" cy="288.69100109497447" r="2" class="point noevent"></circle><circle cx="216.46705061027123" cy="319.4112268995841" r="2" class="point noevent"></circle><circle cx="216.27344310072382" cy="292.99194444223787" r="2" class="point noevent"></circle><circle cx="148.32950044248437" cy="321.1784036826416" r="2" class="point noevent"></circle><circle cx="115.70186484824858" cy="322.4122148186883" r="2" class="point noevent"></circle><circle cx="81.27511969686523" cy="339.8009768655406" r="2" class="point noevent"></circle><circle cx="87.86475794379501" cy="299.26273345661116" r="2" class="point noevent"></circle><circle cx="149.51806112710588" cy="341.49940484485984" r="2" class="point noevent"></circle><circle cx="220.03592592610804" cy="166.40077344321224" r="2" class="point noevent"></circle><circle cx="269.8281274234108" cy="252.0485514117544" r="2" class="point noevent"></circle><circle cx="372.00774631955653" cy="284.3779323437921" r="2" class="point noevent"></circle><circle cx="372.69029242526193" cy="287.0948741856711" r="2" class="point noevent"></circle><circle cx="202.14039871032352" cy="202.3784755542525" r="2" class="point noevent"></circle><circle cx="291.58869188089875" cy="290.30370078385727" r="2" class="point noevent"></circle><circle cx="290.6460535514278" cy="293.32177181130305" r="2" class="point noevent"></circle><circle cx="215.8669798792249" cy="293.42225815738163" r="2" class="point noevent"></circle><circle cx="219.35808659692688" cy="317.14056506694016" r="2" class="point noevent"></circle><circle cx="217.94114228807635" cy="291.2943563016238" r="2" class="point noevent"></circle><circle cx="150.79530870987008" cy="324.1493225261321" r="2" class="point noevent"></circle><circle cx="113.63267026342402" cy="320.32404350718946" r="2" class="point noevent"></circle><circle cx="81.97761169850023" cy="337.6264834450286" r="2" class="point noevent"></circle><circle cx="84.70934890532176" cy="302.48712506466086" r="2" class="point noevent"></circle><circle cx="145.70186675653918" cy="341.10872778442985" r="2" class="point noevent"></circle><circle cx="218.84871432060834" cy="166.5207158756785" r="2" class="point noevent"></circle><circle cx="267.87001989363876" cy="249.11016890605302" r="2" class="point noevent"></circle><circle cx="372.03488703747206" cy="280.0904406326749" r="2" class="point noevent"></circle><circle cx="375.4726072593052" cy="293.03339899027463" r="2" class="point noevent"></circle><circle cx="204.30842786221822" cy="199.245471148156" r="2" class="point noevent"></circle><circle cx="288.4654054175484" cy="289.573004859449" r="2" class="point noevent"></circle><circle cx="290.404352898025" cy="287.68008328412657" r="2" class="point noevent"></circle><circle cx="218.3010511803616" cy="288.5594449747256" r="2" class="point noevent"></circle><circle cx="219.04444692023944" cy="320.97125342909465" r="7" class="point event"></circle><circle cx="221.8790186414943" cy="165.24720747876512" r="2" class="point noevent"></circle><circle cx="266.45006358200993" cy="251.8843397555384" r="2" class="point noevent"></circle><circle cx="372.87532363887226" cy="281.4855239927705" r="2" class="point noevent"></circle><circle cx="373.4160689466444" cy="293.9770302164176" r="2" class="point noevent"></circle><circle cx="205.7369653999133" cy="202.43185510570189" r="2" class="point noevent"></circle><circle cx="290.0855264218542" cy="289.447807528133" r="2" class="point noevent"></circle><circle cx="294.0992058941551" cy="287.98281128402175" r="2" class="point noevent"></circle><circle cx="215.41380561893087" cy="287.85590579898343" r="2" class="point noevent"></circle><circle cx="218.35473900993003" cy="320.9099781791032" r="2" class="point noevent"></circle><circle cx="215.09708089692214" cy="293.75875072338016" r="2" class="point noevent"></circle><circle cx="153.00799753767734" cy="320.8534512302545" r="2" class="point noevent"></circle><circle cx="114.00068907637566" cy="320.0953805705377" r="2" class="point noevent"></circle><circle cx="79.45571850911996" cy="340.7484145685709" r="2" class="point noevent"></circle><circle cx="84.55048551813724" cy="305.1048711434911" r="2" class="point noevent"></circle><circle cx="147.9669301613683" cy="344.2911660349006" r="2" class="point noevent"></circle><circle cx="222.49235428912465" cy="168.74335978728857" r="7" class="point event"></circle><circle cx="218.81543046661042" cy="253.5824803131518" r="2" class="point noevent"></circle><circle cx="271.76686680579854" cy="279.48250333166465" r="2" class="point noevent"></circle><circle cx="370.74891602553186" cy="290.2875029339857" r="2" class="point noevent"></circle><circle cx="371.52223131904725" cy="203.13594452219127" r="2" class="point noevent"></circle><circle cx="208.0669837965895" cy="287.8971212785637" r="2" class="point noevent"></circle><circle cx="286.82409146910294" cy="288.91600664607745" r="2" class="point noevent"></circle><circle cx="290.5176501078832" cy="288.8590869682208" r="2" class="point noevent"></circle><circle cx="216.3938800990582" cy="321.3131242777732" r="2" class="point noevent"></circle><circle cx="212.05489085405057" cy="291.2571502268752" r="2" class="point noevent"></circle><circle cx="214.7354747038071" cy="321.92172304823333" r="2" class="point noevent"></circle><circle cx="148.54457527587866" cy="320.1430275643536" r="7" class="point event"></circle><circle cx="135.15047933619275" cy="37.71482744734004" r="2" class="point noevent"></circle><circle cx="199.0192008048218" cy="223.54456405930955" r="2" class="point noevent"></circle><circle cx="202.4810304524731" cy="234.79690455406822" r="2" class="point noevent"></circle><circle cx="236.42681704594182" cy="191.6354828421418" r="2" class="point noevent"></circle><circle cx="235.40009223685342" cy="211.14076092092856" r="2" class="point noevent"></circle><circle cx="201.53767569704152" cy="253.82725098446565" r="2" class="point noevent"></circle><circle cx="232.7989632227469" cy="218.78635466011679" r="2" class="point noevent"></circle><circle cx="388.18694509074675" cy="192.42691002298437" r="2" class="point noevent"></circle><circle cx="230.39975582554754" cy="66.51992963388903" r="7" class="point event"></circle><circle cx="136.69756897240134" cy="34.149998356859385" r="2" class="point noevent"></circle><circle cx="201.09041075943432" cy="220.27791852840306" r="2" class="point noevent"></circle><circle cx="199.23524399273816" cy="232.05084047809893" r="2" class="point noevent"></circle><circle cx="234.44977698858628" cy="196.4237026110915" r="2" class="point noevent"></circle><circle cx="233.56736058329898" cy="212.88212479130124" r="2" class="point noevent"></circle><circle cx="199.6143541690055" cy="248.19558089586263" r="2" class="point noevent"></circle><circle cx="238.95342257555646" cy="217.7239456088808" r="2" class="point noevent"></circle><circle cx="386.0915695291729" cy="195.55771652404272" r="2" class="point noevent"></circle><circle cx="229.21696356778727" cy="63.65716974393274" r="2" class="point noevent"></circle><circle cx="309.6613782994175" cy="227.49870864007394" r="2" class="point noevent"></circle><circle cx="67.16570290801292" cy="266.8391272417749" r="2" class="point noevent"></circle><circle cx="319.6746810834205" cy="332.2911475854219" r="2" class="point noevent"></circle><circle cx="237.54732112179667" cy="252.01280507452918" r="7" class="point event"></circle><circle cx="137.96835196932423" cy="30.716662420561818" r="2" class="point noevent"></circle><circle cx="202.32106612209432" cy="225.55634321861916" r="2" class="point noevent"></circle><circle cx="200.81723762213466" cy="228.4210405252705" r="2" class="point noevent"></circle><circle cx="235.3574455292933" cy="194.3077904215741" r="7" class="point event"></circle><circle cx="138.11825886763842" cy="33.201747520215235" r="2" class="point noevent"></circle><circle cx="201.3126097051523" cy="221.34186379764097" r="2" class="point noevent"></circle><circle cx="197.779982531032" cy="229.50036997685825" r="2" class="point noevent"></circle><circle cx="231.87390554972933" cy="190.89468043610873" r="2" class="point noevent"></circle><circle cx="232.3685323845317" cy="213.1967857452594" r="2" class="point noevent"></circle><circle cx="200.45032635106574" cy="249.03100218564876" r="2" class="point noevent"></circle><circle cx="239.06920783418" cy="209.7319971820806" r="2" class="point noevent"></circle><circle cx="392.4640961574833" cy="192.66641308856214" r="2" class="point noevent"></circle><circle cx="230.9549350779303" cy="64.60707305299587" r="2" class="point noevent"></circle><circle cx="308.20245272261604" cy="223.15506981008807" r="2" class="point noevent"></circle><circle cx="71.01671020117573" cy="270.1175883253225" r="2" class="point noevent"></circle><circle cx="321.00496213782407" cy="335.89890145787365" r="2" class="point noevent"></circle><circle cx="234.95655629573605" cy="251.3212436367476" r="2" class="point noevent"></circle><circle cx="234.3778778250733" cy="172.9402275763748" r="7" class="point event"></circle><circle cx="137.58831652480376" cy="40.19864068974181" r="2" class="point noevent"></circle><circle cx="205.50285283607667" cy="225.3843327500255" r="2" class="point noevent"></circle><circle cx="197.2656090976202" cy="230.8552665513651" r="2" class="point noevent"></circle><circle cx="232.75394671760586" cy="197.18108781309934" r="2" class="point noevent"></circle><circle cx="236.33221727145082" cy="215.4554905295677" r="2" class="point noevent"></circle><circle cx="199.87426267813424" cy="252.61556549155705" r="2" class="point noevent"></circle><circle cx="236.75243989616854" cy="212.6208214705501" r="2" class="point noevent"></circle><circle cx="393.3188589691" cy="193.76771019256375" r="2" class="point noevent"></circle><circle cx="227.9604540671017" cy="62.0969095110147" r="2" class="point noevent"></circle><circle cx="309.43465947208773" cy="232.5261236070536" r="2" class="point noevent"></circle><circle cx="65.53311960839811" cy="267.37632527257745" r="2" class="point noevent"></circle><circle cx="318.49834387837427" cy="332.55404889484663" r="2" class="point noevent"></circle><circle cx="237.8408510340454" cy="251.51132840300806" r="2" class="point noevent"></circle><circle cx="238.75587875744034" cy="173.56449299541248" r="2" class="point noevent"></circle><circle cx="192.38087655253082" cy="254.28295812181662" r="2" class="point noevent"></circle><circle cx="139.91138682528918" cy="36.60157284524843" r="2" class="point noevent"></circle><circle cx="202.2527584591947" cy="218.68836553345193" r="2" class="point noevent"></circle><circle cx="200.16754399764258" cy="230.78755571660002" r="2" class="point noevent"></circle><circle cx="234.29199090365822" cy="196.97082920593513" r="2" class="point noevent"></circle><circle cx="235.39243401116136" cy="208.95177532459604" r="2" class="point noevent"></circle><circle cx="201.25060803316723" cy="250.37869621892736" r="2" class="point noevent"></circle><circle cx="238.95716705152114" cy="213.38019691815234" r="2" class="point noevent"></circle><circle cx="389.6237114827268" cy="191.6772595578883" r="2" class="point noevent"></circle><circle cx="233.9527343042323" cy="61.83627041604353" r="2" class="point noevent"></circle><circle cx="309.2803075722252" cy="226.57560814633382" r="2" class="point noevent"></circle><circle cx="67.75628182416935" cy="268.44078981282496" r="2" class="point noevent"></circle><circle cx="323.4020113408468" cy="328.97801100818606" r="2" class="point noevent"></circle><circle cx="235.7735213722258" cy="249.81046398418184" r="7" class="point event"></circle><circle cx="136.1438166155258" cy="37.05863686745505" r="7" class="point event"></circle><circle cx="136.5613702817054" cy="34.886469154185534" r="2" class="point noevent"></circle><circle cx="200.34825595739852" cy="224.67452983853642" r="2" class="point noevent"></circle><circle cx="197.89063642997746" cy="229.80338052338658" r="2" class="point noevent"></circle><circle cx="236.7573462574515" cy="194.82309612455117" r="2" class="point noevent"></circle><circle cx="237.39194890254694" cy="208.7605734921036" r="2" class="point noevent"></circle><circle cx="201.25568657395078" cy="255.4789300010781" r="2" class="point noevent"></circle><circle cx="232.75647808005198" cy="213.78282839755062" r="2" class="point noevent"></circle><circle cx="391.6501842926338" cy="192.3304639831295" r="2" class="point noevent"></circle><circle cx="231.70674965582558" cy="63.76647247428002" r="2" class="point noevent"></circle><circle cx="306.8695672987006" cy="228.08465561447204" r="2" class="point noevent"></circle><circle cx="68.43832797203956" cy="271.51017376868197" r="2" class="point noevent"></circle><circle cx="321.44942329481194" cy="325.6575358644652" r="2" class="point noevent"></circle><circle cx="235.79060431865938" cy="256.1993344276001" r="7" class="point event"></circle><circle cx="414.3470931610278" cy="283.9390235020626" r="2" class="point noevent"></circle><circle cx="420.5998550125055" cy="285.870445065877" r="2" class="point noevent"></circle><circle cx="415.7873255412822" cy="281.8935291769586" r="2" class="point noevent"></circle><circle cx="291.1634641006366" cy="233.08391816317933" r="2" class="point noevent"></circle><circle cx="328.46861140335477" cy="204.41931103236848" r="2" class="point noevent"></circle><circle cx="296.37801337287345" cy="177.52703452190485" r="2" class="point noevent"></circle><circle cx="264.64771355542166" cy="214.73700533888464" r="7" class="point event"></circle><circle cx="418.24033738094255" cy="274.12921316313407" r="2" class="point noevent"></circle><circle cx="417.8390353330003" cy="308.2253828340419" r="2" class="point noevent"></circle><circle cx="421.95960159066857" cy="294.64276429393635" r="2" class="point noevent"></circle><circle cx="296.6282671089314" cy="280.86263130307543" r="7" class="point event"></circle><circle cx="416.57279052863004" cy="278.59248738277086" r="2" class="point noevent"></circle><circle cx="415.9454634204734" cy="282.7920131174387" r="2" class="point noevent"></circle><circle cx="422.2648035168833" cy="277.8177478776771" r="2" class="point noevent"></circle><circle cx="290.26698793323044" cy="228.61099571561707" r="2" class="point noevent"></circle><circle cx="326.2546710166345" cy="195.7101085498207" r="2" class="point noevent"></circle><circle cx="294.50822633561364" cy="179.96889022598077" r="2" class="point noevent"></circle><circle cx="267.1975206434175" cy="211.14687508758826" r="2" class="point noevent"></circle><circle cx="114.18086329215578" cy="276.4710290910285" r="2" class="point noevent"></circle><circle cx="225.75376073336545" cy="308.77083456449816" r="2" class="point noevent"></circle><circle cx="334.1435211610726" cy="295.5511168655879" r="2" class="point noevent"></circle><circle cx="332.2035629791504" cy="281.98006625145183" r="7" class="point event"></circle><circle cx="416.3767487699777" cy="279.5274038869172" r="2" class="point noevent"></circle><circle cx="416.0540849992221" cy="283.94390429525635" r="2" class="point noevent"></circle><circle cx="417.97505155077033" cy="277.9365413610932" r="2" class="point noevent"></circle><circle cx="294.55275947782854" cy="229.19472580997422" r="2" class="point noevent"></circle><circle cx="330.61011965266385" cy="198.7398485493452" r="2" class="point noevent"></circle><circle cx="299.9194084439597" cy="179.91657632455542" r="2" class="point noevent"></circle><circle cx="267.1512275126336" cy="215.53114426625226" r="2" class="point noevent"></circle><circle cx="114.75903852565955" cy="276.17478061613383" r="2" class="point noevent"></circle><circle cx="226.30691847516675" cy="306.8465086514609" r="2" class="point noevent"></circle><circle cx="335.4987692762514" cy="297.0262926867049" r="2" class="point noevent"></circle><circle cx="333.16326323751133" cy="283.31256446432894" r="2" class="point noevent"></circle><circle cx="164.34931246981546" cy="279.5054157533383" r="2" class="point noevent"></circle><circle cx="415.8559187580604" cy="284.9668834397838" r="2" class="point noevent"></circle><circle cx="258.06382953598927" cy="284.9472139239107" r="2" class="point noevent"></circle><circle cx="221.81346366149506" cy="308.77831539826536" r="2" class="point noevent"></circle><circle cx="417.96087090642385" cy="279.8880854075138" r="2" class="point noevent"></circle><circle cx="418.9192844534996" cy="281.4338790870738" r="2" class="point noevent"></circle><circle cx="417.1132056979431" cy="280.07529534200074" r="2" class="point noevent"></circle><circle cx="293.55500897380824" cy="235.45508823066277" r="2" class="point noevent"></circle><circle cx="330.01927005026806" cy="199.93025179824343" r="2" class="point noevent"></circle><circle cx="292.83237909481545" cy="178.1155819601417" r="2" class="point noevent"></circle><circle cx="265.83445145214637" cy="211.3976037284855" r="2" class="point noevent"></circle><circle cx="110.83591353936288" cy="279.6482746882273" r="2" class="point noevent"></circle><circle cx="228.88373603599155" cy="310.1656245815658" r="2" class="point noevent"></circle><circle cx="330.58535543675504" cy="293.58382714353354" r="2" class="point noevent"></circle><circle cx="334.7904808028815" cy="280.6620812124387" r="2" class="point noevent"></circle><circle cx="167.19961935632801" cy="274.58170100930084" r="2" class="point noevent"></circle><circle cx="417.58094177084985" cy="283.4088841255955" r="2" class="point noevent"></circle><circle cx="262.5887299426397" cy="276.9525358706781" r="7" class="point event"></circle><circle cx="417.4425878145149" cy="285.2327625736027" r="2" class="point noevent"></circle><circle cx="419.49198791727673" cy="276.83790187606513" r="2" class="point noevent"></circle><circle cx="419.608588701322" cy="279.4232173806455" r="7" class="point event"></circle></g></svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment