Trying to plot a round circle and it gets stretched
library(tidyverse) n = 100 radius = 1 circle <- tibble(x = accumulate(1:(n-1), ~ radius*cos(.y*2*pi/n), .init = radius), y = accumulate(1:(n-1), ~ radius*sin(.y*2*pi/n), .init = 0)) ggplot(circle) + geom_point(aes(x,y), color = "red") ggplot(circle) + geom_point(aes(x,y), color = "red") + coord_equal()
But I want to maintain the default (3/4) aspect ratio, specifically when saving I do not want the graphic device to add padding on the sides.
Please advise

