Skip to contents

Plot - Line

Usage

plot_line(
  data,
  xvar,
  yvar,
  theme,
  group,
  attr,
  code,
  row,
  column,
  width,
  height,
  title,
  subtitle,
  xlab,
  ylab,
  caption,
  show_code
)

Arguments

data

data

xvar

xvar

yvar

yvar

theme

theme

group

group

attr

attr

code

additional code

row

facet row in grid

column

facet column in grid

width

width of plot

height

height of plot

title

title of plot

subtitle

subtitle of plot

xlab

x-axis

ylab

y-axis label

caption

caption

show_code

show/hide code

Value

No return value. This function is called for the side effect of launching a shiny application.

Examples

if (interactive()) {
  plot_line(mtcars)
}