Skip to content

Instantly share code, notes, and snippets.

@ashenfad
ashenfad / README.md
Last active June 29, 2017 01:58
t-SNE Layout of Forest Cover Clusters
@ashenfad
ashenfad / README.md
Last active June 29, 2017 01:56
t-SNE Layout of Titanic Clusters

A t-SNE inspired visualization of a BigML G-means clustering built from the Titanic dataset. Mouse over a cluster to see the centroid.

@ashenfad
ashenfad / README.md
Created June 29, 2017 01:51
t-SNE Layout of Diabetes Clusters
@ashenfad
ashenfad / README.md
Last active February 27, 2017 23:59
Iris - Boosting PDP

A partial dependence plot of a BigML boosted ensemble built on the iris dataset.

  • Click and drag to zoom in.
  • Double click to zoom out.
@ashenfad
ashenfad / README.md
Last active October 19, 2016 20:51
Example Approximate Histogram Viz

A visualization of a distribution encoded by a streaming approximate histogram.

  • Brush to zoom.
  • Click to zoom out.
  • t to toggle trimming some of the outliers from the distribution.
  • r to toggle rounding populations for each bin.
  • i to toggle the distribution interpolation mode.
@ashenfad
ashenfad / README.md
Last active July 20, 2016 22:07
t-SNE Layout of LDA Topics (ver 2)

A t-SNE inspired visualization of a BigML LDA model built from a subset of the UCI OpinRank dataset. Mouse over a topic to see the most influential terms.

@ashenfad
ashenfad / merge-with.whizzml
Last active July 7, 2016 17:22
A WhizzML version of Clojure's merge-with
(define (merge-with* fn m1 m2)
(reduce (lambda (result key)
(let (v1 (get m1 key)
v2 (get m2 key))
(assoc result key (if (and v1 v2)
(fn v1 v2)
(or v1 v2)))))
{}
(concat (keys m1) (keys m2))))
@ashenfad
ashenfad / README.md
Last active July 20, 2016 22:08
t-SNE Layout of LDA Topics

A t-SNE inspired visualization of a BigML LDA model built from a subset of the UCI OpinRank dataset. Mouse over a topic to see the most influential terms.

@ashenfad
ashenfad / README.md
Last active December 17, 2015 19:33
Dynamic Heatmap - Iris

A 2D/3D heatmap of the iris dataset.

Click and drag to zoom. Single click to zoom out.

@ashenfad
ashenfad / README.md
Last active March 8, 2016 01:56
Dynamic Heatmap - Forest Cover

A 2D/3D heatmap of the forest cover dataset (100K sample).

Click and drag to zoom. Single click to zoom out.