Description Usage Arguments Value Author(s) Examples
Can be displayed as a single plot or as a facet wrap for each unique dendrometer.
1 | gg_cellphase(gg_cellphase_data, start.day, end.day, date_breaks, date_labels, type = "all")
|
gg_cellphase_data |
a |
start.day |
a |
end.day |
a |
date.breaks |
a |
date.labels |
a |
type |
a |
The function returns a geom_point
plot or can be stored as an object.
Brent Thorne
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #plot all on one
library(dendrometeR)
data(dmCD)
dm.phase <- phase_def(dmCD)
dm.cellphase <- gg_cellphase_data(dmCD)
gg_cellphase(gg_cellphase_data = dm.cellphase)
#plot facet for each dendrometer
library(dendrometeR)
data(dmED)
dmED <- fill_gaps(dmED)
dm.phase <- phase_def(dmED)
dm.cellphase <- gg_cellphase_data(dmED)
gg_cellphase(gg_cellphase_data = dm.cellphase, type = "facet")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.