CAVIAR-package {CAVIAR} | R Documentation |
Process, analyses and plots data from cambial activity and wood formation monitoring studies
Package: | CAVIAR |
Type: | Package |
Version: | 1.0 |
Date: | 2010-02-24 |
License: | GPL (>= 2) |
LazyLoad: | yes |
URL: | urlhttp://www.nancy.inra.fr/foret_bois_lerfob/personnels_de_l_umr/scientifiques/rathgeber_cyrille |
CAVIAR is a package that allow processing, visualisation and analysis of data coming from cambial activity and wood formation monitoring studies.
CAVIAR contains 3 functions: computeBootstrapTest
, computeCriticalDates
, plotWoodCalendar
.
The developed functions require input data files as semicolon separated value text files (i.e. CSV format).
The columns names are imposed but not the order. That means that the input table may contain a free number of columns, as long as the compulsory columns, identified by their headers, are provided to the function.
Missing values are coded "NA" in the data table.
Cyrille Rathgeber - LERFoB, UMR1092 - INRA Nancy (France)
Email: cyrille.rathgeber@nancy.inra.fr
Rathgeber C.B.K., Longuetaud F. , Mothe F., Cuny H., Le Moguedec G. 2010. Phenology of wood formation: data processing, analysis and visualisation using R. Accepted in Dendrochronologia.
computeBootstrapTest
, computeCriticalDates
and plotWoodCalendar
# Loading the example dataset: data(AMA2006) # Computing wood formation critical dates for firs and pines: Fir.cdd <- computeCriticalDates(AMA2006[AMA2006$Sp=="ABAL", ]) Pine.cdd <- computeCriticalDates(AMA2006[AMA2006$Sp=="PISY", ]) # Visualising wood formation critical dates and durations on the screen for firs: plotWoodCalendar(Fir.cdd, plotype=4) # Testing if pines start xylogenesis before firs computeBootstrapTest(Fir.cdd$bE, Pine.cdd$bE)