How to define fixed aspect-ratio for (base R) scatter-plot

par(pty="s")
plot(...)

sets the plot type to be square, which will do the job (I think) in your case because your x and y ranges are the same. Fairly well hidden option documented in ?par.

Leave a Comment