WorksheetsPYPLOT
Total questions: 10
Worksheet time: 5mins
----------means graphical or pictorial representation of the data using graph, chart, etc.
Data visualisation
Visual Data
Matplot
None of the above
Which of the following library to be imported for creating chart in python?
Matplotlib
Random
Math
Pandas
Which module of matplotlib library is required for plotting of graph?
plot
pyplot
matplot
None of the above
Which of the following command is correct to install matplotlib?
pip install matplot
pipe install matplotlib
pip install matplotlib
None of the above
---------function of the pyplot module is used to create a figure
show( )
plot( )
ploting( )
plots()
A figure/chart contains __________________
Legend
Axis
labels
Plotting area
All of the above
_____________ function is used to display figure/chart.
showing( )
show( )
display( )
screen( )
To plot x versus y, we can write _____________ #plt is an alias for matplotlib.pyplot
plt.plot(y, x)
plt.plot(x)
plt.plot(x,y)
None of the above
Q9. Values which are displayed on x-axis is called _____________
y ticks
x ticks
xy ticks
None of the above
Q10. Values which are displayed on y-axis is called _____________
y ticks
x ticks
xy ticks
None of the above
