-
Notifications
You must be signed in to change notification settings - Fork 4.6k
Open
Description
I do not understand how to make plotly work with prophet
import logging
logging.getLogger("prophet.plot").disabled = True
import prophet
import matplotlib.pyplot as plt
import pandas as pd
data = pd.read_csv("example_wp_log_peyton_manning.csv")
data["ds"] = pd.to_datetime(data["ds"])
fig = plt.figure(facecolor='w', figsize=(10, 6))
plt.plot(data.ds, data.y)
I do not get the warning anymore, but plotly does not work
Metadata
Metadata
Assignees
Labels
No labels