This dataset, smoking_youth_tbl_df, is a tibble containing data from the Childhood Respiratory Disease Study collected in the late 1970s, examining the effects of smoking and second-hand smoke exposure on pulmonary function in 654 youths.
data(smoking_youth_tbl_df)A tibble with 654 observations and 5 variables:
Age in years (integer)
Forced Expiratory Volume in liters (numeric)
Height in centimeters (numeric)
Sex of participant (character)
Smoking status (character)
The dataset name has been kept as 'smoking_youth_tbl_df' to avoid confusion with other datasets in the R ecosystem. This naming convention helps distinguish this dataset as part of the PulmoDataSets package. The suffix 'tbl_df' indicates that this is a tibble data frame. The original content has not been modified in any way.