Basic X-Y plotting that follows AAGI colour and typography guidelines that uses (hopefully) sensible defaults.
Arguments
- x
the coordinates of points in the plot. Alternatively, a single plotting structure, function or any R object with a plot method can be provided.
- ...
Arguments to be passed to methods, such as graphical parameters (see
graphics::par()
). The most commonly used argument would bey
for the factor to use for the y-axis ortype
describing what type of plot should be drawn.
See also
graphics::plot()
for full documentation of the basic plotting
capabilities.
Author
Adam Sparks, adam.sparks@curtin.edu.au
Examples
library(datasets)
plot_aagi(airquality$Ozone,
main = "Air Quality",
xlab = "Ozone"
)
plot_aagi(pressure)