-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
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
Introduce confidence interval to the injury model #100
Comments
usr110
added a commit
that referenced
this issue
May 26, 2022
usr110
added a commit
that referenced
this issue
May 26, 2022
usr110
added a commit
that referenced
this issue
May 26, 2022
usr110
added a commit
that referenced
this issue
May 26, 2022
usr110
added a commit
that referenced
this issue
May 26, 2022
usr110
added a commit
that referenced
this issue
May 27, 2022
… calculates confidence interval. Ref #100
usr110
added a commit
that referenced
this issue
May 31, 2022
…s arises when `standard errors` are too high. In that case, use the `response` type and its `standard errors` instead. Need to revisit this after talking to Chris. Re #100
usr110
added a commit
that referenced
this issue
Jun 1, 2022
usr110
added a commit
that referenced
this issue
Nov 21, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For the underlying
poisson
injury model, usingStandard Errors (SE)
, include confidence interval in the model and follow it through to the final outputs.For the
95 %
interval, use the equations below:> lower_bound = predicted_value - (1.96 * standard_error)> upper_bound = predicted_value + (1.96 * standard_error)Use
type = 'link'
for thepredict
function andlinkinv
function to predict fitted and lower and upper valueswhere
ilink
isReference: https://fromthebottomoftheheap.net/2018/12/10/confidence-intervals-for-glms/
The text was updated successfully, but these errors were encountered: