import matplotlib.pyplot as plt

from pymc_marketing.mmm import YearlyFourier

yearly = YearlyFourier(n_order=3)
prior = yearly.sample_prior()
curve = yearly.sample_curve(prior)
yearly.plot_curve(curve)
plt.show()