Warning: session_start(): open(/tmp/sess_0687769b14719c8a38de6d5735f6e0d2, O_RDWR) failed: No such file or directory (2) in /var/www/html/dokuwiki/inc/init.php on line 273
Warning: session_start(): Failed to read session data: files (path: ) in /var/www/html/dokuwiki/inc/init.php on line 273
Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/dokuwiki/inc/init.php:273) in /var/www/html/dokuwiki/inc/auth.php on line 535
Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/dokuwiki/inc/init.php:273) in /var/www/html/dokuwiki/inc/Action/Export.php on line 109
Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/dokuwiki/inc/init.php:273) in /var/www/html/dokuwiki/inc/Action/Export.php on line 109
Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/dokuwiki/inc/init.php:273) in /var/www/html/dokuwiki/inc/Action/Export.php on line 109
====== Gnuplot Scraps ======
Useful Links:
* https://alvinalexander.com/technology/gnuplot-charts-graphs-examples/
Things to remember:
* ''set datafile separator ","'' sometimes it forgets how CSVs work?
* ''set key autotitle columnhead'' really useful for >1 data series
* ''set xtics (0,300,600,900,1200,1500,1800,2100,2400,2700,3000,3300,3600)'' not really needed with the following option
* ''set xtic 3600'' set xtic interval
* ''set xrange [0:33090]'' sometimes it's nice to manually define ranges
=== Examples ===
Ping RTT Graphing
set term qt font "Courier,12"
set label 1 'Std Dev: 0.0432' at 1500,0.775 font "Courier,12"
set label 2 'Jitter: 0.0396 ms' at 1500,0.763 font "Courier,12"
set label 3 'Avg RTT: 0.4662 ms' at 1500,0.75 font "Courier,12"
set ylabel 'RTT (Milliseconds)'
set xlabel '# Pings'
set xrange [0:3600]
set xtic 300
set title 'Raspberry Pi 3B v1.2, 3600 pings, Closed System'
plot 'RPi3Bv1.2.txt' w p notitle lt 6