Here is my code in Jupyter Notebook:
import pandas as pd
import cufflinks as cf
import numpy as np
from IPython.display import display, HTML
cf.set_config_file(sharing = 'public', offline = True)
df_pivot.iplot(kind = 'line')
the problem appeared at this line of code: df_pivot.iplot(kind = 'line'). It has the same error as this post: #5046
Could somebody tell me which versions of plotly and cufflinks fix the bug above? Thanks a lot!
Here is the versions that I used:
import cufflinks as cf
import plotly, pandas as pd, numpy as np
cf.version, plotly.version, pd.version, np.version
('0.17.3', '5.18.0', '2.3.3', '1.26.4')