addlog {log10} | R Documentation |
Add elements on a decimal log x-y plot via points
addlog(x,y,log='xy',...)
x |
X-values |
y |
Y values, can be left blank (same behavior as plot) |
log |
Dimensions to be converted into 10-log : 'x', 'xy' or 'y' |
... |
Further arguments to be passed to logplot |
a <- seq(from=1,to=100,by=1)^2 logplot(a,log='y') addlog(a+1e3,log='y')