summary.sample.data {rconifers}R Documentation

Summary of a CONIFERS sample.data object

Description

These functions create and print summary results for a CONIFERS sample.data object.

Usage

   ## S3 method for class 'sample.data':
   summary( object, ... )

Arguments

object an object of class sample.data.
... not used by user.

Value

Applying summary on an object of class sample.data prints out a simple summary of the sample.data. A sample.data object is the basic data type used for most CONIFERS functions.

Author(s)

Jeff D. Hamann jeff.hamann@forestinformatics.com,
Martin W. Ritchie mritchie@fs.fed.us

References

Ritchie, M.W. 2008. User's Guide and Help System for CONIFERS: A Simulator for Young Conifer Plantations Version 4.10. See http://www.fs.fed.us/psw/programs/ecology_of_western_forests/projects/conifers/

See Also

sample.data, sp.sums

Examples

library( rconifers )

## set the variant to the SWO variant
set.species.map(set.variant( 0 ))

## grow the data that was originally swo in the smc variant
# load and display CONIFERS example plots
data( plots.swo )
print( plots.swo )

# load and display CONIFERS example plants
data( plants.swo )
print( plants.swo )

# create the sample.data list object
sample.swo.3 <- list( plots=plots.swo, plants=plants.swo, age=3, x0=0.0 )
class(sample.swo.3)  <- "sample.data"

summary(sample.swo.3)


[Package rconifers version 1.0.0 Index]