Sha256: 3082be6ec8abc013b047f24271067af0c476d07dbdf072cb3ec495a922d3fee2

Contents?: true

Size: 293 Bytes

Versions: 12

Compression:

Stored size: 293 Bytes

Contents

#!/bin/bash

DATA=`pione-val '$I[1]'`
OUT=`pione-val '$O[1]'`

gnuplot <<EOF
set title "Histgram of member's mean score"

set style fill solid border lc rgb "black"
set xrange [0:10]
set yrange [0:20]

set terminal png
set output "$OUT"

plot "$DATA" using 0:2:xtic(1) with boxes notitle
EOF

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
pione-0.5.0 example/ScoreAggregation/bin/histgram-graph.sh
pione-0.5.0.alpha.2 example/ScoreAggregation/bin/histgram-graph.sh
pione-0.5.0.alpha.1 example/ScoreAggregation/bin/histgram-graph.sh
pione-0.4.2 example/ScoreAggregation/bin/histgram-graph.sh
pione-0.4.1 example/ScoreAggregation/bin/histgram-graph.sh
pione-0.4.0 example/ScoreAggregation/bin/histgram-graph.sh
pione-0.3.2 example/ScoreAggregation/bin/histgram-graph.sh
pione-0.3.1 example/ScoreAggregation/bin/histgram-graph.sh
pione-0.3.0 example/ScoreAggregation/bin/histgram-graph.sh
pione-0.2.2 example/ScoreAggregation/bin/histgram-graph.sh
pione-0.2.1 example/ScoreAggregation/bin/histgram-graph.sh
pione-0.2.0 example/ScoreAggregation/bin/histgram-graph.sh