Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/cscott/wonchi-2012-05-15

Data crunching scripts for 2012-05-15 Wonchi data dump
https://github.com/cscott/wonchi-2012-05-15

Last synced: 13 days ago
JSON representation

Data crunching scripts for 2012-05-15 Wonchi data dump

Awesome Lists containing this project

README

        

To generate graphs from NellBalloons data:

find data -name NellBalloons.csv | xargs src/scatter.js -G -g -y all
for f in *-all.gnuplot ; do gnuplot $f ; done
psjoin *-all.ps | psnup -l -n4 > nell-balloons.ps
ps2pdf nell-balloons.ps

find data -name Matching.csv | xargs src/scatter.js -m -G -g -y all
for f in *-all.gnuplot ; do gnuplot $f ; done
psjoin *-all.ps | psnup -l -n4 > matching.ps
ps2pdf matching.ps

Longest streaks:
find data -name NellBalloons.csv | xargs src/streak.js

Collecting color change information:
( for f in $(find . -name "NellBalloons.csv") ; do sed -ne '/colorchange/,$p' $f | fgrep startColor | sed -e 's/^.*startColor,//' ; done ) | sort | uniq -c | sort -n

To interpret Matching data:
cd src
./process-matching.sh

RunningApplicationsProbe info:
find data -name RunningApplicationsProbe.csv | xargs src/running.js -x timedelta -T "Time between RunningApplicationsProbe Samples" -t rap-timedelta
find data -name LauncherApp.csv | xargs src/running.js -f la-v1 -x timedelta -T "Time between LauncherApp samples" -t la-timedelta