Skip to content

Instantly share code, notes, and snippets.

@mayblue9
mayblue9 / README.md
Last active September 9, 2015 09:11 — forked from anonymous/README.md
iris demo

simple csv demo

for the building-blocks intro video

@mayblue9
mayblue9 / 2015-08-19-webmapping.md
Created September 25, 2015 02:20 — forked from stuartlynn/2015-08-19-webmapping.md
GDI - Webmap Workshop
@mayblue9
mayblue9 / gist:89dbf7d4d20138d57c16
Created October 2, 2015 05:53 — forked from entaroadun/gist:1653794
Recommendation and Ratings Public Data Sets For Machine Learning

Movies Recommendation:

Music Recommendation:

@mayblue9
mayblue9 / visualization_in_js.md
Created October 2, 2015 05:54 — forked from entaroadun/visualization_in_js.md
Visualization using Javascript on Github

Data visualization in one of three most important steps in data mining (https://github.com/entaroadun/hnpickup#readme). Often times, it's impossible to understand data without proper visualization. I went looking for great tools to do that.

Two website list recent JS visualization frameworks:

Most of them are available on Github. My three favorite:

@mayblue9
mayblue9 / index.html
Created October 30, 2015 08:03 — forked from jasondavies/index.html
Counties of the United Kingdom
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
<link type="text/css" rel="stylesheet" href="style.css"/>
<script type="text/javascript" src="http://mbostock.github.com/d3/d3.js"></script>
<script type="text/javascript" src="http://mbostock.github.com/d3/d3.csv.js"></script>
<script type="text/javascript" src="http://mbostock.github.com/d3/d3.layout.js"></script>
<style type="text/css">
@mayblue9
mayblue9 / README.md
Created November 3, 2015 07:09 — forked from mbostock/.block
Programmatic Pan+Zoom III

A variation of programmatic zoom where buttons can be used to zoom-in or zoom-out around the current center of the viewport.

@mayblue9
mayblue9 / index.html
Created November 5, 2015 07:50 — forked from stumpyfr/index.html
Bubble Chart
<html>
<head>
<style>
.chart rect {
fill: steelblue;
}
.chart rect:hover {
fill: turquoise;
}
@mayblue9
mayblue9 / README.md
Created November 5, 2015 07:52 — forked from nbremer/.block
D3.js - Radar Chart or Spider Chart - Adjusted from radar-chart-d3
@mayblue9
mayblue9 / firm.csv
Created November 6, 2015 06:18 — forked from emeeks/firm.csv
Modularity Mini-Map
source target weight
1 3 5
1 8 3
1 9 3
1 12 3
1 15 2
1 23 3
1 26 2
1 37 2
1 46 2
@mayblue9
mayblue9 / README.md
Created November 6, 2015 06:23 — forked from susielu/README.md
Annual Temp - New York 2015

Weather Plot - New York 2015

In the example we're looking at historical weather data for New York provided by intellicast.com and wunderground.com. Inspired by weather-radicals.com.

This example uses scales to roll your own radial projection by mapping out the x, y, and r positions. If you are creating a line or an area you can use d3's convenience functions d3.svg.line.radial and d3.svg.area.radial but this is a method you can use if you want to use different graphical elements in a circular layout.