
Last chance! 50% off unlimited learning
Sale ends in
Plot x
and y
coordinates using a specified aspect ratio.
plotAsp(x, y, asp=1, ...)
vector of x-coordinate points in the plot.
vector of y-coordinate points in the plot.
y
/x
aspect ratio.
additional arguments for plot
.
Alex Couture-Beil, Vancouver Island University, Nanaimo BC
The function plotAsp
differs from plot(x,y,asp=1)
in the way axis
limits are handled. Rather than expand the range, plotAsp
expands the
margins through padding to keep the aspect ratio accurate.
local(envir=.PBSmodEnv,expr={
oldpar = par(no.readonly=TRUE)
x <- seq(0,10,0.1)
y <- sin(x)
par(mfrow=2:1)
plotAsp(x,y,asp=1,xlim=c(0,10),ylim=c(-2,2), main="sin(x)")
plotAsp(x,y^2,asp=1,xlim=c(0,10),ylim=c(-2,2), main="sin^2(x)")
par(oldpar)
})
Run the code above in your browser using DataLab