PulmoDataSets

The PulmoDataSets package offers a thematically rich and diverse collection of datasets focused on the lungs, respiratory system, and associated diseases. It includes data related to chronic respiratory conditions such as asthma, chronic bronchitis, and COPD, as well as infectious diseases like tuberculosis, pneumonia, influenza, and whooping cough.

Installation

You can install the PulmoDataSets package from CRAN with the following R function:


install.packages("PulmoDataSets")

Load the Package


library(PulmoDataSets)

Dataset Suffixes

Each dataset in the PulmoDataSets package uses a suffix to denote the type of R object:

Example Datasets

Below are selected example datasets included in the PulmoDataSets package:

Example Code:


# Load the package

library(PulmoDataSets)

# List all datasets in the package

view_datasets_pulmo()

# Load dataset

data(nicotine_gum_df)

# Preview the dataset

head(nicotine_gum_df)

# Open in Viewer

View(nicotine_gum_df)