Learn R Programming

httk (version 2.5.0)

httkpop_generate: Generate a virtual population for PBTK

Description

Generate a virtual population characterized by demographic, anthropometric, and physiological parameters relevant to PBTK.

Usage

httkpop_generate(
  method,
  nsamp = NULL,
  gendernum = NULL,
  agelim_years = NULL,
  agelim_months = NULL,
  weight_category = c("Underweight", "Normal", "Overweight", "Obese"),
  gfr_category = c("Normal", "Kidney Disease", "Kidney Failure"),
  reths = c("Mexican American", "Other Hispanic", "Non-Hispanic White",
    "Non-Hispanic Black", "Other"),
  gfr_resid_var = TRUE,
  ckd_epi_race_coeff = FALSE
)

Value

A data.table where each row represents an individual, and each column represents a demographic, anthropometric, or physiological parameter. Details of the parameters returned and their units are in the following tables.

Arguments

method

The population-generation method to use. Either "virtual individuals" or "direct resampling." Short names may be used: "d" or "dr" for "direct resampling", and "v" or "vi" for "virtual individuals".

nsamp

The desired number of individuals in the virtual population. nsamp need not be provided if gendernum is provided.

gendernum

Optional: A named list giving the numbers of male and female individuals to include in the population, e.g. list(Male=100, Female=100). Default is NULL, meaning both males and females are included, in their proportions in the NHANES data. If both nsamp and gendernum are provided, they must agree (i.e., nsamp must be the sum of gendernum).

agelim_years

Optional: A two-element numeric vector giving the minimum and maximum ages (in years) to include in the population. Default is c(0,79). If only a single value is provided, both minimum and maximum ages will be set to that value; e.g. agelim_years=3 is equivalent to agelim_years=c(3,3). If agelim_years is provided and agelim_months is not, agelim_years will override the default value of agelim_months.

agelim_months

Optional: A two-element numeric vector giving the minimum and maximum ages (in months) to include in the population. Default is c(0, 959), equivalent to the default agelim_years. If only a single value is provided, both minimum and maximum ages will be set to that value; e.g. agelim_months=36 is equivalent to agelim_months=c(36,36). If agelim_months is provided and agelim_years is not, agelim_months will override the default values of agelim_years.

weight_category

Optional: The weight categories to include in the population. Default is c('Underweight', 'Normal', 'Overweight', 'Obese'). User-supplied vector must contain one or more of these strings.

gfr_category

The kidney function categories to include in the population. Default is c('Normal','Kidney Disease', 'Kidney Failure') to include all kidney function levels.

reths

Optional: a character vector giving the races/ethnicities to include in the population. Default is c('Mexican American','Other Hispanic','Non-Hispanic White','Non-Hispanic Black','Other'), to include all races and ethnicities in their proportions in the NHANES data. User-supplied vector must contain one or more of these strings.

gfr_resid_var

TRUE to add residual variability to GFR predicted from serum creatinine; FALSE to not add residual variability

ckd_epi_race_coeff

TRUE to use the CKD-EPI equation as originally published (with a coefficient changing predicted GFR for individuals identified as "Non-Hispanic Black"); FALSE to set this coefficient to 1.

Demographic variables

NameDefinitionUnits
seqnNHANES unique identifier (only included if method = "direct resampling")NA
genderSex: "Male" or "Female"NA
rethRace/ethnicity: "Non-Hispanic Black", "Non-Hispanic white", "Mexican American", "Other Hispanic", or "Other".NA
age_yearsAge (0-79 years)years
age_monthsAge (0-959 months)months

Body measures and laboratory measurements

NameDefinitionUnits
heightHeightcm
weightBody weightkg
serum_creatSerum creatininemg/dL
hematocritHematocrit (percentage by volume of red blood cells in blood)%

Tissue masses

NameDefinitionUnits
Blood_massMass of bloodkg
Brain_massMass of brainkg
Gonads_massMass of gonadskg
Heart_massMass of heartkg
Kidneys_massMass of kidneyskg
Large_intestine_massMass of large intestinekg
Liver_massMass of liverkg
Lung_massMass of lungskg
Muscle_massMass of skeletal musclekg
Pancreas_massMass of pancreaskg
Skeleton_massMass of skeleton (including bone, red and yellow marrow, cartilage, periarticular tissue)kg
Skin_massMass of skinkg
Small_intestine_massMass of small intestinekg
Spleen_massMass of spleenkg
Stomach_massMass of stomach tissuekg
Other_massMass of GI tract contents (1.4% of body weight) and tissues not otherwise enumerated (3.3% of body weight).kg
org_mass_sumSum of the above tissue masses. A check to ensure this is less than body weight.kg
Adipose_massMass of adipose tissue. Assigned as weight - org_mass_sum.kg

