EDpOPT: Search c-optimal designs for estimating the EDp under the...

Description Usage Arguments Author(s) References Examples

View source: R/EDpOPT.R

Description

Obtain c-optimal design (i.e., optimal dose levels and corresponding optimal weights) for estimating the EDp under the 5-parameter logistic model. The EDp is the dose level that achieve the 100p% of the difference between the maximum and the minimum responses.

Usage

1
EDpOPT(LB,UB,P,EDp,grid,r,epsilon,N_dose,log_scale)

Arguments

LB

Numeric. Predetermined lower bound of the dose range for the original dose level.

UB

Numeric. Predetermined lower bound of the dose range for the original dose level.

P

A numeric vector. Solicited information on nominal values for the vector for the 5PL model. P=(p1, p2, p3, p4, p5), where p1 is the upper limit of the response, p2 is the slope that control the stiffness of the response curve, p3 is the position of the transition region in dose, p4 is the lower limit of the response, and p5 is the asymmetric factor.

EDp

Numeric. An user select value to define the EDp. For example, EDp=.05 to define the ED50.

grid

Numeric. The grid density to discretize the predetermined dose interval. Default is 0.01.

r

Numeric. The number of iterations to set an initial design to search the c-optimal design. Default is 30 and needed to be increased (for example, r=50) if the searched optimal design is not a true optimal. It can be verified by the verification plot.

epsilon

Numeric. Stopping criterion for the algorithm to search the c-optimal design. Default is 0.001.

N_dose

Set to TRUE if the original dose levels take negative values. Set to FALSE if the original dose levels take positive values. Default is FALSE

log_scale

Set to TRUE if a user wants to set the X-axis(dose level) on log scale in the verification plot of the optimal design. Otherwise, set to FALSE. Default is TRUE. Note: this need to set FALSE when the original dose levels take negative values.

Author(s)

Seung Won Hyun, Weng Kee Wong, and Yarong Yang

References

Hyun, S. W., Wong, W.K., Yang, Y. Optimal designs for asymmetric sigmoidal response curves in bioassays and immunoassays. (submitted to Statistical Methods in Medical Research)

Hyun, S.W., Wong, W.K, Yang, Y. VNM: An R Package for Finding Multiple-Objective Optimal Designs for the 4-Parameter Logistic Model. (Journal of Statistical Software, 83, 1-19, 2018, doi:10.18637/jss.v083.i05.)

Examples

1
2
3
4
5
6
7
8
##Search the c-optimal design for estimating the ED50 under the 5PL model

##Parameter values for the 5PL model
T5=c(30000,0.5,800,0.5,2)

##Dose range=[1.95,32000]

EDpOPT(LB=1.95,UB=32000, P=T5,EDp=.5,grid=.01, r =30,epsilon=.001)

Opt5PL documentation built on May 2, 2019, 8:26 a.m.

Related to EDpOPT in Opt5PL...