facebook / prophet

Tool for producing high quality forecasts for time series data that has multiple seasonality with linear or non-linear growth.
https://facebook.github.io/prophet
MIT License
18.38k stars 4.53k forks source link

No of changepoints in the plot and prophet object "m" don't match #770

Closed sid0972 closed 5 years ago

sid0972 commented 5 years ago

When i plot the changepoints i get different results than what i see in m$changepoints (in my case there is only one changepoint that is added to the plot, but m$changepoint gives 25 changepoints).

Why is there a discrepency between the two? How can i be sure which result is the correct one?

vhpietil commented 5 years ago

There are 25 changepoints but most of those have very small value. In you case I guess that only one has significant value.

sid0972 commented 5 years ago

Ok so the most significant ones are plotted in the graph. Thank you.