Slide 45
Slide 45 text
Bioinformatics Seminars
Basic EDA
Example: plot, lines, abline, legend
> plot(1:5, 1:5, type = "o", col = "blue")
> lines(5:1, 1:5, lty = 2, type = "o",
+ col = "orange")
> abline(a = 3, b = 0, col = "red")
> legend("top", legend = c("Line 1",
+ "Line 2", "Line 3"), col = c("blue",
+ "orange", "orange"), lty = c(1,
+ 2, 1), bty = "n")
45 / 61