skel_conf_interval | R Documentation |
skel_conf_interval()
is a vectorized function. Use it to make multiple
intervals from, say, data-frame columns. skel_conf_interval_pair()
is the
unvectorized function. Use it to make a single interval from a vector (pair) of two
numbers.
skel_conf_interval(xs, ys, skeleton = "[{xs}, {ys}]")
skel_conf_interval_pair(x, skeleton = "[{x[1]}, {x[2]}]")
xs |
a vector of the first elements in the intervals |
ys |
a vector of the second elements in the intervals |
skeleton |
glue-style format to fill. defaults to |
x |
a vector of two elements to plug into the confidence interval |
These functions are wrappers around calls to glue::glue()
.
Originally, skel_conf_interval()
was named skel_conf_interval_v()
.
strings representing confidence intervals
skel_conf_interval(c(.1, .2), c(.3, .4))
skel_conf_interval_pair(c(.1, .3))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.