ci.bisection | R Documentation |
This function constructs the two-sided confidence interval of a given testing procedure using the bisection method.
ci.bisection(
f,
farg,
alpha,
b0,
b1,
tol,
max.iter,
pvals,
progress,
type,
dp,
rngstate,
para.match
)
f |
The function that represents a testing procedure. |
farg |
The list of arguments to be passed to the function of testing procedure. |
alpha |
The significance level(s). This can be a vector. |
b0 |
The lower bound of the initial bracket. |
b1 |
The upper bound of the initial bracket. |
tol |
The tolerance level in the bisection method. |
max.iter |
The maximum number of iterations in the bisection method. |
pvals |
The data frame that consists the points and the corresponding
|
progress |
The boolean variable for whether the result messages should
be displayed in the procedure of constructing confidence interval. If
it is set as |
type |
The type of the confidence interval. Set |
dp |
The number of decimal places to be displayed for the |
rngstate |
The current RNG state obtained from |
para.match |
The list of parameters to be matched. |
Return the solution of the bisection method and the updated data frame.
pt |
The last test point. |
iter |
The number of iterations. |
pvals |
The data frame that consists of the points and the
corresponding |
df_bis |
The data frame storing the information for the bisection method in each iteration. |
last_iter_msg |
The message for the last iteration. This refers to whether why the bisection method stops. |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.