bfast
bfast copied to clipboard
Breaks For Additive Season and Trend
Thanks to pull #1, we have an opportunity to consolidate all the changes across the different forks of bfast, with a view of eventually updating the package on CRAN. For...
Some of the documentation generated by Roxygen2 is not consistent with the original documentation in terms of formatting. All docs should be compared against the originals.
bfast01 (classify?) is using some code taken from strucchange; try to deduplicate it by integrating the changes into strucchangeRcpp.
This is partially aesthetics, but also functionality. E.g. bfastpp return(rval) bfast return(structure(...)) bfastlite return(Result) bfastmonitor return(rval) # rval = list(...) bfastts return(ts(..)) It would be nice if the above would...
Come up with easier-to-understand names of the existing functions for users (suggested by Andrei). Needs some creative thinking. Of course, the old names should become aliases in that case.
For ease of applicability, having `bfast` generate spatial maps rather than only pixel time series would be good to have. `bfastSpatial` has some of that functionality, specifically with `bfmSpatial`, but...
bfastmonitor silently fails when inputs such as date, or startdate are not logically valid.
Already possible to do something like that with: ```r cor(predict(mona$model, mona$tspp[mona$tspp$time >= mona$monitor[1],]), mona$tspp[mona$tspp$time >= mona$monitor[1],"response"])^2 ```
Is there an easy way to get the RMSE (of the residuals) out, as an extra band (returnLayers) in Bfastmonitor? Many thanks!!!
There is lack of documentation in `?bfastpp` about how external regressors are handled. It is described, but an example of how to use them is missing.