#Loading Library
import matplotlib.pyplot as plt

#Creating sample Dataset
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]

#Creating plot
plt.plot(x, y)
plt.show()