Give the output for the following
piece of python code:
import matplotlib.pyplot as plt
x1=[10,15,20,25]
y1=[5,10,12,6]
plt.bar(x1,y1)
plt.xlabel("X_AXIS")
plt.ylabel("Y_AXIS")
plt.title("BAR CHART SAMPLE")
plt.show()
Answers
Answered by
1
Answer:
Let's Learn MatPlotLib. Introduction to MatPlotLib. The most… | by Ishan Dixit ...
18-Jul-2018 — import matplotlib.pyplot as pltx = [1, 2, 3] y = [4, 5, 6]x1 = [10, 11, 12] y1 = [13, 14, 15]x2 = [20, 21, 22] y2 = [23, 24, 25]plt.xlabel('X_LABEL')
brainly.in › ... › Secondary School
Give the output for the following piece of python code: import matplotlib.pyplot as ...
07-Oct-2020 · 1 answer
x1=[10,15,20,25] y1=[5,10,12,6] plt. bar(x1,y1) plt.xlabel("X_AXIS ...
Similar questions