Commit graph

171 commits

Author SHA1 Message Date
Giorgio Comai
7e83e2c27c
R: dygraphs not dygraph as package name in docs (#2541) 2024-05-18 21:43:06 +10:00
Cuong Duong
0bf05baf3c
Bump R version and update holidays file for release (#2349) 2023-01-20 21:52:45 +11:00
laresbernardo
5927f121f2
Fix #2248 on construct_holiday_dataframe (#2252) 2023-01-10 16:40:45 +11:00
bartekch
c9cf658674
Make holidays data internal and exported at the same time (#2185) 2022-09-05 06:15:12 +10:00
Cuong Duong
cc8c69a3ba
Update codegen for packaging rstan models (#2180) 2022-05-25 00:11:08 +10:00
Cuong Duong
679db85047
Update holidays data (#2179) 2022-05-25 00:10:46 +10:00
RaymondMcT
e665430adc
Improved execution time of rolling_mean_by_h (#2142) 2022-05-24 22:28:58 +10:00
Cuong Duong
be87004df9 Merge remote-tracking branch 'upstream/master' into minor-fixing 2021-08-28 02:04:44 +10:00
slowy07
05aa1fdd37 fix: typo grammar 2021-08-03 08:37:45 +07:00
markseeto
e69f2f503f
Add drop = FALSE in regressor_coefficients()
Add `drop = FALSE` in definition of `regressor_coefficients()` to handle the case when there is only one additional regressor.
2021-05-21 17:45:18 +10:00
Cuong Duong
a794018d65
Add support for cmdstanr backend (#1806)
* init

* add suggested packages

* use environment variables and align more with Py package

* remove additional testing logic, default to lbfgs

* Remove Newton specifier from test because cmdstanr expects newton

Co-authored-by: Ben Letham <bletham@gmail.com>
2021-05-10 16:09:25 -07:00
Ben Letham
3f4edef7f5 Fix R handling of dates to work for tsibble 2021-03-29 15:06:09 -07:00
Ben Letham
b5e67e59c3 Clean up R check warnings 2021-03-04 20:59:51 -08:00
Ben Letham
a4b31cd70b Refactor R cross validation to match Py function structure 2021-03-04 14:04:48 -08:00
Ben Letham
4e99ac686e Validate custom cutoffs for data range (R #1650) 2021-03-03 17:59:24 -08:00
Ben Letham
58a0b96550 Plot continuous weekly seasonality in R (#1557, translates #1615 and #1707) 2021-03-03 17:43:58 -08:00
Ben Letham
aaa89445a1 R use GMT for all dates to avoid daylight savings (#1501) 2021-03-03 16:53:39 -08:00
Ben Letham
f123a1a7cc Fix holidays NA handling 2021-03-03 16:06:25 -08:00
Ben Letham
2e9f831474 Check for NAs in holiday dataframe 2021-03-03 15:43:49 -08:00
Ben Letham
8f1c1d5a27 Fix bug in timezone handling in R (#1501) 2021-03-03 14:35:36 -08:00
Cuong Duong
2d56e71fed
Add regressor_coefficients function for R (#1803)
* function code

* add tests for regressor coefficients utility

* add documentation for regressor_coefficients util function

* generate Rd docs

* add regressor_coefficients to R namespace

* minor formatting nit

* fix bugs
2021-03-02 08:30:00 -08:00
Sam Snarr
3adcf9312d
imports RcppParallel and excludes one function that is already in the namespace by importing Rcpp (#1779) 2021-01-14 14:38:36 -08:00
Sam Snarr
2d8e6c7fd1
Added growth='flat' functionality in R (#1778)
* added `flat_growth_init()` function

* added validation for 'flat'

* changed `fit.prophet()` to handle `growth='flat'`

* added `trend='flat'` capabilities to `sample_predictive_trend()` and `fit.prophet()`

* updated STAN code to handle flat trend

* [Syntax fix] Removed unnecessary bracket

* updated documentation

* undid formatting that was accidentally applied by autoformatter

* undid more formatting that was accidentally applied by autoformatter

* added tests

* typo in `sample_predictive_trend()`

* updated notebook with example in R

* updated documentation
2021-01-14 13:53:08 -08:00
sim
73b53658e1
used regex to format the name variable for plotting holiday components (#1766)
* used regex to format the `name`

Removes all singlequotes (') and doublequotes (") in the `name` variable
and replaces all whitespace with an underscore. Now, `ggplot2::aes_string()` can handle a column
name like `New Year's Day`.

* Used backticks in the `name` variable instead of regular expressions

Essentially, I escaped the string `name` with backticks so that
`ggplot2::geom_line()` and `ggplot2::ggplot()` functions can use any
arbitrary input.
2021-01-08 13:22:56 -08:00
Pawel Kranzberg
ad3832bb19
Add SMAPE to diagnostics.R (#1711)
* Add SMAPE to diagnostics.R

Add symmetric mean absolute percentage error.
Include mdape and smape as default performance metrics.

* Add SMAPE to diagnostics.R

Add symmetric mean absolute percentage error.
Include mdape and smape as default performance metrics.

* sMAPE minor code formatting improvements

* Fixed smape function in diagnostics.R
2020-11-09 10:42:20 -08:00
Matt Dancho
d7cd1f299d facebook/prophet#1628 - Import StanHeaders to fix dyn.load error 2020-09-01 09:46:42 -04:00
Ben Letham
dd9a6a4161 resolve R check note 2020-08-18 19:14:16 -07:00
Ben Letham
a519043f1b Fix bug in changepoint handling in prophet_copy (#1529) 2020-08-17 16:24:34 -07:00
Ben Letham
fb6552137c Deduplicate history dates for make_future_dataframe 2020-08-17 14:51:06 -07:00
Ryan Nazareth
f16d9df333
Add mdape performance metric to R (#1472)
* add test and initial function for mdape in R

* Add separate rolling_median_func and tests

* Modify rolling median function

* fix syntax in rolling median function

* sort by h

* R/diagnostics.R

* update .rd docs and notebook

* Add mdape to performance metrics params docstring
2020-05-20 12:28:50 -07:00
Ryan Nazareth
16e632a695
Add custom cutoff option to R (#1484)
* Add test for custom cutoff cv

* implement custom cutoff logic in cv function

* add docstring

* add description in notebook and rebuild .Rd docs

* fix bug and add test case for period is NULL

* replace s.POSIXct set_date
2020-05-15 14:32:54 -07:00
Mikhail Popov
25e2b88765 {rstantools}-based compilation
+ cleans up Stan model compilation by switching over to the rstantools-based workflow (see https://mc-stan.org/rstantools/articles/minimal-rstan-package.html for more info)
+ minor documentation change: {devtools} -> {remotes}, which is better for end-users
+ adds RStudio project file which makes it easier for community to get started with contributing to the package
2020-04-28 16:06:17 -04:00
Mitchell O'Hara-Wild
578b78a8f3
Use system.file() to obtain package installation path (#1435) 2020-04-23 13:06:36 -07:00
Sean Taylor
6bbac0c47b Store compiled model in platform specific location 2020-03-02 13:20:12 -08:00
Sean Taylor
83e2479699 Replace deprecated functions 2020-03-02 13:20:12 -08:00
Ben Letham
46e5611983 R defer model compiling to first fit, to remove compiling from onLoad per CRAN 2020-02-19 21:30:08 -08:00
Ben Letham
398d220743 Merge branch 'master' of https://github.com/facebookincubator/prophet 2020-02-04 14:34:05 -08:00
Ben Letham
b372feb31f avoid warning when using tibble (#1128) 2020-02-04 14:33:39 -08:00
Adriano Fantini
187bf06bf7
pass ... from dyplot.prophet to dygraph::dygraph, addresses #1158 (#1177)
* Pass ... from dyplot.prophet to dygraph to be able to set additional parameters

* Add documentation for ... in dyplot.prophet

Co-authored-by: Ben Letham <bletham@gmail.com>
2020-02-04 13:39:17 -08:00
Ben Letham
be25372090 improvements in docstrings and testing for disabling uncertainty 2020-02-04 13:22:08 -08:00
Ben Letham
6e51130f28 Use fit kwargs in cross validation (#1040) 2020-02-03 17:02:23 -08:00
Ben Letham
4fcecdb3df Fix bugs that were introduced into R cross validation 2020-02-03 16:18:46 -08:00
ben-schwen
5b58ad13cb fix output of valid metrics in performance_metrics 2020-01-27 13:53:11 -08:00
Ben Letham
83f66dadfd Typo fix 2019-11-06 15:34:14 -08:00
Maxim Grishin
a3ae4715bb Make Python version consistent with R 2019-10-22 17:28:27 -07:00
bl
c7a150312a Bugfix for R uncertainty sample handling 2019-10-18 17:06:58 -07:00
Mitchell
f4d997e0ac Fix usage of uncertainty.samples 2019-10-16 16:48:49 -07:00
Ryan Nazareth
a2a0df904e Disabling plotting uncertainties if m.samples is False or 0 2019-10-07 14:17:54 -07:00
Ryan Nazareth
36f3ddc436 Correct syntax issues 2019-10-07 14:17:54 -07:00
Ryan Nazareth
c95eb0dcd9 Disabling calculation of uncertainties if uncertainty.samples is not True 2019-10-07 14:17:54 -07:00