Learn R Programming

Rdistance (version 1.0)

print.abund: Print abundance estimates.

Description

Print an object of class c("abund","dfunc") that is output by F.abund.estim.

Usage

## S3 method for class 'abund':
print(x, ...)

Arguments

x
An object output by F.abund.estim. This is a distance function object that also contains abundance estimates, and has class c("abund", "dfunc").
...
Included for compatibility to other print methods. Ignored here.

Value

  • No value is returned.

Details

The default print method for class 'dfunc' is called, then the abundance estimates contained in obj are printed.

See Also

F.dfunc.estim, F.abund.estim

Examples

Run this code
x <- rgamma(1000, 2,2) 
    fit <- F.dfunc.estim(x, likelihood="Gamma")
    fit <- F.abund.estim(fit, tot.trans.len=1000 )
    print(fit)

Run the code above in your browser using DataLab