Plot INPUT returned by check_input
plot_input(INPUT, wmin = 0.2, show.y0 = TRUE, ylab = "VI", ...)
A list object with the elements of t
, y
, w
,
Tn
(optional) and ylu
, returned by check_input()
.
double, minimum weigth (i.e. weight of snow, ice and cloud).
boolean. Whether to show original time-series y0
or processed time-series y
by
check_input()
?
y axis title
other parameter will be ignored.
library(phenofit)
data("CA_NS6"); d = CA_NS6
# global parameter
IsPlot = TRUE
nptperyear = 23
ypeak_min = 0.05
INPUT <- check_input(d$t, d$y, d$w, d$QC_flag, nptperyear,
maxgap = nptperyear/4, alpha = 0.02, wmin = 0.2)
plot_input(INPUT)