facebook-prophet

'Prophet' object has no attribute 'stan_backend' and there is no answer for me

'Prophet' object has no attribute 'stan_backend' and there is no answer for me Question: I want to use Facebook’s prophet,however when I try to create a model: model = prt.Prophet(stan_backend=’CMDSTANPY’) It occurs mistake like this: Traceback (most recent call last): File "C:UsersUserNameIdeaProjectsstation-simulatestcd-predict.py", line 24, in <module> model = prt.Prophet(stan_backend=’CMDSTANPY’) File "C:ProgramDataAnaconda3envsmy1stcondalibsite-packagesprophetforecaster.py", line 142, in __init__ …

Total answers: 1

Facebook Prophet API documenation

Facebook Prophet API documenation Question: I’m looking for a API Python documentation for Facebook Prophet Here there are good examples https://facebook.github.io/prophet/docs future = m.make_future_dataframe(periods=365) or future = m.make_future_dataframe(periods=300, freq=’H’) But it doesn’t explain all possible parameters in make_future_dataframe, or the valid values for freq. Any idea where to find the API documentation? Asked By: Luis …

Total answers: 2

No module named 'fbprophet'?

No module named 'fbprophet'? Question: I have tried to install Facebook Prophet in Anaconda on Ubuntu following the instructions at: https://facebook.github.io/prophet/docs/installation.html#installation-in-python. In Anaconda Navigator, when I click on the environment, fbprophet is listed along with the other installed packages. The problem is that when I try to use fbprophet in Jupyter: from fbprophet import Prophet …

Total answers: 5

Installing fbprophet Python on Windows 10

Installing fbprophet Python on Windows 10 Question: My build keeps failing on windows 10 for installing fbprophet in anaconda with the following message: ERROR conda.core.link:_execute(502): An error occurred while installing package ‘conda-forge::automat-0.7.0-py_1’. CondaError: Cannot link a source that does not exist. C:Usersbharat.c.ruparelAppDataLocalContinuumanaconda3Scriptsconda.exe the command that is given is: conda install -c conda-forge fbprophet Has anyone …

Total answers: 9