├── DESCRIPTION ├── LICENSE ├── MD5 ├── NAMESPACE ├── R ├── add.ar.R ├── add.dynamic.regression.R ├── add.generalized.local.linear.trend.R ├── add.local.level.R ├── add.local.linear.trend.R ├── add.monthly.annual.cycle.R ├── add.random.walk.holiday.R ├── add.regression.holiday.R ├── add.seasonal.R ├── add.semilocal.linear.trend.R ├── add.static.intercept.R ├── add.student.local.linear.trend.R ├── add.trig.R ├── bsts.R ├── compare.bsts.models.R ├── date.functions.R ├── diagnostics.R ├── dirm.R ├── format.learning.data.R ├── format.timestamps.R ├── holiday.R ├── mbsts.R ├── mbsts.plots.R ├── mixed.frequency.R ├── plot_seasonal_effect.R ├── plots.R ├── predict.bsts.R ├── predict.mbsts.R ├── summary.bsts.R └── utils.R ├── data ├── gdp.RData ├── goog.RData ├── iclaims.RData ├── new.home.sales.RData ├── rsxfs.RData ├── shark.RData └── turkish.RData ├── inst └── tests │ ├── tests │ ├── testthat.R │ └── testthat │ │ ├── test-ar.R │ │ ├── test-autoar.R │ │ ├── test-date-range.R │ │ ├── test-dirm.R │ │ ├── test-dynamic-regression.R │ │ ├── test-goog.R │ │ ├── test-holidays.R │ │ ├── test-multivariate.R │ │ ├── test-plot-components.R │ │ ├── test-poisson.R │ │ ├── test-prediction-errors.R │ │ ├── test-prediction.R │ │ ├── test-regressionholiday.R │ │ ├── test-seasonal.R │ │ ├── test-sigma-upper-limit.R │ │ ├── test-student.R │ │ └── test-trig.R │ ├── testthat.R │ └── testthat │ ├── test-ar.R │ ├── test-autoar.R │ ├── test-date-range.R │ ├── test-dirm.R │ ├── test-dynamic-regression.R │ ├── test-goog.R │ ├── test-holidays.R │ ├── test-multivariate.R │ ├── test-plot-components.R │ ├── test-poisson.R │ ├── test-prediction-errors.R │ ├── test-prediction.R │ ├── test-regressionholiday.R │ ├── test-seasonal.R │ ├── test-sigma-upper-limit.R │ ├── test-student.R │ └── test-trig.R ├── man ├── HarveyCumulator.Rd ├── MATCH.NumericTimestamps.Rd ├── StateSpecification.Rd ├── SuggestBurn.Rd ├── add.ar.Rd ├── add.dynamic.regression.Rd ├── add.local.level.Rd ├── add.local.linear.trend.Rd ├── add.monthly.annual.cycle.Rd ├── add.random.walk.holiday.Rd ├── add.seasonal.Rd ├── add.semilocal.linear.trend.Rd ├── add.shared.local.level.Rd ├── add.static.intercept.Rd ├── add.student.local.linear.trend.Rd ├── add.trig.Rd ├── aggregate.time.series.Rd ├── aggregate.weeks.to.months.Rd ├── auto.ar.Rd ├── bsts-package.Rd ├── bsts.Rd ├── bsts.options.Rd ├── compare.bsts.models.Rd ├── date.range.Rd ├── descriptive-plots.Rd ├── diagnostic-plots.Rd ├── dirm-model-options.Rd ├── dirm.Rd ├── estimate.time.scale.Rd ├── extend.time.Rd ├── format.timestamps.Rd ├── gdp.Rd ├── geometric.sequence.Rd ├── get.fraction.Rd ├── goog.Rd ├── holiday.Rd ├── iclaims.Rd ├── last.day.in.month.Rd ├── match.week.to.month.Rd ├── max.window.width.Rd ├── mbsts.Rd ├── mixed.frequency.Rd ├── month.distance.Rd ├── named.holidays.Rd ├── new.home.sales.Rd ├── one.step.prediction.errors.Rd ├── plot.bsts.Rd ├── plot.bsts.mixed.Rd ├── plot.bsts.prediction.Rd ├── plot.bsts.predictors.Rd ├── plot.holiday.Rd ├── plot.mbsts.Rd ├── plot.mbsts.prediction.Rd ├── predict.bsts.Rd ├── predict.mbsts.Rd ├── quarter.Rd ├── regression.holiday.Rd ├── regularize.timestamps.Rd ├── residuals.bsts.Rd ├── rsxfs.Rd ├── shark.Rd ├── shorten.Rd ├── simulate.fake.mixed.frequency.data.Rd ├── spike.slab.ar.prior.Rd ├── state.sizes.Rd ├── summary.bsts.Rd ├── to.posixt.Rd ├── turkish.Rd ├── week.ends.Rd ├── weekday.names.Rd └── wide.to.long.Rd └── src ├── Makevars ├── aggregate_time_series.cc ├── bsts.cc ├── bsts_init.cc ├── create_dynamic_intercept_state_model.cpp ├── create_dynamic_intercept_state_model.h ├── create_shared_state_model.cpp ├── create_shared_state_model.h ├── create_state_model.cpp ├── create_state_model.h ├── dirm.cc ├── dynamic_intercept_model_manager.cc ├── dynamic_intercept_model_manager.h ├── get_date_ranges.cc ├── mbsts.cc ├── mixed_frequency.cc ├── model_manager.cc ├── model_manager.h ├── multivariate_gaussian_model_manager.cc ├── multivariate_gaussian_model_manager.h ├── state_space_gaussian_model_manager.cc ├── state_space_gaussian_model_manager.h ├── state_space_logit_model_manager.cc ├── state_space_logit_model_manager.h ├── state_space_poisson_model_manager.cc ├── state_space_poisson_model_manager.h ├── state_space_regression_model_manager.cc ├── state_space_regression_model_manager.h ├── state_space_student_model_manager.cc ├── state_space_student_model_manager.h ├── timestamp_info.cc ├── timestamp_info.h ├── utils.cc └── utils.h /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2022 2 | COPYRIGHT HOLDER: Steven L. Scott 3 | -------------------------------------------------------------------------------- /MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/MD5 -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/add.ar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/R/add.ar.R -------------------------------------------------------------------------------- /R/add.dynamic.regression.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/R/add.dynamic.regression.R -------------------------------------------------------------------------------- /R/add.generalized.local.linear.trend.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/R/add.generalized.local.linear.trend.R -------------------------------------------------------------------------------- /R/add.local.level.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/R/add.local.level.R -------------------------------------------------------------------------------- /R/add.local.linear.trend.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/R/add.local.linear.trend.R -------------------------------------------------------------------------------- /R/add.monthly.annual.cycle.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/R/add.monthly.annual.cycle.R -------------------------------------------------------------------------------- /R/add.random.walk.holiday.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/R/add.random.walk.holiday.R -------------------------------------------------------------------------------- /R/add.regression.holiday.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/R/add.regression.holiday.R -------------------------------------------------------------------------------- /R/add.seasonal.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/R/add.seasonal.R -------------------------------------------------------------------------------- /R/add.semilocal.linear.trend.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/R/add.semilocal.linear.trend.R -------------------------------------------------------------------------------- /R/add.static.intercept.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/R/add.static.intercept.R -------------------------------------------------------------------------------- /R/add.student.local.linear.trend.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/R/add.student.local.linear.trend.R -------------------------------------------------------------------------------- /R/add.trig.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/R/add.trig.R -------------------------------------------------------------------------------- /R/bsts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/R/bsts.R -------------------------------------------------------------------------------- /R/compare.bsts.models.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/R/compare.bsts.models.R -------------------------------------------------------------------------------- /R/date.functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/R/date.functions.R -------------------------------------------------------------------------------- /R/diagnostics.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/R/diagnostics.R -------------------------------------------------------------------------------- /R/dirm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/R/dirm.R -------------------------------------------------------------------------------- /R/format.learning.data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/R/format.learning.data.R -------------------------------------------------------------------------------- /R/format.timestamps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/R/format.timestamps.R -------------------------------------------------------------------------------- /R/holiday.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/R/holiday.R -------------------------------------------------------------------------------- /R/mbsts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/R/mbsts.R -------------------------------------------------------------------------------- /R/mbsts.plots.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/R/mbsts.plots.R -------------------------------------------------------------------------------- /R/mixed.frequency.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/R/mixed.frequency.R -------------------------------------------------------------------------------- /R/plot_seasonal_effect.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/R/plot_seasonal_effect.R -------------------------------------------------------------------------------- /R/plots.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/R/plots.R -------------------------------------------------------------------------------- /R/predict.bsts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/R/predict.bsts.R -------------------------------------------------------------------------------- /R/predict.mbsts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/R/predict.mbsts.R -------------------------------------------------------------------------------- /R/summary.bsts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/R/summary.bsts.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/R/utils.R -------------------------------------------------------------------------------- /data/gdp.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/data/gdp.RData -------------------------------------------------------------------------------- /data/goog.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/data/goog.RData -------------------------------------------------------------------------------- /data/iclaims.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/data/iclaims.RData -------------------------------------------------------------------------------- /data/new.home.sales.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/data/new.home.sales.RData -------------------------------------------------------------------------------- /data/rsxfs.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/data/rsxfs.RData -------------------------------------------------------------------------------- /data/shark.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/data/shark.RData -------------------------------------------------------------------------------- /data/turkish.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/data/turkish.RData -------------------------------------------------------------------------------- /inst/tests/tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/inst/tests/tests/testthat.R -------------------------------------------------------------------------------- /inst/tests/tests/testthat/test-ar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/inst/tests/tests/testthat/test-ar.R -------------------------------------------------------------------------------- /inst/tests/tests/testthat/test-autoar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/inst/tests/tests/testthat/test-autoar.R -------------------------------------------------------------------------------- /inst/tests/tests/testthat/test-date-range.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/inst/tests/tests/testthat/test-date-range.R -------------------------------------------------------------------------------- /inst/tests/tests/testthat/test-dirm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/inst/tests/tests/testthat/test-dirm.R -------------------------------------------------------------------------------- /inst/tests/tests/testthat/test-dynamic-regression.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/inst/tests/tests/testthat/test-dynamic-regression.R -------------------------------------------------------------------------------- /inst/tests/tests/testthat/test-goog.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/inst/tests/tests/testthat/test-goog.R -------------------------------------------------------------------------------- /inst/tests/tests/testthat/test-holidays.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/inst/tests/tests/testthat/test-holidays.R -------------------------------------------------------------------------------- /inst/tests/tests/testthat/test-multivariate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/inst/tests/tests/testthat/test-multivariate.R -------------------------------------------------------------------------------- /inst/tests/tests/testthat/test-plot-components.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/inst/tests/tests/testthat/test-plot-components.R -------------------------------------------------------------------------------- /inst/tests/tests/testthat/test-poisson.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/inst/tests/tests/testthat/test-poisson.R -------------------------------------------------------------------------------- /inst/tests/tests/testthat/test-prediction-errors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/inst/tests/tests/testthat/test-prediction-errors.R -------------------------------------------------------------------------------- /inst/tests/tests/testthat/test-prediction.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/inst/tests/tests/testthat/test-prediction.R -------------------------------------------------------------------------------- /inst/tests/tests/testthat/test-regressionholiday.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/inst/tests/tests/testthat/test-regressionholiday.R -------------------------------------------------------------------------------- /inst/tests/tests/testthat/test-seasonal.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/inst/tests/tests/testthat/test-seasonal.R -------------------------------------------------------------------------------- /inst/tests/tests/testthat/test-sigma-upper-limit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/inst/tests/tests/testthat/test-sigma-upper-limit.R -------------------------------------------------------------------------------- /inst/tests/tests/testthat/test-student.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/inst/tests/tests/testthat/test-student.R -------------------------------------------------------------------------------- /inst/tests/tests/testthat/test-trig.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/inst/tests/tests/testthat/test-trig.R -------------------------------------------------------------------------------- /inst/tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/inst/tests/testthat.R -------------------------------------------------------------------------------- /inst/tests/testthat/test-ar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/inst/tests/testthat/test-ar.R -------------------------------------------------------------------------------- /inst/tests/testthat/test-autoar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/inst/tests/testthat/test-autoar.R -------------------------------------------------------------------------------- /inst/tests/testthat/test-date-range.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/inst/tests/testthat/test-date-range.R -------------------------------------------------------------------------------- /inst/tests/testthat/test-dirm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/inst/tests/testthat/test-dirm.R -------------------------------------------------------------------------------- /inst/tests/testthat/test-dynamic-regression.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/inst/tests/testthat/test-dynamic-regression.R -------------------------------------------------------------------------------- /inst/tests/testthat/test-goog.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/inst/tests/testthat/test-goog.R -------------------------------------------------------------------------------- /inst/tests/testthat/test-holidays.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/inst/tests/testthat/test-holidays.R -------------------------------------------------------------------------------- /inst/tests/testthat/test-multivariate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/inst/tests/testthat/test-multivariate.R -------------------------------------------------------------------------------- /inst/tests/testthat/test-plot-components.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/inst/tests/testthat/test-plot-components.R -------------------------------------------------------------------------------- /inst/tests/testthat/test-poisson.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/inst/tests/testthat/test-poisson.R -------------------------------------------------------------------------------- /inst/tests/testthat/test-prediction-errors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/inst/tests/testthat/test-prediction-errors.R -------------------------------------------------------------------------------- /inst/tests/testthat/test-prediction.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/inst/tests/testthat/test-prediction.R -------------------------------------------------------------------------------- /inst/tests/testthat/test-regressionholiday.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/inst/tests/testthat/test-regressionholiday.R -------------------------------------------------------------------------------- /inst/tests/testthat/test-seasonal.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/inst/tests/testthat/test-seasonal.R -------------------------------------------------------------------------------- /inst/tests/testthat/test-sigma-upper-limit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/inst/tests/testthat/test-sigma-upper-limit.R -------------------------------------------------------------------------------- /inst/tests/testthat/test-student.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/inst/tests/testthat/test-student.R -------------------------------------------------------------------------------- /inst/tests/testthat/test-trig.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/inst/tests/testthat/test-trig.R -------------------------------------------------------------------------------- /man/HarveyCumulator.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/HarveyCumulator.Rd -------------------------------------------------------------------------------- /man/MATCH.NumericTimestamps.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/MATCH.NumericTimestamps.Rd -------------------------------------------------------------------------------- /man/StateSpecification.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/StateSpecification.Rd -------------------------------------------------------------------------------- /man/SuggestBurn.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/SuggestBurn.Rd -------------------------------------------------------------------------------- /man/add.ar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/add.ar.Rd -------------------------------------------------------------------------------- /man/add.dynamic.regression.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/add.dynamic.regression.Rd -------------------------------------------------------------------------------- /man/add.local.level.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/add.local.level.Rd -------------------------------------------------------------------------------- /man/add.local.linear.trend.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/add.local.linear.trend.Rd -------------------------------------------------------------------------------- /man/add.monthly.annual.cycle.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/add.monthly.annual.cycle.Rd -------------------------------------------------------------------------------- /man/add.random.walk.holiday.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/add.random.walk.holiday.Rd -------------------------------------------------------------------------------- /man/add.seasonal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/add.seasonal.Rd -------------------------------------------------------------------------------- /man/add.semilocal.linear.trend.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/add.semilocal.linear.trend.Rd -------------------------------------------------------------------------------- /man/add.shared.local.level.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/add.shared.local.level.Rd -------------------------------------------------------------------------------- /man/add.static.intercept.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/add.static.intercept.Rd -------------------------------------------------------------------------------- /man/add.student.local.linear.trend.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/add.student.local.linear.trend.Rd -------------------------------------------------------------------------------- /man/add.trig.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/add.trig.Rd -------------------------------------------------------------------------------- /man/aggregate.time.series.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/aggregate.time.series.Rd -------------------------------------------------------------------------------- /man/aggregate.weeks.to.months.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/aggregate.weeks.to.months.Rd -------------------------------------------------------------------------------- /man/auto.ar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/auto.ar.Rd -------------------------------------------------------------------------------- /man/bsts-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/bsts-package.Rd -------------------------------------------------------------------------------- /man/bsts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/bsts.Rd -------------------------------------------------------------------------------- /man/bsts.options.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/bsts.options.Rd -------------------------------------------------------------------------------- /man/compare.bsts.models.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/compare.bsts.models.Rd -------------------------------------------------------------------------------- /man/date.range.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/date.range.Rd -------------------------------------------------------------------------------- /man/descriptive-plots.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/descriptive-plots.Rd -------------------------------------------------------------------------------- /man/diagnostic-plots.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/diagnostic-plots.Rd -------------------------------------------------------------------------------- /man/dirm-model-options.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/dirm-model-options.Rd -------------------------------------------------------------------------------- /man/dirm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/dirm.Rd -------------------------------------------------------------------------------- /man/estimate.time.scale.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/estimate.time.scale.Rd -------------------------------------------------------------------------------- /man/extend.time.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/extend.time.Rd -------------------------------------------------------------------------------- /man/format.timestamps.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/format.timestamps.Rd -------------------------------------------------------------------------------- /man/gdp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/gdp.Rd -------------------------------------------------------------------------------- /man/geometric.sequence.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/geometric.sequence.Rd -------------------------------------------------------------------------------- /man/get.fraction.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/get.fraction.Rd -------------------------------------------------------------------------------- /man/goog.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/goog.Rd -------------------------------------------------------------------------------- /man/holiday.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/holiday.Rd -------------------------------------------------------------------------------- /man/iclaims.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/iclaims.Rd -------------------------------------------------------------------------------- /man/last.day.in.month.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/last.day.in.month.Rd -------------------------------------------------------------------------------- /man/match.week.to.month.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/match.week.to.month.Rd -------------------------------------------------------------------------------- /man/max.window.width.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/max.window.width.Rd -------------------------------------------------------------------------------- /man/mbsts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/mbsts.Rd -------------------------------------------------------------------------------- /man/mixed.frequency.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/mixed.frequency.Rd -------------------------------------------------------------------------------- /man/month.distance.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/month.distance.Rd -------------------------------------------------------------------------------- /man/named.holidays.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/named.holidays.Rd -------------------------------------------------------------------------------- /man/new.home.sales.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/new.home.sales.Rd -------------------------------------------------------------------------------- /man/one.step.prediction.errors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/one.step.prediction.errors.Rd -------------------------------------------------------------------------------- /man/plot.bsts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/plot.bsts.Rd -------------------------------------------------------------------------------- /man/plot.bsts.mixed.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/plot.bsts.mixed.Rd -------------------------------------------------------------------------------- /man/plot.bsts.prediction.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/plot.bsts.prediction.Rd -------------------------------------------------------------------------------- /man/plot.bsts.predictors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/plot.bsts.predictors.Rd -------------------------------------------------------------------------------- /man/plot.holiday.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/plot.holiday.Rd -------------------------------------------------------------------------------- /man/plot.mbsts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/plot.mbsts.Rd -------------------------------------------------------------------------------- /man/plot.mbsts.prediction.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/plot.mbsts.prediction.Rd -------------------------------------------------------------------------------- /man/predict.bsts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/predict.bsts.Rd -------------------------------------------------------------------------------- /man/predict.mbsts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/predict.mbsts.Rd -------------------------------------------------------------------------------- /man/quarter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/quarter.Rd -------------------------------------------------------------------------------- /man/regression.holiday.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/regression.holiday.Rd -------------------------------------------------------------------------------- /man/regularize.timestamps.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/regularize.timestamps.Rd -------------------------------------------------------------------------------- /man/residuals.bsts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/residuals.bsts.Rd -------------------------------------------------------------------------------- /man/rsxfs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/rsxfs.Rd -------------------------------------------------------------------------------- /man/shark.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/shark.Rd -------------------------------------------------------------------------------- /man/shorten.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/shorten.Rd -------------------------------------------------------------------------------- /man/simulate.fake.mixed.frequency.data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/simulate.fake.mixed.frequency.data.Rd -------------------------------------------------------------------------------- /man/spike.slab.ar.prior.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/spike.slab.ar.prior.Rd -------------------------------------------------------------------------------- /man/state.sizes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/state.sizes.Rd -------------------------------------------------------------------------------- /man/summary.bsts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/summary.bsts.Rd -------------------------------------------------------------------------------- /man/to.posixt.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/to.posixt.Rd -------------------------------------------------------------------------------- /man/turkish.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/turkish.Rd -------------------------------------------------------------------------------- /man/week.ends.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/week.ends.Rd -------------------------------------------------------------------------------- /man/weekday.names.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/weekday.names.Rd -------------------------------------------------------------------------------- /man/wide.to.long.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/man/wide.to.long.Rd -------------------------------------------------------------------------------- /src/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/src/Makevars -------------------------------------------------------------------------------- /src/aggregate_time_series.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/src/aggregate_time_series.cc -------------------------------------------------------------------------------- /src/bsts.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/src/bsts.cc -------------------------------------------------------------------------------- /src/bsts_init.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/src/bsts_init.cc -------------------------------------------------------------------------------- /src/create_dynamic_intercept_state_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/src/create_dynamic_intercept_state_model.cpp -------------------------------------------------------------------------------- /src/create_dynamic_intercept_state_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/src/create_dynamic_intercept_state_model.h -------------------------------------------------------------------------------- /src/create_shared_state_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/src/create_shared_state_model.cpp -------------------------------------------------------------------------------- /src/create_shared_state_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/src/create_shared_state_model.h -------------------------------------------------------------------------------- /src/create_state_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/src/create_state_model.cpp -------------------------------------------------------------------------------- /src/create_state_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/src/create_state_model.h -------------------------------------------------------------------------------- /src/dirm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/src/dirm.cc -------------------------------------------------------------------------------- /src/dynamic_intercept_model_manager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/src/dynamic_intercept_model_manager.cc -------------------------------------------------------------------------------- /src/dynamic_intercept_model_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/src/dynamic_intercept_model_manager.h -------------------------------------------------------------------------------- /src/get_date_ranges.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/src/get_date_ranges.cc -------------------------------------------------------------------------------- /src/mbsts.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/src/mbsts.cc -------------------------------------------------------------------------------- /src/mixed_frequency.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/src/mixed_frequency.cc -------------------------------------------------------------------------------- /src/model_manager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/src/model_manager.cc -------------------------------------------------------------------------------- /src/model_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/src/model_manager.h -------------------------------------------------------------------------------- /src/multivariate_gaussian_model_manager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/src/multivariate_gaussian_model_manager.cc -------------------------------------------------------------------------------- /src/multivariate_gaussian_model_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/src/multivariate_gaussian_model_manager.h -------------------------------------------------------------------------------- /src/state_space_gaussian_model_manager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/src/state_space_gaussian_model_manager.cc -------------------------------------------------------------------------------- /src/state_space_gaussian_model_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/src/state_space_gaussian_model_manager.h -------------------------------------------------------------------------------- /src/state_space_logit_model_manager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/src/state_space_logit_model_manager.cc -------------------------------------------------------------------------------- /src/state_space_logit_model_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/src/state_space_logit_model_manager.h -------------------------------------------------------------------------------- /src/state_space_poisson_model_manager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/src/state_space_poisson_model_manager.cc -------------------------------------------------------------------------------- /src/state_space_poisson_model_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/src/state_space_poisson_model_manager.h -------------------------------------------------------------------------------- /src/state_space_regression_model_manager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/src/state_space_regression_model_manager.cc -------------------------------------------------------------------------------- /src/state_space_regression_model_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/src/state_space_regression_model_manager.h -------------------------------------------------------------------------------- /src/state_space_student_model_manager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/src/state_space_student_model_manager.cc -------------------------------------------------------------------------------- /src/state_space_student_model_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/src/state_space_student_model_manager.h -------------------------------------------------------------------------------- /src/timestamp_info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/src/timestamp_info.cc -------------------------------------------------------------------------------- /src/timestamp_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/src/timestamp_info.h -------------------------------------------------------------------------------- /src/utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/src/utils.cc -------------------------------------------------------------------------------- /src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cran/bsts/HEAD/src/utils.h --------------------------------------------------------------------------------