I have a .dat file with 50000 rows and 101 columns and try to plot in GNUPLOT by using command **plot "test.dat" matrix with image" **. But no plot occurs . PLz help.
Asked
Active
Viewed 1,089 times
1 Answers
0
Probably too late, but just wanted to put the solution out there:
set terminal postscript size 12, 10 enhanced color
set output 'worked.eps'
plot 'file_with_57k_rows_and_400_columns.tsv' matrix with image
Apparently postrscript
terminal works but eps
or png
don't. This will result in big eps file size, but ps2pdf
may be handy later.
gnuplot
, typehelp
, and follow your nose tohelp plot
.