print.sample.data {rconifers} | R Documentation |
These functions print a few summary values from a sample.data object.
## S3 method for class 'sample.data': print( x, digits = max( 3, getOption("digits") - 1 ), ... )
x |
an object of class sample.data . |
digits |
number of digits to print. |
... |
other arguments. |
Jeff D. Hamann jeff.hamann@forestinformatics.com,
Martin W. Ritchie mritchie@fs.fed.us
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/
calc.max.sdi
,
sample.data
,
summary.sample.data
library( rconifers ) ## set the variant to the SWO variant # and set the species map set.species.map( set.variant(0) ) # load and display CONIFERS SWO example plots data( plots.swo ) print( plots.swo ) # load and display CONIFERS SWO 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" print( sample.swo.3)