How to construct response curves in original scale? How to get sigmoid params? #1619
Unanswered
Snowcatcat
asked this question in
Q&A
Replies: 1 comment 1 reply
-
Is this the function that you are looking for? pymc-marketing/pymc_marketing/mmm/mmm.py Lines 1801 to 1834 in a87f1fa You can see that it is in the original scale by default: pymc-marketing/pymc_marketing/mmm/mmm.py Lines 1853 to 1855 in a87f1fa The method doesn't need to be passed since that is derived from the model definition. mmm = ...
mmm.fit(X, y)
mmm.plot_direct_contribution_curves(show_fit=True) |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Constructing the response curves used to be 1 line of code:
sigmoid_params = mmm.compute_channel_curve_optimization_parameters_original_scale(method='sigmoid')
Does anyone know how to do it now? In the original scale. I have not updated my package for a while, looks like this function has retried and not in the instructions any more.
Thanks
Beta Was this translation helpful? Give feedback.
All reactions