linux - Any graph plotting tool better than GNU plot? -
i have used gnu-plot quite long time , thing didn't quality of graph produces.
i admire ease can plot graphs in gnu-plot, wished resultant graph better in terms of quality. example: thickness of lines, color quality etc..
so is there tool retains ease-of-use of gnu plot eliminates quality issues?
[i graph excel produces, unfortunately not on linux...]
if want tool gnuplot
, using wrongly. agree, default colors , settings not pretty, can tweak in definition file ~/.gnuplot
set macros png="set terminal png size 1800,1800 crop enhanced font \"/usr/share/fonts/truetype/times.ttf,30\" dashlength 2; set termoption linewidth 3" eps="set terminal postscript fontfile \"/usr/share/fonts/truetype/times.ttf\"; set termoption linewidth 3; set style line 1 linecolor rgb '#de181f' linetype 1 # red set style line 2 linecolor rgb '#0060ae' linetype 1 # blue set style line 3 linecolor rgb '#228c22' linetype 1 # forest green set style line 4 linecolor rgb '#18ded7' linetype 1 # opposite red set style line 5 linecolor rgb '#ae4e00' linetype 1 # opposite blue set style line 6 linecolor rgb '#8c228c' linetype 1 # opposite forest green
sample script:
@png set output "output.png" plot x ls 1, -x ls 2, x**3 ls 3
and have quite nice graph already. tweak linewidth
, fontsize
bit, , can better ever obtain excel.
Comments
Post a Comment