You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
author='Sean J. Taylor <sjt@fb.com>, Ben Letham <bletham@fb.com>',
author_email='sjt@fb.com',
license='BSD',
packages=['fbprophet', 'fbprophet.tests'],
setup_requires=[
'Cython>=0.22',
'pystan>=2.8',
],
install_requires=[
'matplotlib',
'numpy',
'pandas',
'pystan>=2.8',
],
zip_safe=False,
include_package_data=True,
cmdclass={
'build_py': BuildPyCommand,
'test': TestCommand,
},
test_suite='fbprophet.tests.test_prophet',
long_description="""
Implements a procedure for forecasting time series data based on an additive model where non-linear trends are fit with yearly and weekly seasonality, plus holidays. It works best with daily periodicity data with at least one year of historical data. Prophet is robust to missing data, shifts in the trend, and large outliers.