CoordinatePlane {LearnGeom} | R Documentation |
CoordinatePlane
plots an empty coordinate (cartesian) plane with customizable limits for the X and Y axis.
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
x_min <- -5
x_max <- 5
y_min <- -5
y_max <- 5
CoordinatePlane(x_min, x_max, y_min, y_max)