Replies: 1 comment
-
I do not have a concrete answer but here are some ideas. First of all note that the carryover parameter implicitly depends on the maximum number of period to consider (see |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm looking for a way to interpret the geometric adstock results (alpha parameter) to translate it into an approximate number of periods before decay/effect is negligible, would this be an appropriate approach to back into that interpretation (assume alpha is the mean posterior coefficient)?
`
import math
alpha = 0.2
decay_threshold = 0.01 # ex: determine when ad effect is decayed to 1%
num_periods = math.log(decay_threshold, alpha)
print(f'It takes approximately {round(num_periods,2)} periods to reach {decay_threshold:.2%} of the original channel effect.')
`
Beta Was this translation helpful? Give feedback.
All reactions