CoordinatePlane {LearnGeom} | R Documentation |
Plots an empty coordinate (cartesian) plane with customizable limits for the X and Y axis
Description
CoordinatePlane
plots an empty coordinate (cartesian) plane with customizable limits for the X and Y axis.
Usage
CoordinatePlane(x_min, x_max, y_min, y_max)
Arguments
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 |
Value
None. It produces a plot of a coordinate plane with axes and grid
Examples
x_min <- -5
x_max <- 5
y_min <- -5
y_max <- 5
CoordinatePlane(x_min, x_max, y_min, y_max)
[Package LearnGeom version 1.5 Index]