type_lines {tinyplot} | R Documentation |
Lines plot type
Description
Type function for plotting lines.
Usage
type_lines(type = "l")
Arguments
type |
1-character string giving the type of plot desired. The
following values are possible, for details, see |
Examples
# "l" type convenience character string
tinyplot(circumference ~ age | Tree, data = Orange, type = "l")
# Use `type_lines()` to pass extra arguments for customization
tinyplot(circumference ~ age | Tree, data = Orange, type = type_lines(type = "s"))
[Package tinyplot version 0.4.2 Index]