Tissue flows

NameDefinitionUnits
Adipose_flowBlood flow to adipose tissueL/h
Brain_flowBlood flow to brain tissueL/h
COCardiac outputL/h
Gonads_flowBlood flow to gonads tissueL/h
Heart_flowBlood flow to heart tissueL/h
Kidneys_flowBlood flow to kidneys tissue (not for glomerular filtration!)L/h
Large_intestine_flowBlood flow to large intestine tissueL/h
Liver_flowBlood flow to liver tissueL/h
Lung_flowBlood flow to lung tissueL/h
Muscle_flowBlood flow to skeletal muscle tissueL/h
Pancreas_flowBlood flow to pancreas tissueL/h
Skeleton_flowBlood flow to skeletonL/h
Skin_flowBlood flow to skinL/h
Small_intestine_flowBlood flow to small intestineL/h
Spleen_flowBlood flow to spleenL/h
Stomach_flowBlood flow to stomachL/h
org_flow_checkSum of blood flows as a fraction of cardiac output (CO). A check to make sure this is less than 1.Unitless fraction

Adjusted variables

NameDefinitionUnits
weight_adjAdjusted body weight: Sum of all tissue masses.kg
BSA_adjAdjusted body surface area, based on height and weight_adj.cm^2
million.cells.per.gliverHepatocellularity1e6 cells/g liver
gfr_estGlomerular filtration rate (GFR) estimated using either the CKD-EPI equation (for adults) or a body-surface-area-based equation (for children).mL/min/1.73 m^2 body surface area
bmi_adjBody mass index (BMI), adjusted to match weight_adj and height.kg/m^2
weight_classWeight category based on bmi_adj: "Underweight" (BMI < 18.5), "Normal" (18.5 < BMI < 24.9), "Overweight" (25.0 < BMI < 29.9), or "Obese" (BMI >= 30)Unitless category
gfr_classKidney function category based on GFR: "Normal" (GFR >=60 mL/min/1.73 m^2), "Kidney Disease" (15 <= GFR <= 60), or "Kidney Failure" (GFR < 15).Unitless category

Author

Caroline Ring

Details

Demographic and anthropometric (body measures) variables, along with serum creatinine and hematocrit, are generated from survey data from the Centers for Disease Control's National Health and Nutrition Examination Survey (NHANES). Those data are stored in the object nhanes_mec_svy (a survey.design object, see package survey). With method = "d", these variables will be sampled with replacement directly from NHANES data. Each NHANES respondent's likelihood of being sampled is given by their sample weight. With method = "v", these variables will be sampled from distributions fitted to NHANES data. Tissue masses and flows are generated based on demographic, body measures, and serum creatinine values, using regression equations from the literature and/or allometric scaling based on height. Extensive details about how each of these parameters are generated are available in the supplemental material of Ring et al. (2017) (see References for full citation).

References

ring2017identifyinghttk

Examples

Run this code

# \donttest{
#Simply generate a virtual population of 100 individuals,
 #using the direct-resampling method
 set.seed(42)
httkpop_generate(method='direct resampling', nsamp=100)

#Generate a population using the virtual-individuals method,
#including 80 females and 20 males,
#including only ages 20-65,
#including only Mexican American and
#Non-Hispanic Black individuals,
#including only non-obese individuals
set.seed(42)
mypop <- httkpop_generate(method = 'virtual individuals',
                          gendernum=list(Female=80,
                          Male=20),
                          agelim_years=c(20,65),
                          reths=c('Mexican American',
                          'Non-Hispanic Black'),
                          weight_category=c('Underweight',
                          'Normal',
                          'Overweight'))
# Including a httkpop.dt argument will overwrite the number of sample and
# the httkpop on/off logical switch:
samps1 <- create_mc_samples(chem.name="bisphenola",
                           httkpop=FALSE,
                           httkpop.dt=mypop)
samps2 <- create_mc_samples(chem.name="bisphenola",
                           httkpop.dt=mypop)
samps3 <- create_mc_samples(chem.name="bisphenola",
                           httkpop=FALSE)
# Now run calc_mc_oral equiv on the same pop for two different chemcials:
calc_mc_oral_equiv(conc=10,
                   chem.name="bisphenola",
                   httkpop.dt=mypop,
                   return.samples=TRUE)
calc_mc_oral_equiv(conc=2,
                   chem.name="triclosan",
                   httkpop.dt=mypop,
                   return.samples=TRUE)
# }



Run the code above in your browser using DataLab