ImmunogenicitySubset {PoDBAY} | R Documentation |
Immunogenicity subset
Description
Function creates the immunogenicity subset based on the chosen method.
Usage
ImmunogenicitySubset(diseased,
nondiseased,
method = list(name = "Full", value = NA))
Arguments
diseased |
|
nondiseased |
|
method |
named list: a selected method for creating the immunogenicity subset method$name
method$value
|
Details
The total immunogenicity subset consists of the diseased immunogenicity subset and non-diseased immunogenicity subset. For all three methods implemented, we assume that the diseased immunogenicity subset contains all disease cases in the trial. Based on the chosen method, the the size of the non-diseaded immunogenicity subset can be derived as follows:
Size = number of subjects in the non-diseased immunogenicity subset
Titers = values of titers from which we want to sample in order to simulate the non-diseased immunogenicity subset
#Diseased = total number of diseased in the clinical trial
#Nondiseased = total number of non-diseased in the clinical trial
method$name = "Full"
Size = #Nondiseased
Titers = Nondiseased Titers
method$name = "Ratio"
Size = method$value * #Diseased
Titers = Nondiseased Titers
method$name = "Fixed"
Size = method$value
Titers = Nondiseased Titers + Diseased Titers
Value
Immunogenicity subset with subject level information about vaccination status and disease status, provided in the form of Population-class
object
Examples
## Example 1
# Data preparation
data(diseased)
data(nondiseased)
ImmunogenicitySubset(diseased,
nondiseased,
method = list(name = "Ratio",
value = 4))