Description Usage Arguments Value Warning Author(s) References Examples
The R package provides individual risks of lung cancer and lung cancer death based on various published papers: Bach et al., 2003; Spitz et al., 2007; Cassidy et al., 2008 (LLP); Hoggart et al., 2012; Tammemagi et al., 2013 (PLCOm2012); Marcus et al., 2015 (LLPi); Wilson and Weissfeld, 2015 (Pittsburgh); Katki et al., 2016 (LCRAT and LCDRAT).
1 | lcmodels(x)
|
x |
A data frame or matrix containing individuals' covariate values. Covariates should be in the following columns and numerical formats:
Risk factors used by each model
|
A numeric matrix containing individuals' predictions:
column 1 - An indicator variable for whether the individual is eligible for CT lung screening according to US Preventive Services Task Force (USPSTF) recommendations.
column 2 - This is the probability of dying from lung cancer within 5 years if not undergoing screening (Katki, 2016).
column 3 - This is the reduction in the probability of dying from lung cancer in 5 years
column 4 - This is the probability of being diagnosed with lung cancer within 5 years if not undergoing screening (Katki, 2016).
column 5 - This is the extra probability of lung cancer diagnosis in 5 years if undergoing 3 yearly CT lung screens as in the NLST (Katki, 2016).
column 6 - This is the probability of having at least one false-positive CT screen out of 3 screens (Katki, 2016).
column 7 - This is the expected number of false-positive CT screens after 3 screens (Katki, 2016).
column This is the probability of being diagnosed with lung cancer within 10 years if not undergoing screening (Bach, 2003).
column 9 - This is the probability of being diagnosed with lung cancer within 1 years if not undergoing screening (Hoggart, 2012).
column 10 - This is the probability of being diagnosed with lung cancer within 5 years if not undergoing screening (LLP, 2008).
column 11 - This is the probability of being diagnosed with lung cancer within 8.7 years if not undergoing screening (LLPi, 2015).
column 12 - This is the probability of being diagnosed with lung cancer within 1 years if not undergoing screening (Spitz, 2007).
column 13 - This is the probability of being diagnosed with lung cancer within 6 years if not undergoing screening (Tammemagi, 2013).
column 14 - This is the probability of being diagnosed with lung cancer within 6 years if not undergoing screening (Pittsburgh, 2015).
VGAM is a required dependency of this package. VGAM may automatically be installed the first time this package is used. Inputs must be in numerical format to ensure correct output. For data frame x, this can be checked using sapply(x,class)
Li C. Cheung, li.cheung@nih.gov, Stephanie A. Kovalchik, Hormuzd A. Katki
Bach PB, Kattan MW, Thornquist MD, et al. Variations in lung cancer risk among smokers. J Natl Cancer Inst 2003;95:470-8.
Spitz MR, Hong WK, Amos CI, et al. A risk model for prediction of lung cancer. J Natl Cancer Inst 2007;99:715-26.
Cassidy A, Myles JP, van Tongeren M, et al. The LLP risk model: an individual risk prediction model for lung cancer. Br J Cancer 2008;98:270-6.
Hoggart C, Brennan P, Tjonneland A, et al. A risk model for lung cancer incidence. Cancer Prev Res (Phila) 2012;5:834-46.
Tammemagi MC, Katki HA, Hocking WG, et al. Selection criteria for lung-cancer screening. N Engl J Med 2013;368:728-36.
Marcus MW, Chen Y, Raji OY, Duffy SW, Field JK. LLPi: Liverpool lung project risk prediction model for lung cancer incidence. Cancer Prev Res (Phila) 2015;8:570-5.
Wilson DO, Weissfeld J. A simple model for predicting lung cancer occurrence in a lung cancer screening program: the Pittsburgh predictor. Lung Cancer 2015;89:31-37.
Katki HA, Kovalchik SA, Berg CD, Cheung LC, Chaturvedi AK. Development and validation of risk models to select ever-smokers for CT lung cancer screening. JAMA. 2016;315:2300-11. doi: 10.1001/jama.2016.6255.
Katki HA, Kovalchik SA, Petito LC, Cheung LC, Jacobs E, Jemal A, Berg CD, Chaturvedi AK. Implications of nine risk prediction models for selecting ever-smokers for computed tomography lung cancer screening. Ann Intern Med. 2018;doi: 10.7326/M17-2701.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | age <- c(66,58,75,72,56)
bmi <- c(23,28,26,27,24)
cpd <- c(36,36,40,24,40)
emp <- c(0,1,1,0,1)
fam.lung.trend <- c(0,2,0,2,0)
female <- c(0,1,0,1,0)
smkyears <- c(43,37,45,42,29)
qtyears <- c(0,0,9,6,6)
race <- c(0,1,2,2,3)
edu6 <- c(3,5,4,5,5)
asb <- c(0,0,0,0,0)
pneu <- c(0,0,0,0,0)
prior.cancer <- c(0,0,0,0,0)
fam.cancer.onset <- c(0,1,0,2,0)
dust <- c(0,0,0,0,0)
fam.cancer <- c(0,1,0,1,0)
fam.smoke.cancer <- c(0,1,0,1,0)
no.hayfever <- c(1,1,1,1,1)
asian <- c(0,0,0,0,1)
islander <- c(0,0,0,0,0)
indian <- c(0,0,0,0,0)
persons <- data.frame(age,
female,
smkyears,
qtyears,
cpd,
race,
emp,
fam.lung.trend,
bmi,
edu6,
asb,
pneu,
prior.cancer,
fam.cancer.onset,
dust,
fam.cancer,
fam.smoke.cancer,
no.hayfever,
asian,
islander,
indian)
persons_predictions <- lcmodels(persons)
persons_predictions
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.