Description Usage Arguments Examples
Make a single graph, 4 panels, of AGB growth and model fit. Must submit four species names (though they could be the same. Enter names of data objects (not the object, just the name in quote marks!) either one data object, or a list of four such objects; if only one, all four graphs are based on the single one. Likewise, enter either one bin number, or four.
1 2 | binGraphSampleSpecies(fulldataname, species, whichbin, export = pdf,
outfile = "growth/linearbin.summary.pdf", h = 8, w = 10)
|
export |
File format to export to. |
outfile |
Filename for output. |
h, w |
A number giving the height and width. |
fit |
A fitted model. |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | ## Not run:
attach('growth/linearbin.fittrim3.bci.rdata')
attach('growth/growthfitYiching/linearbin.fit.allspp.rdata')
attach('growth/linearbin.fit.edoro.rdata')
attach('growth/linearbin.fit.lenda.rdata')
binGraphSampleSpecies(
fulldata = 'linearbin.fit.allspp',
species = c('pri2co', 'tri2tu', 'brosal', 'jac1co'),
whichbin = 2,
export = NULL
)
binGraphSampleSpecies(
fulldata = c(
'linearbin.fit.allspp',
'linearbin.fit.trim3',
'linearbin.fit.edoro3',
'linearbin.fit.lenda3'
),
species = c('PYRESH', 'pri2co', 'JULBSE', 'GILBDE'),
whichbin = 3,
export = NULL
)
binGraphSampleSpecies(
fulldata = 'linearbin.fit.allspp',
species = c('pri2co', 'pri2co', 'brosal', 'brosal'),
whichbin = c(2, 3, 2, 3),
export = NULL
)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.