Skip to content

Instantly share code, notes, and snippets.

View AbnormalDistribution-2020's full-sized avatar

AbnormalDistribution-2020

View GitHub Profile
@AbnormalDistribution-2020
AbnormalDistribution-2020 / index.html
Created April 20, 2020 10:48
Inventory Exploratory Data Analysis
<!DOCTYPE html>
<meta charset="utf-8">
<style type="text/css">
text {
font-family:Play;
font-size:14px;
}
.title {
@AbnormalDistribution-2020
AbnormalDistribution-2020 / index.html
Created January 16, 2020 09:34
World Data Visualization Prize - Interactive Submission
<!DOCTYPE html>
<meta charset="utf-8">
<style type="text/css">
</style>
<body>
</body>
<div id="map"></div>
<script src="https://d3js.org/d3.v5.min.js"></script>
@AbnormalDistribution-2020
AbnormalDistribution-2020 / d3-scale-radial.js
Last active January 9, 2020 05:46
Custom circular axis
(function(global, factory) {
typeof exports === "object" && typeof module !== "undefined" ? factory(exports, require("d3-scale")) :
typeof define === "function" && define.amd ? define(["exports", "d3-scale"], factory) :
(factory(global.d3 = global.d3 || {}, global.d3));
}(this, function(exports, d3Scale) {
'use strict';
function square(x) {
return x * x;
}
@AbnormalDistribution-2020
AbnormalDistribution-2020 / index.html
Created January 4, 2020 11:12
Simple Flight Animation
<!DOCTYPE html>
<meta charset="utf-8">
<style type="text/css">
</style>
<body>
</body>
<script src="https://unpkg.com/topojson@3.0.2/dist/topojson.js"></script>
<script src="https://d3js.org/d3.v5.min.js"></script>