Description Usage Arguments Value Examples
View source: R/CoordinatePlane.R
CoordinatePlane
plots an empty coordinate (cartesian) plane with customizable limits for the X and Y axis.
1 | CoordinatePlane(x_min, x_max, y_min, y_max)
|
x_min |
Lowest value for the X axis |
x_max |
Highest value for the X axis |
y_min |
Lowest value for the Y axis |
y_max |
Highest value for the Y axis |
None. It produces a plot of a coordinate plane with axes and grid
1 2 3 4 5 | x_min <- -5
x_max <- 5
y_min <- -5
y_max <- 5
CoordinatePlane(x_min, x_max, y_min, y_max)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.