Learn R Programming

openintro (version 2.4.0)

biontech_adolescents: Efficacy of Pfizer-BioNTech COVID-19 vaccine on adolescents

Description

On March 31, 2021, Pfizer and BioNTech announced that "in a Phase 3 trial in adolescents 12 to 15 years of age with or without prior evidence of SARS-CoV-2 infection, the Pfizer-BioNTech COVID-19 vaccine BNT162b2 demonstrated 100% efficacy and robust antibody responses, exceeding those recorded earlier in vaccinated participants aged 16 to 25 years old, and was well tolerated." These results are from a Phase 3 trial in 2,260 adolescents 12 to 15 years of age in the United States. In the trial, 18 cases of COVID-19 were observed in the placebo group (n = 1,129) versus none in the vaccinated group (n = 1,131).

Usage

biontech_adolescents

Arguments

Format

A data frame with 2260 observations on the following 2 variables.

group

Study group: vaccine (Pfizer-BioNTech COVID-19 vaccine administered) or placebo.

outcome

Study outcome: COVID-19 or no COVID-19.

Examples

Run this code

library(dplyr)
library(ggplot2)

biontech_adolescents %>%
  count(group, outcome)

ggplot(biontech_adolescents, aes(y = group, fill = outcome)) +
  geom_bar()

Run the code above in your browser using DataLab