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
The bass f function, which is the derivative of F, is calculated using a time interval of 1. This yields inaccurate results.
> bass_f function (Time, p, q) { ifelse(Time == 1, bass_F(Time, p, q), bass_F(Time, p, q) - bass_F(Time - 1, p, q)) }
The f function has a closed form equation that should be used instead of the inaccurate numerical differentiation with such large time interval:
(p+q)^2 / p * exp(-(p+q)*20) / ( 1 + q / p * exp(-(p+q)*20))^2
Alternatively, one can simply substitute into the differential equation for F:
f = (1 - F) * (p + q * F).
The text was updated successfully, but these errors were encountered:
Thanks for reporting. Would appreciate a Pull request.
Sorry, something went wrong.
No branches or pull requests
The bass f function, which is the derivative of F, is calculated using a time interval of 1. This yields inaccurate results.
The f function has a closed form equation that should be used instead of the inaccurate numerical differentiation with such large time interval:
Alternatively, one can simply substitute into the differential equation for F:
The text was updated successfully, but these errors were encountered: