Is it possible to get the axis limits for the current plot in R? How?
Preferably in the standard base library (I don't like to use ggplot
开发者_高级运维 etc., but these solutions are also welcome).
par("usr")
That ought to do it; see ?par
.
Is it possible to get the axis limits for the current plot in R? How?
Preferably in the standard base library (I don't like to use ggplot
开发者_高级运维 etc., but these solutions are also welcome).
par("usr")
That ought to do it; see ?par
.
精彩评论