You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Following #632, it's easy to build in support for adstock or saturation level sampling and plotting to assess the priors and posteriors independent of a larger models.
For instance, the workflow might be:
frompymc_marketing.mmmimportMichaelisMentenSaturation# Analysis outside of the modelsaturation=MichaelisMentenSaturation()
prior: az.Dataset=saturation.sample_prior()
saturation.plot_curve(parameters=prior)
# Produces saturation curve along some default access
Which could be helpful for analysis of the posterior as well.
For instance,
mmm=MMM(..., saturation=saturation, ...)
mmm.fit(X, y)
# Could be external or used internally as well.mmm.saturation.plot_curve(parameters=mmm.fit_result)
The text was updated successfully, but these errors were encountered:
Following #632, it's easy to build in support for adstock or saturation level sampling and plotting to assess the priors and posteriors independent of a larger models.
For instance, the workflow might be:
Which could be helpful for analysis of the posterior as well.
For instance,
The text was updated successfully, but these errors were encountered: