## S3 method for class 'dfunc':
plot(x, include.zero = FALSE, nbins="Sturges", ...)
F.dfunc.estim
.hist
to compute histogram bars for the plot.
This argument is the breaks
argument to hist
. This can be either a vector giving the
breakpoints between bars, a single numberbarplot
, such as cex
, col
, bty
, etc.
The following plot parameters cannot be included in ...:
space
, density
, ylim
, xlim
,barplot
works,
the x-axis has been scaled. The internal coordinates of the bars are 1, 2, ..., nbars.
To plot something at a distance coordinate of x, x must be divided by this value. For example,
to draw a vertical line at a value of 10 on the x-axis, the correct call is abline(v=10/obj$xscl.plot)
.w.lo
is g0
. Usually, this means
the distance curve is scaled so that the y-intercept is 1, or that g(0) = 1. To add a plot feature
at a real coordinate of y, y must be divided by this returned parameters. For example, to draw
a horizontal line at y-axis coordinate of 1.0, issue abline(h=1/obj$yscl)
.F.dfunc.estim
, print.dfunc
, print.abund
set.seed(87654)
x <- rgamma(1000, 2,2)
fit <- F.dfunc.estim(x, likelihood="Gamma")
plot(fit)
Run the code above in your browser using DataLab