Fill in the blank in the given code, if we want to plot a line chart for values of list ‘a’ vs values of list ‘b’.a = [1, 2, 3, 4, 5]b = [10, 20, 30, 40, 50]import matplotlib.pyplot as pltplt.plot __________

🎲 Try a Random Question  |  Total Questions in Quiz: 51  |  🧠 Study this quiz with Flashcards
This question is part of a full practice quiz:
CBSE Class 12 IP Data Visualization Practice Test — practice the complete quiz, review flashcards, or try a random question.

Data visualisation means graphical or pictorial representation of the data using graph, chart, etc.

The purpose of plotting data is to visualise.


Fill in the blank in the given code, if we want to plot a line chart for values of list ‘a’ vs values of list ‘b’.<br>a = [1, 2, 3, 4, 5]<br>b = [10, 20, 30, 40, 50]<br>import matplotlib.pyplot as plt<br>plt.plot __________