coord_rect | R Documentation |
Geometric data analysis often requires that coordinates lie on
the same scale. The coordinate system CoordRect
, alias CoordSquare
,
provides control of both coordinate and window aspect ratios.
coord_rect(
ratio = 1,
window_ratio = ratio,
xlim = NULL,
ylim = NULL,
expand = TRUE,
clip = "on"
)
ratio |
aspect ratio, expressed as |
window_ratio |
aspect ratio of plotting window |
xlim , ylim |
Limits for the x and y axes. |
expand |
If |
clip |
Should drawing be clipped to the extent of the plot panel? A
setting of |
# ensures that the resolutions of the axes and the dimensions of the plotting
# window respect the specified aspect ratios
p <- ggplot(mtcars, aes(mpg, hp/10)) + geom_point()
p + coord_rect(ratio = 1)
p + coord_rect(ratio = 1, window_ratio = 2)
p + coord_rect(ratio = 1, window_ratio = 1/2)
p + coord_rect(ratio = 5)
p + coord_rect(ratio = 1/5)
p + coord_rect(xlim = c(15, 30))
p + coord_rect(ylim = c(15, 30))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.