Test.R 91 B

12345678
  1. library(tidyverse)
  2. testing_data <- tribble(
  3. ~id, ~value,
  4. 1, "a",
  5. 2, "b",
  6. 3, "c"
  7. )