s416267-mlworkshops/plots.sh
Kamil Paprota ebbb11d996 metryki
2020-04-03 17:30:19 +02:00

9 lines
201 B
Bash

for FILE in "$@"
do
gnuplot <<- EOF
set term png
set title "Wykres - ${FILE}"
set output "${FILE}.png"
plot "${FILE}.txt" with points pointtype 1 notitle
EOF
done