Closed vincentarelbundock closed 1 week ago
library(tinyplot) tinyplot(mpg ~ hp, data = mtcars) tinyplot_add(type = type_vline(150))
cols = c("black", "green", "orange") tinyplot(mpg ~ hp | factor(cyl), facet = ~ factor(cyl), data = mtcars, col = cols) tinyplot_add(type = type_vline( v = c(100, 150, 200), col = cols, lty = 3, lwd = 3 ))
Created on 2024-11-12 with reprex v2.1.1
I feel like the whole refactor is paying off in a really big way now :)
Brilliant, thanks!
I've got some pressing deadlines at work. But will try to take a look at your other PRs later today.
Created on 2024-11-12 with reprex v2.1.1