Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
JavaScript
Python
Perl
Shell

Cannot retrieve the latest commit at this time.
Failed to load latest commit information. | |||
![]() |
data | ||
![]() |
src | ||
![]() |
README | ||
![]() |
la-timedelta.pdf | ||
![]() |
matching.pdf | ||
![]() |
nell-balloons.pdf | ||
![]() |
rap-timedelta.pdf |
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