Credits Overview Plotting Styles Commands Terminals

Multiplots

The multiplot mechanism is used to combine the output of several plot or splot commands into a single page or screen view. This mechanism has been reworked extensively in gnuplot 6. Starting with version 6.0.5 interactive mousing is possible in each panel of the combined view and the full multiplot can be replotted using either the existing replot command or the new remultiplot command. Multiplot mode is initiated by the command set multiplot and continues until a closing unset multiplot.

   load $GPVAL_PRE_MULTIPLOT    # restore original graphics settings
   set style fill transparent   # change just one setting
   load #GPVAL_LAST_MULTIPLOT   # re-execute the multiplot commands

[EXPERIMENTAL] Details may change. At this time several limitations apply.

     $DATA << EOD
     1 2 3
     4 5 6
     EOD
     set multiplot
       plot $DATA using 1:2 with points pt 5
       plot $DATA using 1:3 with points pt 6
     unset multiplot