""" Simple matplotlib example """ import numpy as np import matplotlib.pyplot as plt x_numbers = np.array([1, 2, 3]) y_numbers = np.array([2, 4, 6]) fig, ax = plt.subplots() ax.plot(x_numbers, y_numbers, marker="o") if __name__ == "__main__": plt.show()