Closed lsigut closed 5 years ago
Hi, I just noticed in the vignette that the condition if (nEff == 0) is not strong enough when computing sdNEE due to division by (nEff - 1). In case that nEff == 1 computation will produce sdNEE == Inf. Example:
if (nEff == 0)
sdNEE
(nEff - 1)
nEff == 1
sdNEE == Inf
aggDay[174, ]
Hi, I just noticed in the vignette that the condition
if (nEff == 0)
is not strong enough when computingsdNEE
due to division by(nEff - 1)
. In case thatnEff == 1
computation will producesdNEE == Inf
. Example: