I need to plot three lines (onto a single graph) each of which represents one lab team\'s data (two variables / team). Ideally, the graph should look aesthetically pleasing (hen
library(ggplot2)
ggplot(mtcars, aes(x = wt, y = mpg, color = as.factor(cyl))) + geom_line()
If you want more specific advice, I would suggest you expand your example, and include some example data, and provide more details regarding what the visualisation should tell.