logplot {log10}R Documentation

Decimal x-y plot

Description

Plot X and Y values with 10-log scales

Usage

 
logplot(x,y,log='xy',yint='r',xint='r',xlim=NULL,ylim=NULL,...)

Arguments

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'
ylim Limit of the y axis
xlim Limit of the x axis
yint The type of y axis : internal of regular. See par and the yaxs option
xint The type of x axis : internal of regular. See par and the xaxs option
... Further arguments to be passed to plot

Examples

 
a <- seq(from=1,to=100,by=0.1)^2
logplot(a,log='y')

[Package log10 version 0.1.0-01 Index]