CoordinatePlane: Plots an empty coordinate (cartesian) plane with customizable...

Description Usage Arguments Value Examples

View source: R/CoordinatePlane.R

Description

CoordinatePlane plots an empty coordinate (cartesian) plane with customizable limits for the X and Y axis.

Usage

1
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

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)

Example output


LearnGeom documentation built on July 14, 2020, 5:06 p.m.