I am not able to plot anything in Prophet model when I use the commands such as:
plot1 = m.plot(forecast)
plt2 = m.plot_components(forecast)
I am getting error
NoneType object is not subscriptable
I am not able to plot anything in Prophet model when I use the commands such as:
plot1 = m.plot(forecast)
plt2 = m.plot_components(forecast)
I am getting error
NoneType object is not subscriptable
Copyright © 2021 Jogjafile Inc.

You did not train your model, here is how we can reproduce the error :
To correct that you need to train the model using
m.fit(your_data).Please check the Documentation it contain detailed steps.