View source: R/check_confidence_interval.R
check_confidence_interval | R Documentation |
confidence_interval
is valid.
Check if the confidence_interval
is valid,
which is when:its length is 1
its only element is either
NA
a number between 0.0 and 1.0 (i.e. excluding 0.0 and 1.0)
check_confidence_interval(confidence_interval)
confidence_interval |
confidence interval, a value between (and excluding both) 0.0 and 1.0. The confidence interval helps assess the certainty of an estimation: you can be 99 percent sure a value is within the range of the 0.99 confidence interval The |
Will stop if not
Nothing. Will stop if the input is not a number between 0.0 and 1.0
Richèl J.C. Bilderbeek
check_confidence_interval(NA)
check_confidence_interval(0.01)
check_confidence_interval(0.95)
check_confidence_interval(0.99)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.