generaltrace0 = go.Scatter(x=df.index, y=df["col1"], name="Global Sales") # одна линия
trace0 = go.Bar(x=df.index, y=df["Global_Sales"], name="Global Sales") # бары одного цвета
trace0 = go.Pie(labels=labels, values=values, hole=.2, pull=[0, 0, 0.2, 0]) # круговой график
trace0 = go.Sunburst(labels=labels, parents=parents, values=values) # слоистый круг
fig = go.Figure(data= [trace0, trace1], layout= {"title": "Statistics for video games"})
# optional
fig.update_traces(textposition='inside')
fig.update_layout(uniformtext_minsize=12, uniformtext_mode='hide')
fig.show()
# optional
plotly.offline.plot(fig, filename="stats.html", show_link=False, auto_open=False);