I've got this:#+tblname: mydata| -2 | 0 || -0.015 | 0 || | || 0.015 | 1 || 2 | 1 |##+begin_src gnuplot :var data=mydata :exports results :file images/gap1.png#+begin_src gnuplot :var data=mydata :results output :file images/gap1.pngresetset terminal png size 350,262set border linewidth 1.5# set style line 1 lc rgb '#0060ad' lt 1 lw 2 pt 6 ps 1.25 # --- blueset style line 1 lc rgb '#0060ad' lt 1 lw 2 # --- blueset data missingunset keyset ytics 1set tics scale 0.75set xrange [-2:2]set yrange [-0.5:1.5]set xzeroaxis linetype 2 linewidth 1set yzeroaxis linetype 2 linewidth 1set tics scale 0.75set xtics 1set ytics 0.5# Defining a step function#s(x) = x<0 ? 0.0 : 1.0plot data with lines ls 1#+end_srcwhich works fine producing exactly the image I want. However, I don't really need the table showing up on an export (to html at the moment). Is there a way to suppress the table `mydata` from being shown?LB