CBSE Class 12 Informatics Practices Question 5 of 27

Data Visualization using Matplotlib — Question 6

Back to all questions
6
Question

Question 6

Differentiate between figure and axes.

Answer
FigureAxes
Figure is the outermost area of Matplotlib graph.Axes is the individual plot within the figure.
It contains one or more than one axes.It contains two or three axis objects.
It contains plots, legend, axis label, ticks, title etc.It contains title, an x-label and a y-label.
It provides a canvas for the plot.It displays the data in a specific format.