We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi Sibyl
thanks to this repository, I now have a deeper understanding of marketing mix modeling
I have a question about line 541 of mmm_stan.py. https://github.com/sibylhe/mmm_stan/blob/main/mmm_stan.py#L541
in README, definition of delta is mc_pred - mc_ture, but delta is mc_true - mc_pred in line 541 . Is there any problem?
mc_pred - mc_ture
mc_true - mc_pred
The text was updated successfully, but these errors were encountered:
Indeed! Fixed it. Thanks for pointing out this error!
Sorry, something went wrong.
you should fix it as mc_df['mc_delta'] = mc_df['mc_pred'] - mc_df['mc_true'] instead of mc_df['mc_delta'] = ['mc_pred'] - mc_df['mc_true']
mc_df['mc_delta'] = mc_df['mc_pred'] - mc_df['mc_true']
mc_df['mc_delta'] = ['mc_pred'] - mc_df['mc_true']
https://github.com/sibylhe/mmm_stan/blob/main/mmm_stan.py#L541
👌
No branches or pull requests
Hi Sibyl
thanks to this repository, I now have a deeper understanding of marketing mix modeling
I have a question about line 541 of mmm_stan.py.
https://github.com/sibylhe/mmm_stan/blob/main/mmm_stan.py#L541
in README, definition of delta is
mc_pred - mc_ture
, but delta ismc_true - mc_pred
in line 541 . Is there any problem?The text was updated successfully, but these errors were encountered: