grantmcdermott / tinyplot

Lightweight extension of the base R graphics system
https://grantmcdermott.com/tinyplot
Apache License 2.0
226 stars 7 forks source link

grid doesn't auto-expand with ylim when type = "area" #92

Closed grantmcdermott closed 8 months ago

grantmcdermott commented 9 months ago
library(plot2)
with(
    airquality,
    plot2(
        x = Temp,
        grid = TRUE, 
        type = "area"
    )
)

Created on 2023-12-24 with reprex v2.0.2