Tag: Visulization

Rails and Recent d3.js Examples

A lot of my free time has been spent running and developing a running log using rails.  I want greater control of monitoring / visualizing each training cycle than the sites out there will let me have (no API’s..).   Thus, I’ll just build my own! This whole thing was spurred by my dabbling in […]

What 5,728.986 miles look like…

Time Series as calendar heat maps + All of my running data since April 1, 2009 = Generated by the following code: #Sample Code based on example program at: source(file = “calendarHeat.R”) run<- read.csv(“log.csv”, header = TRUE, sep=”,”) sum(run$Distance) date <- c() for (i in 1: dim(run)[1]){ if(run$DistanceUnit[i]== ‘Kilometer’){ miles <- c(miles,run$Distance[i] * 0.62) } […]