|
From: Mathias B. <mat...@gm...> - 2014-08-06 11:51:00
|
Hi Gnuploters, I'm utrying to plot data using a matrix with an svg output. Here is my data file : ,30 ,60 ,90 ,120 100, 3.2, 1.81, 1.59, 1.48 200, 4.57, 2.93, 2.5, 2.03 300, 6.26, 4.19, 3.38, 2.96 400, 8.46, 5.67, 4.96, 3.68 Actually, it's 10x10 CSV matrix with row and column labels, but I truncated it to get a more readable 4x4 CSV matrix (still with row/column headers) And now my (minimal) script : set terminal svg set output 'file.svg' set datafile separator "," plot 'file' matrix rowheaders columnheaders using 1:2:3 notitle with image set datafile separator Gnuplot doesn't complain at all, but I do ! x and y scale is OK, as well as the "color scale" from min to max. However nothing is plot between my 2 axis ... It's not the first time I use a svg terminal (although it's my first time with a matrix image). It seems that row/columnheaders is a quite new feature ... Is this not a svg terminal feature yet? (is it output terminal-dependant?) Thanks in advance ! Hope to get an answer soon. PS : It works perfectly with a png terminal. |