source: experiments/frams/deathmatch/gnuplot/teamsMembers.gp @ 231

Last change on this file since 231 was 231, checked in by sz, 10 years ago

Deathmatch experiment - http://www.framsticks.com/deathmatch

File size: 663 bytes
Line 
1#!/usr/bin/gnuplot -persist
2set xlabel "Time"
3set ylabel "Team size"
4set title "Number of creatures in each team"
5set rmargin 5
6set terminal pngcairo size 1024,800
7set output "teamSize.png"
8plot \
9"teams1.txt" using 1:3 title "Team 0" w l,\
10"teams1.txt" using 1:5 title "Team 1" w l
11#"teams1.txt" using 1:7 title "Team 2" w l,\
12#"teams1.txt" using 1:9 title "Team 3" w l,\
13#"teams1.txt" using 1:11 title "Team 4" w l,\
14#"teams1.txt" using 1:13 title "Team 5" w l,\
15#"teams1.txt" using 1:15 title "Team 6" w l,\
16#"teams1.txt" using 1:17 title "Team 7" w l,\
17#"teams1.txt" using 1:19 title "Team 8" w l,\
18#"teams1.txt" using 1:21 title "Team 9" w l
Note: See TracBrowser for help on using the repository browser.