Advertisements
Advertisements
प्रश्न
Write the difference between the following functions: plt.plot([1,2,3,4]), plt.plot([1,2,3,4], [1,4,9,16]).
उत्तर
plt.plot([I,2,3,4]) | plt.pIot([I,2,3,4],[1,4,9,16]) | |
1 | In plt.plot([1,2,3,4]) a single list or array is provided to the plot() command. | In plt.pIot([1,2,3,4],[l,4,9,16]) the first two parameters are ‘x’ and ‘y’ coordinates. |
2 | matplotlib assumes it is a sequence of y values, and automatically generates the x values. | This means we have 4 co-ordinate according to these ‘list as (1,1), (2,4), (3,9), and (4,16). |
3 | Since python ranges start with 0, the default x vector has the same length as y but starts with 0. Hence the x data are [0,1,2,3]. |
APPEARS IN
संबंधित प्रश्न
Explain in detail the types of pyplots using Matplotlib.
Explain the various buttons in a matplotlib window.
Observe the output figure. Identify the coding for obtaining this output.
Read the code:
a. import matplotlib.pyplot as plt
b. plt.plot(3,2)
c. plt.show()
Identify the output for the above coding.
Read the statements given below. Identify the right option from the following pie chart.
Statement A: To make a pie chart with Matplotlib, we can use the plt.pie() function.
Statement B: The autopct parameter allows us to display the percentage value using the Python string formatting.
Identify the right type of chart using the following hints.
Hint 1: This chart is often used to visualize a trend in data over intervals of time.
Hint 2: The line in this type of chart is often drawn chronologically.