Skip to content

Instantly share code, notes, and snippets.

View aaizemberg's full-sized avatar

Ariel Aizemberg aaizemberg

View GitHub Profile
@aaizemberg
aaizemberg / readme.md
Last active August 19, 2020 01:43
Top 10 algorithms in data mining

Top 10 algorithms in data mining

04 December 2007

DOI: 10.1007/s10115-007-0114-2

Autores: Xindong Wu, Vipin Kumar, J. Ross Quinlan, Joydeep Ghosh, Qiang Yang, Hiroshi Motoda, Geoffrey J. McLachlan, Angus Ng, Bing Liu, Philip S. Yu, Zhi-Hua Zhou, Michael Steinbach, David J. Hand & Dan Steinberg

  1. C4.5 and beyond
  2. The k-means algorithm
@aaizemberg
aaizemberg / w31.tsv
Created August 6, 2020 22:07
datos makeover monday (w31)
date visits
1986-01-01 1878
1986-02-01 1743
1986-03-01 2014
1986-04-01 1944
1986-05-01 2207
1986-06-01 2065
1986-07-01 2135
1986-08-01 2179
1986-09-01 2195
@aaizemberg
aaizemberg / data.csv
Created June 8, 2020 18:19
datos de prueba para Altair
Gender Group Year Count
Hombre 3.20 a 24 2005 91291
Hombre 4.25 a 29 2005 93716
Hombre 5.30 a 34 2005 72686
Hombre 6.35 a 39 2005 37706
Hombre 2.15 a 19 2005 53743
Hombre 7.40 a 44 2005 10876
Hombre 1.Menor de 15 2005 1368
Hombre 8.De 45 y más 2005 767
Mujer 4.25 a 29 2005 88963
@aaizemberg
aaizemberg / provincias.tsv
Created June 8, 2020 16:10
Población por provincia (Censo 2010)
Codigo Provincia Población
06 Provincia de Buenos Aires 15594428
14 Córdoba 3304825
82 Santa Fe 3300736
02 Ciudad Autónoma de Buenos Aires 2891082
50 Mendoza 1741610
90 Tucumán 1592878
30 Entre Ríos 1236300
66 Salta 1215207
54 Misiones 1097829
@aaizemberg
aaizemberg / sketch.js
Created June 8, 2020 11:24
circulo cromatico (p5.js)
var portions = 3;
var PMAX = 32;
var largo;
function setup() {
createCanvas(400, 400);
noStroke();
background(0);
}
@aaizemberg
aaizemberg / index.html
Created May 27, 2020 14:09
probando los componentes de material design ( https://material.io/ )
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>probando los componentes de material</title>
<link href="https://unpkg.com/material-components-web@latest/dist/material-components-web.min.css" rel="stylesheet">
<script src="https://unpkg.com/material-components-web@latest/dist/material-components-web.min.js"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
</head>
@aaizemberg
aaizemberg / index.html
Created May 20, 2020 23:57
Poblacion por depto (censo 2010, INDEC) - flourish
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Poblacion por depto (censo 2010, INDEC)</title>
</head>
<body>
<div class="flourish-embed flourish-hierarchy"
@aaizemberg
aaizemberg / index.html
Created May 20, 2020 22:05
scatterplot hecho con rawgraph
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>scatterplot hecho con RAWGraph</title>
</head>
<body>
<svg width="600" height="400" xmlns="http://www.w3.org/2000/svg" version="1.1"><g transform="translate(40,5)"><g class="x axis" transform="translate(0,370)" fill="none" font-size="10" font-family="sans-serif" text-anchor="middle" style="stroke-width: 1px; font-size: 10px; font-family: Arial, Helvetica;"><path class="domain" stroke="#000" d="M0.5,-370V0.5H555.5V-370" style="shape-rendering: crispedges; fill: none; stroke: rgb(204, 204, 204);"></path><g class="tick" opacity="1" transform="translate(16.614720812182743,0)"><line stroke="#000" y2="-370" style="shape-rendering: crispedges; fill: none; stroke: rgb(204, 204, 204);"></line><text fill="#000" y="3" dy="0.71em">500</text></g><g class="tick" opacity="1" transform="translate(72.95989847715737,0)"><line stroke="#000" y2="-370" style="shape-rendering: crispedges; fill: none; stroke: rgb
@aaizemberg
aaizemberg / .block
Last active May 22, 2020 00:41
un gist con varios archivos
license: cc-by-4.0
@aaizemberg
aaizemberg / index.html
Created May 14, 2020 23:39
mom w19 tomando los datos de data.world (d3js, divs)
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>d3.js barchart divs</title>
<script src="https://d3js.org/d3.v5.min.js"></script>
</head>
<body>