Learn R Programming

econocharts (version 1.0)

supply: Supply curves

Description

TODO

Usage

supply(
  ...,
  ncurves = 1,
  xmax,
  ymax,
  type = "convex",
  x,
  curve_names = TRUE,
  names,
  linecol,
  labels,
  generic = TRUE,
  geom = "text",
  geomcol = 1,
  geomfill = "white",
  main = NULL,
  sub = NULL,
  xlab = NULL,
  ylab = NULL,
  bg.col = "white"
)

Arguments

...

Specify the supply curve or curves separated by comma (as data.frame) you want to display in the graph. This will override the sample curve.

ncurves

Number of supply curves to be generated based on the sample data.

xmax

Numeric. Allows modifying the maximum X value for the default supply function.

ymax

Numeric. Allows modifying the maximum Y value for the default supply function.

type

Possible values are "convex" (default) and "line" to plot a convex or a linear supply function by default, respectively.

x

Y-axis values where to create intersections with the demand curves.

curve_names

Boolean. If TRUE, the function adds default names to each.

names

If curve_names = TRUE are custom names for the curves.

linecol

Line color of the curves.

labels

If x is specified are the labels for the intersection points.

generic

Boolean. If TRUE and x is specified, the axis labels shows generic names. If FALSE, the axis labels are the actual data of the axis that corresponds to the intersection points.

geom

Possible values are "text" to display the labels of the intersection points with text and "label" to show them with labels.

geomcol

Color of the labels of the intersection points.

geomfill

If geom = "label" is the background color of the label.

main

Main title of the plot.

sub

Subtitle of the plot.

xlab

Name of the X-axis.

ylab

Name of the Y-axis.

bg.col

Background color of the plot.