diff options
author | Florian Jung <flo@windfisch.org> | 2016-02-05 01:17:03 +0100 |
---|---|---|
committer | Florian Jung <flo@windfisch.org> | 2016-02-05 01:17:03 +0100 |
commit | 330f513d059bdff3ff9ff96895a434332eda17f3 (patch) | |
tree | 780e4fca99ce68bc8afd3693111af33fda3b20de /doc/array_naive_vs_episodic.gnuplot | |
parent | f352a2cdc621b78b2771748c5bc60b212480d08b (diff) |
irgendwas mit plots
Diffstat (limited to 'doc/array_naive_vs_episodic.gnuplot')
-rw-r--r-- | doc/array_naive_vs_episodic.gnuplot | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/array_naive_vs_episodic.gnuplot b/doc/array_naive_vs_episodic.gnuplot index a1196c5..6fb1911 100644 --- a/doc/array_naive_vs_episodic.gnuplot +++ b/doc/array_naive_vs_episodic.gnuplot @@ -1,9 +1,9 @@ set xrange [0: 1000] -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/nn3.log' using ($1, $2*20) with lines title 'QNN, randomize range 0.27',\ - 'logs/nn.log' using ($1, $2*20) with lines title 'QNN, friendlyness=1' +plot 'logs/old.log' with lines lt rgb 'red' title 'QArray, old textbook strategy',\ + 'logs/new.log' with lines lt rgb 'green' title 'QArray, new reversed strategy',\ + 'logs/nn2.log' using ($1, $2*20) with lines lt rgb 'blue' title 'QNN',\ + 'logs/nn3.log' using ($1, $2*20) with lines lt rgb 'cyan' title 'QNN, randomize range 0.27',\ + 'logs/nn.log' using ($1, $2*20) with lines lt rgb 'light-blue' title 'QNN, friendlyness=1' pause -1 |