gitextract_w0ay2q3a/ ├── .deepsource.toml ├── .gitattributes ├── .github/ │ └── workflows/ │ ├── build-and-test.yml │ └── wheel.yml ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── LICENSE ├── Makefile ├── R/ │ ├── .Rbuildignore │ ├── .gitignore │ ├── DESCRIPTION │ ├── LICENSE │ ├── NAMESPACE │ ├── R/ │ │ ├── data.R │ │ ├── diagnostics.R │ │ ├── make_holidays.R │ │ ├── plot.R │ │ ├── prophet.R │ │ ├── stan_backends.R │ │ ├── stanmodels.R │ │ ├── sysdata.rda │ │ ├── utilities.R │ │ └── zzz.R │ ├── configure │ ├── configure.win │ ├── data-raw/ │ │ ├── generated_holidays.R │ │ └── generated_holidays.csv │ ├── inst/ │ │ ├── include/ │ │ │ └── stan_meta_header.hpp │ │ └── stan/ │ │ └── prophet.stan │ ├── man/ │ │ ├── add_changepoints_to_plot.Rd │ │ ├── add_country_holidays.Rd │ │ ├── add_group_component.Rd │ │ ├── add_regressor.Rd │ │ ├── add_seasonality.Rd │ │ ├── check_cmdstanr.Rd │ │ ├── construct_holiday_dataframe.Rd │ │ ├── coverage.Rd │ │ ├── cross_validation.Rd │ │ ├── df_for_plotting.Rd │ │ ├── dot-fit.Rd │ │ ├── dot-load_model.Rd │ │ ├── dot-sampling.Rd │ │ ├── dot-stan_args.Rd │ │ ├── dyplot.prophet.Rd │ │ ├── fit.prophet.Rd │ │ ├── flat_growth_init.Rd │ │ ├── flat_trend.Rd │ │ ├── fourier_series.Rd │ │ ├── generate_cutoffs.Rd │ │ ├── generated_holidays.Rd │ │ ├── get_holiday_names.Rd │ │ ├── get_stan_backend.Rd │ │ ├── initialize_scales_fn.Rd │ │ ├── linear_growth_init.Rd │ │ ├── logistic_growth_init.Rd │ │ ├── mae.Rd │ │ ├── make_all_seasonality_features.Rd │ │ ├── make_future_dataframe.Rd │ │ ├── make_holiday_features.Rd │ │ ├── make_holidays_df.Rd │ │ ├── make_seasonality_features.Rd │ │ ├── mape.Rd │ │ ├── mdape.Rd │ │ ├── mse.Rd │ │ ├── parse_seasonality_args.Rd │ │ ├── performance_metrics.Rd │ │ ├── piecewise_linear.Rd │ │ ├── piecewise_logistic.Rd │ │ ├── plot.prophet.Rd │ │ ├── plot_cross_validation_metric.Rd │ │ ├── plot_forecast_component.Rd │ │ ├── plot_seasonality.Rd │ │ ├── plot_weekly.Rd │ │ ├── plot_yearly.Rd │ │ ├── predict.prophet.Rd │ │ ├── predict_seasonal_components.Rd │ │ ├── predict_trend.Rd │ │ ├── predict_uncertainty.Rd │ │ ├── predictive_samples.Rd │ │ ├── prophet.Rd │ │ ├── prophet_copy.Rd │ │ ├── prophet_plot_components.Rd │ │ ├── regressor_coefficients.Rd │ │ ├── regressor_column_matrix.Rd │ │ ├── rmse.Rd │ │ ├── rolling_mean_by_h.Rd │ │ ├── rolling_median_by_h.Rd │ │ ├── sample_model.Rd │ │ ├── sample_posterior_predictive.Rd │ │ ├── sample_predictive_trend.Rd │ │ ├── seasonality_plot_df.Rd │ │ ├── set_auto_seasonalities.Rd │ │ ├── set_changepoints.Rd │ │ ├── set_date.Rd │ │ ├── setup_dataframe.Rd │ │ ├── single_cutoff_forecast.Rd │ │ ├── smape.Rd │ │ ├── time_diff.Rd │ │ ├── validate_column_name.Rd │ │ └── validate_inputs.Rd │ ├── prophet.Rproj │ ├── src/ │ │ ├── Makevars │ │ └── Makevars.win │ ├── tests/ │ │ ├── testthat/ │ │ │ ├── data.csv │ │ │ ├── data2.csv │ │ │ ├── test_diagnostics.R │ │ │ ├── test_prophet.R │ │ │ ├── test_stan_functions.R │ │ │ └── test_utilities.R │ │ └── testthat.R │ └── vignettes/ │ └── quick_start.Rmd ├── README.md ├── docker-compose.yml ├── docs/ │ ├── .gitignore │ ├── CONTRIBUTING.md │ ├── Gemfile │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── _config.yml │ ├── _data/ │ │ ├── authors.yml │ │ ├── features.yml │ │ ├── nav.yml │ │ ├── nav_docs.yml │ │ ├── powered_by.yml │ │ ├── powered_by_highlight.yml │ │ └── promo.yml │ ├── _docs/ │ │ ├── additional_topics.md │ │ ├── contributing.md │ │ ├── diagnostics.md │ │ ├── handling_shocks.md │ │ ├── holiday_effects.md │ │ ├── installation.md │ │ ├── multiplicative_seasonality.md │ │ ├── non-daily_data.md │ │ ├── outliers.md │ │ ├── quick_start.md │ │ ├── saturating_forecasts.md │ │ ├── seasonality,_holiday_effects,_and_regressors.md │ │ ├── trend_changepoints.md │ │ └── uncertainty_intervals.md │ ├── _includes/ │ │ ├── blog_pagination.html │ │ ├── content/ │ │ │ ├── gridblocks.html │ │ │ └── items/ │ │ │ └── gridblock.html │ │ ├── doc.html │ │ ├── doc_paging.html │ │ ├── footer.html │ │ ├── head.html │ │ ├── header.html │ │ ├── hero.html │ │ ├── home_header.html │ │ ├── katex_import.html │ │ ├── katex_render.html │ │ ├── nav/ │ │ │ ├── collection_nav.html │ │ │ ├── collection_nav_group.html │ │ │ ├── collection_nav_group_item.html │ │ │ └── header_nav.html │ │ ├── nav.html │ │ ├── nav_search.html │ │ ├── plugins/ │ │ │ ├── all_share.html │ │ │ ├── ascii_cinema.html │ │ │ ├── button.html │ │ │ ├── github_star.html │ │ │ ├── github_watch.html │ │ │ ├── google_share.html │ │ │ ├── iframe.html │ │ │ ├── like_button.html │ │ │ ├── plugin_row.html │ │ │ ├── post_social_plugins.html │ │ │ ├── slideshow.html │ │ │ ├── twitter_follow.html │ │ │ └── twitter_share.html │ │ ├── post.html │ │ ├── powered_by.html │ │ ├── social_plugins.html │ │ └── ui/ │ │ └── button.html │ ├── _layouts/ │ │ ├── basic.html │ │ ├── blog.html │ │ ├── blog_default.html │ │ ├── default.html │ │ ├── doc_default.html │ │ ├── doc_page.html │ │ ├── docs.html │ │ ├── home.html │ │ ├── page.html │ │ ├── plain.html │ │ ├── post.html │ │ ├── redirect.html │ │ └── top-level.html │ ├── _sass/ │ │ ├── _base.scss │ │ ├── _blog.scss │ │ ├── _buttons.scss │ │ ├── _footer.scss │ │ ├── _gridBlock.scss │ │ ├── _header.scss │ │ ├── _poweredby.scss │ │ ├── _promo.scss │ │ ├── _react_docs_nav.scss │ │ ├── _react_header_nav.scss │ │ ├── _reset.scss │ │ ├── _search.scss │ │ ├── _slideshow.scss │ │ ├── _syntax-highlighting.scss │ │ └── _tables.scss │ ├── blog/ │ │ ├── all.html │ │ └── index.html │ ├── css/ │ │ └── main.scss │ ├── docs/ │ │ └── index.html │ ├── feed.xml │ ├── index.md │ └── nbconvert_template.tpl ├── examples/ │ ├── example_air_passengers.csv │ ├── example_pedestrians_covid.csv │ ├── example_pedestrians_multivariate.csv │ ├── example_retail_sales.csv │ ├── example_wp_log_R.csv │ ├── example_wp_log_R_outliers1.csv │ ├── example_wp_log_R_outliers2.csv │ ├── example_wp_log_peyton_manning.csv │ └── example_yosemite_temps.csv ├── notebooks/ │ ├── additional_topics.ipynb │ ├── diagnostics.ipynb │ ├── handling_shocks.ipynb │ ├── multiplicative_seasonality.ipynb │ ├── non-daily_data.ipynb │ ├── outliers.ipynb │ ├── quick_start.ipynb │ ├── saturating_forecasts.ipynb │ ├── seasonality,_holiday_effects,_and_regressors.ipynb │ ├── trend_changepoints.ipynb │ └── uncertainty_intervals.ipynb ├── python/ │ ├── LICENSE │ ├── MANIFEST.in │ ├── README.md │ ├── prophet/ │ │ ├── __init__.py │ │ ├── __version__.py │ │ ├── diagnostics.py │ │ ├── forecaster.py │ │ ├── make_holidays.py │ │ ├── models.py │ │ ├── plot.py │ │ ├── py.typed │ │ ├── serialize.py │ │ ├── tests/ │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── data.csv │ │ │ ├── data2.csv │ │ │ ├── data3.csv │ │ │ ├── serialized_model_v0.6.1.dev0.json │ │ │ ├── serialized_model_v0.7.1.json │ │ │ ├── serialized_model_v1.0.1.json │ │ │ ├── test_diagnostics.py │ │ │ ├── test_prophet.py │ │ │ ├── test_serialize.py │ │ │ └── test_utilities.py │ │ └── utilities.py │ ├── pyproject.toml │ ├── scripts/ │ │ └── generate_holidays_file.py │ ├── setup.py │ └── stan/ │ └── prophet.stan └── python_shim/ ├── LICENSE ├── MANIFEST.in ├── README.md ├── fbprophet/ │ ├── __init__.py │ ├── diagnostics.py │ ├── forecaster.py │ ├── make_holidays.py │ ├── models.py │ ├── plot.py │ ├── serialize.py │ └── tests/ │ ├── __init__.py │ ├── data.csv │ └── test_package.py ├── requirements.txt └── setup.py