Plot axes only

If the GRAPH\AXESONLY command is entered with no parameters, autoscaling does not apply. The minima, maxima, and number of increments will be the same as the last set of axes drawn. The axes scales can be set up before entering the GRAPH\AXESONLY command, using the SCALES command. Autoscaling may apply if two parameters, x and y, are entered. For example:

 SET AUTOSCALE ON       ! turn on autoscaling
 GRAPH\AXESONLY X Y     ! plot axes autoscaled to the data

 SCALES -5 5 0 10 20 0  ! -5 <= x <= 5  and  10 <= y <= 20
 GRAPH\AXESONLY         ! plot the axes only
 

  Plot data and axes
  Plot data only