Questions tagged [facebook-prophet]

Prophet is a forecasting library, open sourced by Facebook, with APIs available in both R and Python. Use this tag instead of the [prophet] tag for questions related to the Facebook software.

Prophet is a forecasting library, open sourced by Facebook, with APIs available in both R and Python.

References

490 questions
7
votes
4 answers

Microsoft Visual C++ 14.0 is required - error - pip install fbprophet

I am trying pip install fbprophet. I am getting that error: "Microsoft Visual C++ 14.0 is required" It has been discussed many times (e.g. Microsoft Visual C++ 14.0 is required (Unable to find vcvarsall.bat) ) , but seems no answer helps me. My…
Alexander Chervov
  • 616
  • 3
  • 7
  • 23
7
votes
2 answers

Python fbprophet - export values from plot_components() for yearly

Any ideas on how to export the yearly seasonal trend using fbprophet library? The plot_components() function plots the trend, yearly, and weekly. I want to obtain the values for yearly only.
BlackHat
  • 736
  • 1
  • 10
  • 24
6
votes
1 answer

What is the difference between prophet package and fbprophet in Python?

I googled how to install the fbprophet package, but the top result is how to install prophet. What is the difference between the two packages? Are they the same?
Michael Chao
  • 570
  • 5
  • 14
6
votes
1 answer

pip install fbprophet on Windows without conda

I would like to install fbprophet on windows 10 without having to install Anaconda. I have python 3.7. I have tried all suggestions from Installing fbprophet Python on Windows 10 without success. So far I have installed pystan, as it is required…
Sura-da
  • 301
  • 3
  • 12
6
votes
5 answers

No module named 'fbprophet'?

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…
6
votes
2 answers

Save plots generated from fbprophet in Python

I'm trying to export the plots generated by facebook prophet methods such as model.plot_components() and model.plot() . However, I have dug the entire Internet and all instructions use the matplotlib method of building the plot from the ground up…
6
votes
0 answers

Using fb-prophet Package to Predict By Group with Additional Regressors in R

prophet users of the world, hope all is well. I'm having some difficulties with a particular use case that I'll try to illustrate using some sample data and code below. First let's generate some sample data so that it will be a little bit easier to…
jane_thompson
  • 61
  • 1
  • 5
6
votes
1 answer

pip install options "no-cache-dir" and "target" don't work well together?

I have found that running pip install fbprophet --target=/tmp/foo --no-cache-dir gives the following error: ImportError: No module named pystan However if I remove either --target or --no-cache-dir options then it installs successfully. i.e. both…
N3da
  • 4,323
  • 5
  • 20
  • 22
5
votes
1 answer

How to silence fbprophet fit outputs/logs

I am using fbprophet version 0.7.1 with pystan 2.19.1.1 on a quarterly time-series data, working on Jupyter Notebook. Using extra regressors, here's my code. model = Prophet(daily_seasonality = False, weekly_seasonality = False) for…
meliksahturker
  • 922
  • 2
  • 11
  • 20
5
votes
1 answer

How to choose initial, period, horizon and cutoffs with Facebook Prophet?

I have around 23300 hourly datapoints in my dataset and I try to forecast using Facebook Prophet. To fine-tune the hyperparameters one can use cross validation: from fbprophet.diagnostics import cross_validation The whole procedure is shown…
Tobitor
  • 1,388
  • 1
  • 23
  • 58
5
votes
2 answers

Change the features of Prophet plot

While using model.plot(forecast) the figure that appears has small labels and x/y values. Is there any way to customize customize prophet's figures ?
Duc Vu
  • 141
  • 1
  • 6
5
votes
0 answers

Pandas: Remove timezone from datetime64[ns, UTC]

print(df.head) results in ds y 0 2019-03-01 10:57:32.381378+00:00 18760 1 2019-03-01 10:58:30.933070+00:00 28140 2 2019-03-01 10:58:45.425421+00:00 35520 3 2019-03-01 10:59:11.588687+00:00 …
Joey Coder
  • 3,199
  • 8
  • 28
  • 60
5
votes
8 answers

How to install fbprophet for Python 3.7 (anaconda distribution)

I attempted to use fbprophet for time series analysis using Python. I ran from fbprophet import Prophet but got No module named 'fbprophet' I think fbprophet is not part of packages that comes with anaconda distribution I went ahead to install…
economia
  • 51
  • 1
  • 1
  • 2
5
votes
1 answer

Prophet Forecasting using R for multiple items

I am very new to time series forecasting using Prophet in R. I am able to predict values for one single product using Prophet. Is there any way if i can use loop to generate forecast using Prophet for multiple products? The below code works…
hari babu
  • 97
  • 1
  • 7
4
votes
0 answers

Facebook Prophet error: cmdstanpy - ERROR - Chain [1] error: terminated by signal 11 Unknown error -11

I am trying to train Facebook's prophet on timeseries data. Data I used, one column named ds and another y During fitting however I get this error first : first error screenshot followed by second error screenshot Does anyone know why this is the…
1
2
3
32 33