naive_confidence_intervals | R Documentation |
Naive confidence interval
naive_confidence_intervals(
x,
alpha = 0.05,
var = NULL,
return_all_times = FALSE
)
x |
The observed data points (a real vector). |
alpha |
The significance level (a (0, 1)-valued real). |
var |
The known or estimated variance of the observations, 'x'. If left 'NULL', then the empirical variance of 'x' will be taken (positive real-valued vector or 'NULL'). |
return_all_times |
Should the confidence sequence be returned at each time? (boolean) |
A list containing the following vectors:
l |
The lower confidence interval (a real vector). |
u |
The upper confidence interval (a real vector). |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.