You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I believe the line that reads z <- abs(qnorm(((100 - 95)/2)/100)) in the function should be z <- abs(qnorm(((100 - ci_level)/2)/100)). Editing the function as such produces different confidence limits when ci_level is set.
The text was updated successfully, but these errors were encountered:
Using example data in package help
Output with default ci_level
Output with ci_level set to 99
I believe the line that reads
z <- abs(qnorm(((100 - 95)/2)/100))
in the function should bez <- abs(qnorm(((100 - ci_level)/2)/100))
. Editing the function as such produces different confidence limits when ci_level is set.The text was updated successfully, but these errors were encountered: