Prompted by #324 I noticed that passing numeric color indexes to tinyplot(..., col = ...) does not work, e.g.,
tinyplot(bill_depth_mm ~ bill_length_mm, data = penguins, col = 4)
tinyplot(bill_depth_mm ~ bill_length_mm | sex, data = penguins, col = 3:4)
whereas using character colors does work as expected:
tinyplot(bill_depth_mm ~ bill_length_mm, data = penguins, col = "blue")
tinyplot(bill_depth_mm ~ bill_length_mm | sex, data = penguins, col = c("green", "blue"))

Prompted by #324 I noticed that passing numeric color indexes to
tinyplot(..., col = ...)does not work, e.g.,whereas using character colors does work as expected: