get_laugment_region {optedr} | R Documentation |
Get L-augment region
Description
Given a model, calculates the candidate points region for L-Optimality. The user gives an initial design for which he would like to add points and specifies the weight of the new points. Then he is prompted to choose a minimum efficiency. After that, the candidate points region is calculated.
Usage
get_laugment_region(
init_design,
alpha,
model,
parameters,
par_values,
design_space,
calc_optimal_design,
matB,
weight_fun = function(x) 1
)
Arguments
init_design |
dataframe with "Point" and "Weight" columns that represents the initial design to augment |
alpha |
combined weight of the new points |
model |
formula that represent the model with x as the independent variable |
parameters |
character vector with the unknown parameters of the model to estimate |
par_values |
numeric vector with the initial values of the unknown parameters |
design_space |
numeric vector with the limits of the space of the design |
calc_optimal_design |
boolean parameter, if TRUE, the optimal design is calculated and efficiencies of the initial and augmented design are given |
matB |
optional matrix of dimensions k x k, integral of the information matrix of the model over the interest region for I-optimality. |
weight_fun |
optional one variable function that represents the square of the structure of variance, in case of heteroscedastic variance of the response |
Value
A vector of the points limiting the candidate points region
See Also
Other augment region:
get_dsaugment_region()
Examples
init_des <- data.frame("Point" = c(30, 60, 90), "Weight" = c(1/3, 1/3, 1/3))
get_augment_region("D-Optimality", init_des, 0.25, y ~ 10^(a-b/(c+x)), c("a","b","c"),
c(8.07131, 1730.63, 233.426), c(1, 100), TRUE)
get_augment_region("D-Optimality", init_des, 0.25, y ~ 10^(a-b/(c+x)), c("a","b","c"),
c(8.07131, 1730.63, 233.426), c(1, 100), FALSE)