Lineplot of variable for each participant, facetted by treatment and visit

PHOTO EMBED

Sat Jul 30 2022 08:51:48 GMT+0000 (Coordinated Universal Time)

Saved by @Treenose

data %>% 
  filter(Variables == "glucoset120") %>% 
  ggplot(aes(x = Participant_ID, y = Values)) +
  geom_line() +
  facet_wrap(~Visit + Treatment, ncol = 2)
content_copyCOPY