InterviewSolution
Saved Bookmarks
| 1. |
Point out the correct combination with regards to kind keyword for graph plotting.(a) ‘hist’ for histogram(b) ‘box’ for boxplot(c) ‘area’ for area plots(d) all of the mentionedThe question was posed to me by my school principal while I was bunking the class.The query is from Plotting in Python in section Data Analysis with Python of Data Science |
|
Answer» RIGHT CHOICE is (d) all of the mentioned The explanation is: The kind keyword ARGUMENT of plot() accepts a handful of values for plots other than the default Line plot. |
|