library("tinyplot")
# "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"))