s416267-mlworkshops/plots.sh

9 lines
217 B
Bash
Raw Normal View History

2020-04-03 16:48:41 +02:00
for FILE in "$@"
do
gnuplot <<- EOF
set term png
2020-04-03 17:20:24 +02:00
set title "Wykres - ${FILE}"
2020-04-03 16:48:41 +02:00
set output "${FILE}.png"
2020-04-03 17:28:58 +02:00
plot "${FILE}.txt" with points pointtype 1 set autoscale y notitle
2020-04-03 16:48:41 +02:00
EOF
done