1

On using the Python library 'fbprophet' it throw the error, TypeError: 'module' object is not callable

import fbprophet as Prophet
m = Prophet(weekly_seasonality= True) 

on executing it throws this error,

Traceback (most recent call last):

  File "<ipython-input-7-53e30b441246>", line 1, in <module>
    m = Prophet(weekly_seasonality= True)

TypeError: 'module' object is not callable

1
  • Any help on how to resolve this issue? Commented Aug 3, 2019 at 15:35

1 Answer 1

3

solved using

m = Prophet.Prophet(weekly_seasonality= True)
Sign up to request clarification or add additional context in comments.

1 Comment

Amazing that the Quick Start guide leads you right into that issue from the very start.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.