Skip to content
# Start coding here... 

Data visualization playground

from matplotlib import pyplot as plt

sample_x = [25, 26, 27, 29, 30]
sample_y = [3, 4, 5, 6, 7]

plt.plot(sample_x, sample_y)

plt.show()
Current Type: Bar
Current X-axis: None
Current Y-axis: None
Current Color: None