Hello Team,
I am not able to plot the graph using .iplot on pycharm, please see the sample code below.
import plotly.offline as py
import plotly.graph_objs as go
py.init_notebook_mode(connected=True)
data = [go.Bar(
x=[âgiraffesâ, âorangutansâ, âmonkeysâ],
y=[20, 14, 23]
)]
py.iplot(data, filename="âSactter_2021â")
py.plot(data, filename=âbarplot.htmlâ)
With activation of py.plot, it creates D:\Result\scientificProjectbarplot.html in the working directory and the .html file is automatically opens up to show the interactive chart, but with py.iplot there is no chart. Why ?
Regards,
Rishikesh