from pathlib import Path import matplotlib import matplotlib.pyplot as plt months = ["Jan", "Feb", "Mar", "Apr", "May", "Jun"] revenue = [62, 68, 71, 86, 91, 88] fig, ax = plt.subplots(figsize=(6, 3.5), layout="constrained") ax.plot(months, revenue, marker="o", linewidth=2.5, color="#2563eb")