Learn R Programming

adoptr (version 1.1.1)

subject_to: Create a collection of constraints

Description

subject_to(...) can be used to generate an object of class ConstraintsCollection from an arbitrary number of (un)conditional constraints.

Usage

subject_to(...)

# S4 method for ConstraintsCollection,TwoStageDesign evaluate(s, design, optimization = FALSE, ...)

Value

an object of class ConstraintsCollection

Arguments

...

either constraint objects (for subject_to or optional arguments passed to evaluate)

s

object of class ConstraintCollection

design

object

optimization

logical, if TRUE uses a relaxation to real parameters of the underlying design; used for smooth optimization.

See Also

subject_to is intended to be used for constraint specification the constraints in minimize.

Examples

Run this code
# define type one error rate and power
toer  <- Power(Normal(), PointMassPrior(0.0, 1))
power <- Power(Normal(), PointMassPrior(0.4, 1))

# create constrain collection
subject_to(
  toer  <= 0.025,
  power >= 0.9
)

Run the code above in your browser using DataLab