Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/cscott/wonchi-2012-05-15
- Owner: cscott
- Created: 2012-05-22T00:39:26.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-05-31T14:49:51.000Z (over 12 years ago)
- Last Synced: 2024-11-07T06:15:54.111Z (2 months ago)
- Language: JavaScript
- Size: 6.73 MB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README
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.psfind 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.psLongest streaks:
find data -name NellBalloons.csv | xargs src/streak.jsCollecting 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 -nTo interpret Matching data:
cd src
./process-matching.shRunningApplicationsProbe 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