grantmcdermott / tinyplot

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

cex arg not working #48

Closed grantmcdermott closed 1 year ago

grantmcdermott commented 1 year ago

Compare:

plot(0:10, cex = 3, main = "plot")


library(plot2)
plot2(0:10, cex = 3, main = "plot2")

Created on 2023-07-27 with reprex v2.0.2

Same for cex.main, cex.sub, and cex.axis, although these probably require separate attention via ... passing.