Aliases: plot.formula lines.formula points.formula text.formula
### ** Examples op <- par(mfrow = c(2,1)) plot(Ozone ~ Wind, data = airquality, pch = as.character(Month)) plot(Ozone ~ Wind, data = airquality, pch = as.character(Month), subset = Month != 7)
par(op) ## text.formula() can be very natural: wb <- within(warpbreaks, { time <- seq_along(breaks); W.T <- wool:tension }) plot(breaks ~ time, data = wb, type = "b") text(breaks ~ time, data = wb, labels = W.T, col = 1+as.integer(wool))