enter image description hereI'm using Pycharm on W10, I'm following a guide on Jupyter and so I get some difficulties like that. I can't see the graph
import pandas as pd
import numpy as np
import plotly.offline as py
from plotly.offline import download_plotlyjs, init_notebook_mode, plot, iplot
import cufflinks as cf
init_notebook_mode(connected=True)
cf.go_offline()
df = pd.DataFrame(np.random.randn(100, 4), columns='A B C D'.split())
df.iplot(kind='scatter',x='A',y='B',mode='markers',size=10, filename="scatter.html")
I don't get any error, but I can't see my graph, any suggestion?