pltaxisoff
pltaxisoff is not a formal function in Matplotlib. In practice, turning off the axes for a plot is achieved using the axis('off') command in the pyplot interface, or via an Axes object's methods such as axis('off') or set_axis_off(). The phrase is commonly used informally to refer to hiding axis lines, tick marks, and labels.
Using axis('off') hides the axis spine lines, tick marks, and tick labels for the current axes, leaving
This technique is particularly common when displaying images or diagrams where axis information would be distracting
Notes and alternatives: axis in Matplotlib accepts other string options and numeric specifications, such as 'on',