Skip to content

Instantly share code, notes, and snippets.

View stevemandl's full-sized avatar

Steve Mandl stevemandl

  • Cornell University
  • United States
View GitHub Profile
@stevemandl
stevemandl / index.html
Last active February 13, 2016 02:18
UpdatingCrossfilter Demo
<script src="https://cdnjs.cloudflare.com/ajax/libs/crossfilter/1.3.12/crossfilter.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/dc/2.0.0-beta.20/dc.js"></script>
<script src="updatingCrossfilter.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/dc/2.0.0-beta.20/dc.css" />
<div> DC Version: <span id="version"></span></div>
<div id="timechart"></div>
<div id="histogram"></div>
<script>
var getData = function (d) { return {ts: d, y: Math.random()* 2 -1 }; }, //get a data point
@stevemandl
stevemandl / index.html
Last active August 29, 2015 14:07
Procinfo Performance
<!DOCTYPE html>
<meta charset="utf-8">
<style>
body {
font: 10px sans-serif;
}
.bar rect {
fill: steelblue;