Ben Letham
de5b7494de
Remove pd.Series from np.matmul
2019-01-15 12:47:54 -08:00
Ben Letham
324decf21d
Fix broken link in quickstart
2019-01-08 17:28:54 -08:00
Ben Letham
43813c842d
Fix CI link
2019-01-08 14:46:22 -08:00
Sean J. Taylor
e636732d04
Merge
2019-01-08 11:02:16 -08:00
Sean J. Taylor
34af9efb89
Post1 release + remove pyproject.toml file
2019-01-08 11:00:54 -08:00
Ben Letham
88912a6da1
Include setuptools and wheel as build dependencies
2019-01-08 09:52:30 -08:00
Gordon Inggs
aebe8da78d
Rather using Monday const from built-in calendar.py ( #791 )
...
Latest version of holidays (0.9.9) changed the name of its MONDAY const
to MON. Rather using the MONDAY const from the same library as the
object that it is being used with.
2019-01-07 16:22:31 -08:00
Sean J. Taylor
4345a90427
Merge branch 'master' of github.com:facebook/prophet
2018-12-21 09:31:10 -08:00
Sean J. Taylor
e0ce0d02b4
Update docs to reflect CRAN status
2018-12-21 09:24:05 -08:00
Ben Letham
6886371961
Add pyproject.toml back
2018-12-20 20:30:43 -08:00
Ben Letham
3e31d5d1c7
Fix absolute paths in setup.py
2018-12-20 18:15:07 -08:00
Sean J. Taylor
a8abc0327d
Merge branch 'master' of github.com:facebook/prophet
2018-12-20 17:04:17 -08:00
Sean J. Taylor
703c0731f6
Supress warning messages while building model
2018-12-20 17:04:03 -08:00
Ben Letham
1f24d059c9
Setup update
2018-12-20 16:11:53 -08:00
Ben Letham
9557e57b71
Build fix
2018-12-20 15:46:55 -08:00
Ben Letham
bf79aa539e
Fix travis link
2018-12-20 15:39:11 -08:00
Ben Letham
9676019825
Update manifest and include package data
2018-12-20 15:36:02 -08:00
Mpho Mphego
f16e22731f
Update and rename README to README.md and Unicode strings ( #766 )
...
* Update and rename README to README.md and Unicode strings
Updated Readme file and converted from rst to markdown.
String contains ascii characters (converted to unicode string)
Signed-off-by: Mpho Mphego mpho112@gmail.com
* Deprecated import `from __future__ import unicode_literals` removed and ran isort module
https://mail.python.org/pipermail/python-dev/2016-December/147009.html
Included setuptool-git in the requirement.txt and updated `setup.py`
Reasons for this are highlighted here -> https://github.com/msabramo/setuptools-git#usage
2018-12-20 15:33:23 -08:00
Sean J. Taylor
151c476030
Fixing bug on development version of R
2018-12-20 12:38:17 -08:00
Sean J. Taylor
211f30039a
Updated changelog and date for R package
2018-12-18 23:07:58 -08:00
Sean J. Taylor
457ed1b34b
Regenerated documentation
2018-12-18 22:57:39 -08:00
Sean J. Taylor
8f04d48e00
Update documentation to suggest devtools
2018-12-18 22:43:12 -08:00
Sean J. Taylor
637cd74d94
Deleting PEP 518 project file
2018-12-18 22:09:51 -08:00
Sean J. Taylor
fbd3050a61
Update date in DESCRIPTION
2018-12-05 08:38:26 -08:00
Sean J. Taylor
a5da086ba0
Clean non-ASCII characters out of generated_holidays
2018-12-04 14:49:44 -08:00
Ben Letham
c9f1ccaa63
Version bump; test fixes; R build
2018-12-03 22:21:37 -08:00
Ben Letham
635ae5a1a6
Have fixed ordering for components plots
2018-12-03 20:14:24 -08:00
Ben Letham
52bbb08dee
Add note to documentation about acceptable units for diagnostics
2018-12-03 19:20:21 -08:00
Ben Letham
1d398c679d
Allow overriding any of the arguments to stan functions
2018-12-03 19:05:47 -08:00
Louis Guitton
545045d615
fixed signature of plot_forecast_component in docs ( #762 )
...
* fixed signature of plot_forecast_component
fbprophet.plot.plot_forecast_component
* modified source notebook and ran make docs
2018-12-03 17:05:21 -08:00
Thomas J. Leeper
5f6612148a
add Github URLs to DESCRIPTION ( #761 )
2018-12-03 17:01:01 -08:00
Ben Letham
390af32290
Typo fix in documentation
2018-12-03 16:58:25 -08:00
Baran Buluttekin
0f5f05d53c
Fix url for docstring in Turkey class ( #751 )
...
Docstring in Turkey class changed with corresponding url.
2018-12-03 16:54:39 -08:00
Ben Letham
f44285038c
Allow setting other handlers in the logging
2018-12-03 16:29:07 -08:00
Ben Letham
b76ace9570
Test type casting of extra regressors
2018-12-03 15:43:13 -08:00
Ben Letham
13d96cff8f
Fix type casting for extra regressors, and a shape issue
2018-12-03 15:22:19 -08:00
Ben Letham
91917df8f0
Handle parameter shaping with MCMC and one changepoint ( #608 )
2018-12-03 14:25:28 -08:00
Ben Letham
fe677f290b
Set rlang requirement to avoid bug in #592
2018-12-03 13:54:08 -08:00
Ben Letham
e3ad97b8b3
Documentation fixes
2018-12-03 13:25:26 -08:00
Ben Letham
536fe931c6
Add documentation for country holidays
2018-12-03 11:54:55 -08:00
Ben Letham
287fb2f6de
Move built-in country holidays to a function (R)
2018-11-30 23:12:19 -08:00
Ben Letham
92f955d25a
Move built-in country holidays to a method
2018-11-30 17:20:22 -08:00
Jennifer (Jenny) Bryan
ebf7b3da0a
Apply colnames *before* coercing to a tbl_df ( #739 )
...
`dplyr::as_data_frame()` is really `tibble::as_tibble()`. An upcoming
release of tibble will be stricter about column names and, by default,
you can't have duplicate column names. This change allows prophet to
work with current CRAN tibble (v1.4.2) and the coming release.
cc @krlmlr
2018-11-21 09:34:17 -08:00
Sean J. Taylor
40afef26b4
Generate documentation sub-menus
2018-11-13 10:17:59 -08:00
Ben Letham
9928dc39ae
Fix missing kwarg
2018-11-02 17:27:45 -07:00
jope35
d432ff4a9e
add symmetric mean absolute percentage error ( #721 )
2018-11-02 13:08:40 -07:00
Ben Letham
65236ec89e
Typo fix
2018-11-02 13:05:33 -07:00
Sumanyu Gupta
6693d7b218
Fixed spelling of Peyton Manning's first name. ( #718 )
2018-11-02 13:04:11 -07:00
MT
ff65d1431f
Fix duplicate kwarg algorithm when newton fallback is selected ( #708 )
...
* fix issue #700 : duplicate kwarg algorithm
* fix spacing
* provide default to dict pop
2018-10-23 12:02:43 -07:00
S-Katagiri
e63f8cdfbd
change extra_regressors to OrderedDict ( #688 )
2018-10-18 18:07:42 -07:00