Function that calculates the Ds-Optimal designs for the interest parameters given by intPar
. The
rest of the parameters can help the convergence of the algorithm.
DsWFMult(
init_design,
grad,
par_int,
min,
max,
grid.length,
join_thresh,
delete_thresh,
delta_weights,
tol,
tol2
)
list correspondent to the output of the correspondent algorithm called, dependent on the criterion. A list of two objects:
optdes: a dataframe with the optimal design in two columns, Point
and Weight
.
sens: a plot with the sensitivity function to check for optimality of the design.
optional dataframe with the initial design for the algorithm. A dataframe with two columns:
Point
contains the support points of the design.
Weight
contains the corresponding weights of the Point
s.
function of partial derivatives of the model.
numeric vector with the index of the parameters
of interest. Only necessary when
the criterion
chosen is 'Ds-Optimality'.
numeric value with the inferior bound of the space of the design.
numeric value with the upper bound of the space of the design.
numeric value that gives the grid to evaluate the sensitivity function when looking for a maximum.
numeric value that states how close, in real units, two points must be in order to be joined together by the join heuristic.
numeric value with the minimum weight, over 1 total, that a point needs to have in order to not be deleted from the design.
numeric value in (0, 1), parameter of the algorithm.
numeric value for the convergence of the weight optimizing algorithm.
numeric value for the stop condition of the algorithm.
Other cocktail algorithms:
DWFMult()
,
IWFMult()
,
WFMult()