logplot: Decimal x-y plot

Description Usage Arguments Examples

Description

Plot X and Y values with 10-log scales

Usage

1
2
 
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

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

log10 documentation built on May 2, 2019, 4:53 p.m.

Related to logplot in log10...