Closed pheymanss closed 4 years ago
Should be able to plot several lines with the same x axis, like:
add_lines(dt = iris, x = 'Sepal.Width', y = c('Sepal.Length', ' Petal.Length', ' Petal.Width'))
perhaps using y %>% purrr::map(~geom_line(aes_string(.x))) %>% purrr::reduce(+)
+
Should be able to plot several lines with the same x axis, like:
add_lines(dt = iris, x = 'Sepal.Width', y = c('Sepal.Length', ' Petal.Length', ' Petal.Width'))
perhaps using y %>% purrr::map(~geom_line(aes_string(.x))) %>% purrr::reduce(
+
)