├── .Rbuildignore ├── .Rhistory ├── .Rproj.user └── 59639ADF │ ├── cpp-definition-cache │ ├── pcs │ ├── debug-breakpoints.pper │ ├── files-pane.pper │ ├── source-pane.pper │ ├── windowlayoutstate.pper │ └── workbench-pane.pper │ ├── rmd-outputs │ └── saved_source_markers ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── R └── base_functions.R ├── README.md ├── man ├── fit_predictionBands.Rd ├── plot.bands.Rd └── predict.predictionBands.Rd └── predictionBands.Rproj /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizbicki/predictionBands/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.Rhistory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizbicki/predictionBands/HEAD/.Rhistory -------------------------------------------------------------------------------- /.Rproj.user/59639ADF/cpp-definition-cache: -------------------------------------------------------------------------------- 1 | [ 2 | ] -------------------------------------------------------------------------------- /.Rproj.user/59639ADF/pcs/debug-breakpoints.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizbicki/predictionBands/HEAD/.Rproj.user/59639ADF/pcs/debug-breakpoints.pper -------------------------------------------------------------------------------- /.Rproj.user/59639ADF/pcs/files-pane.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizbicki/predictionBands/HEAD/.Rproj.user/59639ADF/pcs/files-pane.pper -------------------------------------------------------------------------------- /.Rproj.user/59639ADF/pcs/source-pane.pper: -------------------------------------------------------------------------------- 1 | { 2 | "activeTab" : 0 3 | } -------------------------------------------------------------------------------- /.Rproj.user/59639ADF/pcs/windowlayoutstate.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizbicki/predictionBands/HEAD/.Rproj.user/59639ADF/pcs/windowlayoutstate.pper -------------------------------------------------------------------------------- /.Rproj.user/59639ADF/pcs/workbench-pane.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizbicki/predictionBands/HEAD/.Rproj.user/59639ADF/pcs/workbench-pane.pper -------------------------------------------------------------------------------- /.Rproj.user/59639ADF/rmd-outputs: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.Rproj.user/59639ADF/saved_source_markers: -------------------------------------------------------------------------------- 1 | {"active_set":"","sets":[]} -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizbicki/predictionBands/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizbicki/predictionBands/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizbicki/predictionBands/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/base_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizbicki/predictionBands/HEAD/R/base_functions.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizbicki/predictionBands/HEAD/README.md -------------------------------------------------------------------------------- /man/fit_predictionBands.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizbicki/predictionBands/HEAD/man/fit_predictionBands.Rd -------------------------------------------------------------------------------- /man/plot.bands.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizbicki/predictionBands/HEAD/man/plot.bands.Rd -------------------------------------------------------------------------------- /man/predict.predictionBands.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizbicki/predictionBands/HEAD/man/predict.predictionBands.Rd -------------------------------------------------------------------------------- /predictionBands.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizbicki/predictionBands/HEAD/predictionBands.Rproj --------------------------------------------------------------------------------