#!/usr/bin/gnuplot -persist set xlabel "Time" set ylabel "Team size" set title "Number of creatures in each team" set rmargin 5 set terminal pngcairo size 1024,800 set output "teamSize.png" plot \ "teams1.txt" using 1:3 title "Team 0" w l,\ "teams1.txt" using 1:5 title "Team 1" w l #"teams1.txt" using 1:7 title "Team 2" w l,\ #"teams1.txt" using 1:9 title "Team 3" w l,\ #"teams1.txt" using 1:11 title "Team 4" w l,\ #"teams1.txt" using 1:13 title "Team 5" w l,\ #"teams1.txt" using 1:15 title "Team 6" w l,\ #"teams1.txt" using 1:17 title "Team 7" w l,\ #"teams1.txt" using 1:19 title "Team 8" w l,\ #"teams1.txt" using 1:21 title "Team 9" w l