Informatics Practices
The part of chart which identifies different sets of data plotted on plot by using different colors is called:
- legends
- title
- axes
- figure
PyPlot
3 Likes
Answer
legends
Reason — A legend is a part of a chart that identifies different sets of data plotted on the plot by using different colors, symbols.
Answered By
3 Likes
Related Questions
Which of the following methods should be employed in the code to display a plot()?
- show()
- display()
- execute()
- plot()
Which of the following statements is used to create a histogram of 'step' type with 20 bins?
- plt.hist(x, bins = 20, histtype = "barstacked")
- plt.hist(x, bins=20)
- plt.hist(x, bins=20, histtype="step")
- plt.hist(x, bins=20, histtype=hist())
Which of the following is an incorrect example of savefig() function?
- plt.savefig("bar1.pdf" )
- plt.savefig("bar1.png")
- plt.savefig("bar1.eps")
- plt.savefig("bar1.ppt")
Which of the following plots makes it easy to visualize a trend in data over intervals of time.
- Box plot
- Histogram
- Line Chart
- Bar chart