Skip to contents

geom_line_fed is a wrapper around ggplot2::geom_line() that adds the required line colors and line widths. It also sets the linejoin and lineend attributes to their required values.

Usage

geom_line_fed(mapping = NULL, ...)

Arguments

mapping

Additional aes() arguments passed to ggplot2::geom_line

...

Additional arguments passed to ggplot2::geom_line

Details

It is equivalent to:

geom_line(aes(color=<VAR>, linewidth=<VAR>),
          na.rm = TRUE,
          linejoin = "mitre",
          lineend = "round")