calais-data

Des données sur le passage à Calais - retour accueil

git clone git://bebou.netlib.re/calais-data
Log | Files | Refs | README |

fig10.sh (648B)


      1 #! /bin/sh
      2 
      3 tmpd=$(mktemp -d)
      4 < full.tsv cut -f 1,2,3,4 |
      5 	sed -E 's,/[0-9]+/[0-9]+	,	,' |
      6 	sed -E 's,	0	,		,;s,0$,,' > $tmpd/data
      7 < /$tmpd/data tsv-summarize -H -g 1 --not-missing-count 2 > $tmpd/jpassage
      8 < /$tmpd/data tsv-summarize -H -g 1 --sum 2 --exclude-missing > $tmpd/nbpassage
      9 < /$tmpd/data tsv-summarize -H -g 1 --sum 3 --exclude-missing > $tmpd/nbbateaux
     10 < /$tmpd/data tsv-summarize -H -g 1 --mean 4 --exclude-missing > $tmpd/densite
     11 < $tmpd/jpassage tsv-join -f - -k 1 -d 1 -a 2 $tmpd/nbpassage | tail -n+2 > $tmpd/a
     12 < $tmpd/nbbateaux tsv-join -f - -k 1 -d 1 -a 2 $tmpd/a > $tmpd/b
     13 < $tmpd/densite tsv-join -f - -k 1 -d 1 -a 2 $tmpd/b
     14