|
From: Ethan A M. <eam...@gm...> - 2016-08-22 04:17:51
|
On Monday, 22 August 2016 10:01:26 AM Wenqiang Liu wrote: > Dear Ethan, > I followed your answer and tried to plot my figure. > My original file is 3dtest.txt which is a text file as the first attachment. And then I used splot "3dtest.txt" u 2:1:3 with lines to plot. The generated figure is the same as 3dtest.eps, which is the second attachment. > I found there are lines between X axis and Y axis. But I do not want them. > I think I am approaching my goal, however, there are still some modifications needed. > Could you please give me some more instructions? > Any help would be much appreciated! > > Best Regards > Liu # plot layout set xyplane at 0 set grid x y z set border 0x37F unset key # axis and tic labels set format x "%.2g keV" set ytics offset 0, -1 # move ytics down set ylabel "Time (ps)" offset 0,-2 # move y label down set xrange [0.0 : 0.25] # orientation set view 70, 100 # plot command set surface explicit splot '3dtest.txt' using 1:2:3 with lines linewidth 3 |