Skip to content

Instantly share code, notes, and snippets.

We can make this file beautiful and searchable if this error is corrected: It looks like row 5 should actually have 17 columns, instead of 9. in line 4.
id,name,owner_login,owner_id,owner_type,html_url,description,fork,created_at,updated_at,pushed_at,size,stargazers_count,language,forks_count,open_issues_count,score
943149,d3,mbostock,230541,User,https://github.com/mbostock/d3,A JavaScript visualization library for HTML and SVG.,FALSE,2010-09-27T17:22:42Z,2015-03-24T12:36:05Z,2015-03-20T19:01:30Z,72805,35863,JavaScript,9047,229,34.62675
2400938,fnordmetric,paulasmuth,564023,User,https://github.com/paulasmuth/fnordmetric,FnordMetric allows you collect and visualize timeseries data with SQL.,FALSE,2011-09-16T17:58:37Z,2015-03-24T05:48:15Z,2015-03-24T12:23:03Z,18137,4525,C++,362,89,9.765476
11010098,epoch,fastly,777070,Organization,https://github.com/fastly/epoch,"A general purpose, real-time visualization library.",FALSE,2013-06-27T23:04:32Z,2015-03-24T11:30:39Z,2015-03-08T03:44:15Z,3504,3911,HTML,186,45,24.238726
3859306,cubism,square,82592,Organization,https://github.com/square/cubism,Cubism.js: A JavaScript library for time series visualization.,FALSE,2012-0
@uafrazier
uafrazier / github-api-visualization-cleaned.csv
Last active December 28, 2022 11:43
D3: Create SVG and Load CSV Data
We can make this file beautiful and searchable if this error is corrected: It looks like row 5 should actually have 17 columns, instead of 9. in line 4.
id,name,owner_login,owner_id,owner_type,html_url,description,fork,created_at,updated_at,pushed_at,size,stargazers_count,language,forks_count,open_issues_count,score
943149,d3,mbostock,230541,User,https://github.com/mbostock/d3,A JavaScript visualization library for HTML and SVG.,FALSE,2010-09-27T17:22:42Z,2015-03-24T12:36:05Z,2015-03-20T19:01:30Z,72805,35863,JavaScript,9047,229,34.62675
2400938,fnordmetric,paulasmuth,564023,User,https://github.com/paulasmuth/fnordmetric,FnordMetric allows you collect and visualize timeseries data with SQL.,FALSE,2011-09-16T17:58:37Z,2015-03-24T05:48:15Z,2015-03-24T12:23:03Z,18137,4525,C++,362,89,9.765476
11010098,epoch,fastly,777070,Organization,https://github.com/fastly/epoch,"A general purpose, real-time visualization library.",FALSE,2013-06-27T23:04:32Z,2015-03-24T11:30:39Z,2015-03-08T03:44:15Z,3504,3911,HTML,186,45,24.238726
3859306,cubism,square,82592,Organization,https://github.com/square/cubism,Cubism.js: A JavaScript library for time series visualization.,FALSE,2012-0
@uafrazier
uafrazier / README.md
Last active August 29, 2015 14:17
Github Visualization Repos

##Visualizing Github Visualization Repos

Source: Github API

I pulled data for the most starred repositories with the word visualization in the name, the description, or the README.

Scaled it back to 150 repositories, cleaned it up a bit by removing lots of columns that were unnecessary for our purposes, and sorted by stars in descending order, so that the most popular repositories appear at the top.

I think it will be cool to visualize some data about some of the tools people use to visualize data. Number of forks, issues and stars, what languages are used, etc. can be explored.

@uafrazier
uafrazier / US-passports.csv
Last active August 29, 2015 14:17
US Passport Issuance by US State/Territory per Fiscal Year (2008-2014)
State FY2014 FY2013 FY2012 FY2011 FY2010 FY2009 FY2008
ALABAMA 92028 87717 90861 99122 111079 104254 127641
ALASKA 34377 34604 34207 33587 42722 41637 46608
AMERICAN SAMOA 1431 1341 1564 1509 1912 1466 1826
ARIZONA 231380 222440 210841 196629 289901 304003 349932
ARKANSAS 57805 57629 58087 56071 67737 63504 78014
CALIFORNIA 1900811 1793399 1722977 1600966 1939159 1899795 2396769
COLORADO 245285 230116 215739 200567 238713 225982 299164
CONNECTICUT 178072 175025 174893 162544 197136 180893 222977
DELAWARE 34090 32007 31700 31051 36994 33584 42047
@uafrazier
uafrazier / index.html
Last active August 29, 2015 14:13
Leaflet Map with a Rectangle
<!DOCTYPE html>
<html>
<head>
<title>Leaflet Web Map</title>
<!-- reference to Leaflet CSS -->
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.css" />
@uafrazier
uafrazier / index.html
Last active August 29, 2015 14:13
Leaflet Map with a Circle
<!DOCTYPE html>
<html>
<head>
<title>Leaflet Web Map</title>
<!-- reference to Leaflet CSS -->
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.css" />
@uafrazier
uafrazier / index.html
Last active December 4, 2015 23:05
Leaflet Map with a Polygon
<!DOCTYPE html>
<html>
<head>
<title>Leaflet Web Map</title>
<!-- reference to Leaflet CSS -->
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.css" />
@uafrazier
uafrazier / index.html
Last active August 29, 2015 14:13
Leaflet Map with a Polyline
<!DOCTYPE html>
<html>
<head>
<title>Leaflet Web Map</title>
<!-- reference to Leaflet CSS -->
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.css" />
@uafrazier
uafrazier / index.html
Last active August 29, 2015 14:13
Leaflet Map with WMS Layer
<!DOCTYPE html>
<html>
<head>
<title>Leaflet Web Map</title>
<!-- reference to Leaflet CSS -->
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.css" />
@uafrazier
uafrazier / index.html
Last active August 29, 2015 14:13
Leaflet Map Starter HTML File
<!DOCTYPE html>
<html>
<head>
<title>Leaflet Web Map</title>
<style>