summaryrefslogtreecommitdiff
path: root/doc/array_naive_vs_episodic.gnuplot
diff options
context:
space:
mode:
authorFlorian Jung <flo@windfisch.org>2016-01-08 21:00:41 +0100
committerFlorian Jung <flo@windfisch.org>2016-01-08 21:00:41 +0100
commit92f25c46b2d3e7e22b62faa4ca450b29757e977a (patch)
treed052d211539b291006a4590448a8cbaed86ce136 /doc/array_naive_vs_episodic.gnuplot
parentc77a636c82fcf5211beadab90371719f175ef954 (diff)
graphs
Diffstat (limited to 'doc/array_naive_vs_episodic.gnuplot')
-rw-r--r--doc/array_naive_vs_episodic.gnuplot8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/array_naive_vs_episodic.gnuplot b/doc/array_naive_vs_episodic.gnuplot
index ebb7408..00e9a92 100644
--- a/doc/array_naive_vs_episodic.gnuplot
+++ b/doc/array_naive_vs_episodic.gnuplot
@@ -1,8 +1,8 @@
set xrange [0: 1000]
-plot 'logs/old.log' with lines,\
- 'logs/new.log' with lines,\
- 'logs/nn.log' using ($1,$2*20) with lines,\
- 'logs/nn2.log' using ($1,$2*20) with lines
+plot 'logs/old.log' with lines title 'QArray, old textbook strategy',\
+ 'logs/new.log' with lines title 'QArray, new reversed strategy',\
+ 'logs/nn2.log' using ($1, $2*20) with lines title 'QNN',\
+ 'logs/nn.log' using ($1, $2*20) with lines title 'QNN, friendlyness=1'
pause -1