R/AdministrationConstraints.R

#' @description The class \code{AdministrationConstraints} represents the constraint of an input to the system.
#' The class stores information concerning the constraints for the dosage regimen.
#' @title AdministrationConstraints
#' @param outcome A string giving the outcome for the administration.
#' @param doses A vector of double giving the doses.
#' @export An object of class \code{AdministrationConstraints}.

AdministrationConstraints = new_class( "AdministrationConstraints",
                                       package = "PFIM",
                                       properties = list(
                                         outcome = new_property(class_character, default = character(0)),
                                         doses = new_property(class_list, default = list())
                                       ))

Try the PFIM package in your browser

Any scripts or data that you put into this service are public.

PFIM documentation built on Jan. 30, 2026, 5:08 p.m.