Description Usage Arguments Examples
Plot INPUT returned by check_input
1 | plot_input(INPUT, wmin = 0.2, show.y0 = TRUE, ...)
|
INPUT |
A list object with the elements of |
wmin |
Double, minimum weigth (i.e. weight of snow, ice and cloud). |
show.y0 |
boolean. Whether to show original time-series |
... |
other parameter will be ignored. |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | library(phenofit)
data("MOD13A1")
dt <- tidy_MOD13.gee(MOD13A1$dt)
st <- MOD13A1$st
sitename <- dt$site[1]
d <- dt[site == sitename, ] # get the first site data
sp <- st[site == sitename, ] # station point
# global parameter
IsPlot = TRUE
print = FALSE
nptperyear = 23
ypeak_min = 0.05
dnew <- add_HeadTail(d, nptperyear = nptperyear) # add one year in head and tail
INPUT <- check_input(dnew$t, dnew$y, dnew$w, d$QC_flag, nptperyear,
maxgap = nptperyear/4, alpha = 0.02, wmin = 0.2)
plot_input(INPUT)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.