To be consistent with base `text()`: ``` r plot(1:10, type = "n") text(1:10) ``` <!-- --> The equivalent `tinyplot` call fails: ``` r library(tinyplot) plt(1:10, type = "text") #> Error: argument "labels" is missing, with no default ``` <sup>Created on 2025-09-27 with [reprex v2.1.1](https://reprex.tidyverse.org)</sup>