You can specify the aspect ratio of your charts using the cop_fixed () function.
> library(ggplot2)
> df <- data.frame(
+ x = runif(100, 0, 5),
+ y = runif(100, 0, 5))
, , .
> ggplot(df, aes(x=x, y=y)) + geom_point()
, , coord_fixed(), ( x y ). .
> ggplot(df, aes(x=x, y=y)) + geom_point() + coord_fixed()
, , coord_fixed(), y x. , , , :
> ggplot(df, aes(x=x, y=y)) + geom_point() + coord_fixed(2)