├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE.md ├── NAMESPACE ├── R ├── CAMELS_bootjack.R ├── bootjack.R ├── flows_1030500.R ├── ggplot_estimate_uncertainties.R ├── gumboot-package.R ├── hcdn_conus_sites.R └── read_CAMELS.R ├── README.md ├── data ├── flows_1030500.rda └── hcdn_conus_sites.rda ├── gumboot.Rproj ├── inst └── CITATION ├── man ├── CAMELS_bootjack.Rd ├── bootjack.Rd ├── flows_1030500.Rd ├── ggplot_estimate_uncertainties.Rd ├── gumboot-package.Rd ├── hcdn_conus_sites.Rd └── read_CAMELS.Rd ├── tests ├── testthat.R └── testthat │ └── test_bootjack.R └── vignettes ├── CAMELS_plot.png ├── using_gumboot.R └── using_gumboot.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CH-Earth/gumboot/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CH-Earth/gumboot/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CH-Earth/gumboot/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CH-Earth/gumboot/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CH-Earth/gumboot/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/CAMELS_bootjack.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CH-Earth/gumboot/HEAD/R/CAMELS_bootjack.R -------------------------------------------------------------------------------- /R/bootjack.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CH-Earth/gumboot/HEAD/R/bootjack.R -------------------------------------------------------------------------------- /R/flows_1030500.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CH-Earth/gumboot/HEAD/R/flows_1030500.R -------------------------------------------------------------------------------- /R/ggplot_estimate_uncertainties.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CH-Earth/gumboot/HEAD/R/ggplot_estimate_uncertainties.R -------------------------------------------------------------------------------- /R/gumboot-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CH-Earth/gumboot/HEAD/R/gumboot-package.R -------------------------------------------------------------------------------- /R/hcdn_conus_sites.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CH-Earth/gumboot/HEAD/R/hcdn_conus_sites.R -------------------------------------------------------------------------------- /R/read_CAMELS.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CH-Earth/gumboot/HEAD/R/read_CAMELS.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CH-Earth/gumboot/HEAD/README.md -------------------------------------------------------------------------------- /data/flows_1030500.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CH-Earth/gumboot/HEAD/data/flows_1030500.rda -------------------------------------------------------------------------------- /data/hcdn_conus_sites.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CH-Earth/gumboot/HEAD/data/hcdn_conus_sites.rda -------------------------------------------------------------------------------- /gumboot.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CH-Earth/gumboot/HEAD/gumboot.Rproj -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CH-Earth/gumboot/HEAD/inst/CITATION -------------------------------------------------------------------------------- /man/CAMELS_bootjack.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CH-Earth/gumboot/HEAD/man/CAMELS_bootjack.Rd -------------------------------------------------------------------------------- /man/bootjack.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CH-Earth/gumboot/HEAD/man/bootjack.Rd -------------------------------------------------------------------------------- /man/flows_1030500.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CH-Earth/gumboot/HEAD/man/flows_1030500.Rd -------------------------------------------------------------------------------- /man/ggplot_estimate_uncertainties.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CH-Earth/gumboot/HEAD/man/ggplot_estimate_uncertainties.Rd -------------------------------------------------------------------------------- /man/gumboot-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CH-Earth/gumboot/HEAD/man/gumboot-package.Rd -------------------------------------------------------------------------------- /man/hcdn_conus_sites.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CH-Earth/gumboot/HEAD/man/hcdn_conus_sites.Rd -------------------------------------------------------------------------------- /man/read_CAMELS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CH-Earth/gumboot/HEAD/man/read_CAMELS.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CH-Earth/gumboot/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test_bootjack.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CH-Earth/gumboot/HEAD/tests/testthat/test_bootjack.R -------------------------------------------------------------------------------- /vignettes/CAMELS_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CH-Earth/gumboot/HEAD/vignettes/CAMELS_plot.png -------------------------------------------------------------------------------- /vignettes/using_gumboot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CH-Earth/gumboot/HEAD/vignettes/using_gumboot.R -------------------------------------------------------------------------------- /vignettes/using_gumboot.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CH-Earth/gumboot/HEAD/vignettes/using_gumboot.Rmd --------------------------------------------------------------------------------