theo_sub1 |>ggplot(aes(x = Time, y = conc)) +geom_line()+xlab("Hours")+ylab("Theophylline Concentration") +ggtitle("Subject 1 Theophylline Concentration over time")
theo |>select(Subject, Time, conc) |>ggplot(aes(x = Time, y = conc)) +geom_line(aes(colour = Subject))+xlab("Hours")+ylab("Theophylline Concentration") +ggtitle("Theophylline Concentration over time")
theo |>select(Subject, Time, conc) |>ggplot(aes(x = Time, y = conc)) +geom_line(aes(colour = Subject))+facet_wrap(~Subject)+xlab("Hours")+ylab("Theophylline Concentration") +ggtitle("Theophylline Concentration over time")