import matplotlib.pyplot as plt f = plt.figure() ax = plt.axes() ax.set_title('An example plot') independent = [1, 2, 3, 4] dependent = [10, 100, 275, 325] ax.plot(independent, dependent) ax.set_xlabel('x') ax.set_ylabel('y') f.show()