Advertisement
Guest User

Untitled

a guest
May 24th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.17 KB | None | 0 0
  1. set multiplot; # get into multiplot mode
  2. set size 0.5,0.5;
  3. set autoscale;
  4. set xrange [0:100 < * < 1000]
  5. set origin 0.0,0.5;
  6. plot "workspace/LudoGame/ludo-gui/build/weightData0.txt" using 1:2 title 'w0' with lines, \
  7. "workspace/LudoGame/ludo-gui/build/weightData0.txt" using 1:3 title 'w1' with lines, \
  8. "workspace/LudoGame/ludo-gui/build/weightData0.txt" using 1:4 title 'w2' with lines, \
  9. "workspace/LudoGame/ludo-gui/build/weightData0.txt" using 1:5 title 'w3' with lines, \
  10. "workspace/LudoGame/ludo-gui/build/weightData0.txt" using 1:6 title 'w4' with lines, \
  11. "workspace/LudoGame/ludo-gui/build/weightData0.txt" using 1:7 title 'w5' with lines, \
  12. "workspace/LudoGame/ludo-gui/build/weightData0.txt" using 1:8 title 'w6' with lines, \
  13. "workspace/LudoGame/ludo-gui/build/weightData0.txt" using 1:9 title 'w7' with lines, \
  14. "workspace/LudoGame/ludo-gui/build/weightData0.txt" using 1:10 title 'w8' with lines, \
  15. "workspace/LudoGame/ludo-gui/build/weightData0.txt" using 1:11 title 'w9' with lines, \
  16. "workspace/LudoGame/ludo-gui/build/weightData0.txt" using 1:12 title 'w10' with lines, \
  17. "workspace/LudoGame/ludo-gui/build/weightData0.txt" using 1:13 title 'w11' with lines, \
  18. "workspace/LudoGame/ludo-gui/build/weightData0.txt" using 1:14 title 'w12' with lines, \
  19. "workspace/LudoGame/ludo-gui/build/weightData0.txt" using 1:15 title 'w13' with lines, \
  20. "workspace/LudoGame/ludo-gui/build/weightData0.txt" using 1:16 title 'w14' with lines;
  21.  
  22. set origin 0.0,0.0;
  23. plot "workspace/LudoGame/ludo-gui/build/weightData0.txt" using 1:39 title 'weight variation' with lines, \
  24.  
  25.  
  26. set origin 0.5,0.5;
  27. plot "workspace/LudoGame/ludo-gui/build/weightData0.txt" using 1:40 title 'teamWins' with lines, \
  28. "workspace/LudoGame/ludo-gui/build/weightData0.txt" using 1:42 title 'bestWins' with lines, \
  29. #"workspace/LudoGame/ludo-gui/build/weightData0.txt" using 1:41 title 'survival' with lines, \
  30.  
  31. set origin 0.5,0.0;
  32. set autoscale;
  33. plot "workspace/LudoGame/ludo-gui/build/weightData0.txt" using 1:43 title 'performance' with lines, \
  34.  
  35.  
  36. unset multiplot
  37.  
  38.  
  39.  
  40. pause 1
  41. reread
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement