Topic: Growth
Topic Description:
Functions for analyzing tree growth, designed for the standard CTFS R Analytical Tables.
File: growth/growthfit.graph.r
| View File Source | Download File | No help file available |
Function: graph.outliers
Function Description: graph.outliers
Graph the outliers overlaid on the model and full data for all species in a model fit result. The argument export can be set to a window device (X11, win.graph, quartz) or a graphics option (png, pdf).Function Arguments:
| Argument | Default Value |
|---|---|
| full | |
| trimmed | |
| fit | NULL |
| allspp | NULL |
| size | 'agb' |
| export | NULL |
| wind | X11 |
Function Source:
graph.outliers=function(full,trimmed,fit=NULL,allspp=NULL,size='agb',export=NULL,wind=X11)
{
if(is.null(allspp)) allspp=names(fit)
for(onesp in allspp)
{
if(is.null(export)) wind(height=7,width=9)
graph.outliers.spp(full=full,trimmed=trimmed,spname=onesp,fit=fit,size=size,export=export)
}
}
{
if(is.null(allspp)) allspp=names(fit)
for(onesp in allspp)
{
if(is.null(export)) wind(height=7,width=9)
graph.outliers.spp(full=full,trimmed=trimmed,spname=onesp,fit=fit,size=size,export=export)
}
}