Learn R Programming

paleofire (version 1.2.4)

plot.kdffreq: plot.kdffreq

Description

Plot fire frequency calculated using the kdffreq function

Usage

# S3 method for kdffreq
plot(
  x,
  ylim = NULL,
  xlim = NULL,
  main = NULL,
  xlab = "Age",
  ylab = "FF (#.yr-1)",
  frame = T,
  ...
)

Arguments

x

Object returned by kdffreq

ylim

Numeric, y axis limits

xlim

Numeric x axis limits

main

char, title of plot

xlab

char, x axis legend

ylab

char, y axis legend

frame

frame around plot

...

other arguments

See Also

kdffreq @examples

set.seed(123) fevent=c(round(abs(rnorm(20,mean=7,sd=5))*1000),round(abs(rnorm(10,mean=8,sd=1))*1000))

ff=kdffreq(fevent,bandwidth = 1000, nbboot=10) plot(ff)