sync.plot {DendroSync}R Documentation

Plot within- and between-group synchrony

Description

The function creates dot plots of within- and between-group synchrony as produced by sync from a selected model produced by dendro.varcov. Note that broad evaluation model (mBE) can not be plotted since it produces only one value per model.

Usage

sync.plot (syncList)

Arguments

syncList

a list of the type as produced by sync.

Details

The function makes a dot plots for within- and between-group synchrony for a user defined varGroup and varTime period in dendro.varcov.

Value

Dotplot

Author(s)

Josu G. Alday, Tatiana A. Shestakova, Victor Resco de Dios, Jordi Voltas

Examples

## Plot homoscedastic narrow evaluation (mNE) and unstructured model (mUN)
 # synchronies for conifersIP data:
 data(conifersIP)
     
 ##Fit the homoscedastic set of varcov models (mBE, mNE, mCS, mUN)
 # using geographic grouping criteria (ie. Region)
 ModHm <- dendro.varcov(TRW ~ Code, varTime = "Year", varGroup = "Region", 
                        data = conifersIP, homoscedastic = TRUE)
 
 sync.plot(sync(ModHm, modname = "mNE"))
 sync.plot(sync(ModHm, modname = "mUN"))



[Package DendroSync version 0.1.4 Index]