python 情节片段
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 情节片段相关的知识,希望对你有一定的参考价值。
# 高度なグラフや棒グラフ作るとき
import plotly
# JupyterLabでplotlyによるグラフをオフライン表示するための初期設定
plotly.offline.init_notebook_mode()
plotly_data = [
plotly.graph_objs.Bar(
x=hobby_years_coding_count.index,
y=hobby_years_coding_count['Yes'] / sum(hobby_years_coding_count['Yes']),
name='Yes'),
plotly.graph_objs.Bar(
x=hobby_years_coding_count.index,
y=hobby_years_coding_count['No'] / sum(hobby_years_coding_count['No']),
name='No'),
]
layout = plotly.graph_objs.Layout(width=700, height=400)
fig = plotly.graph_objs.Figure(data=plotly_data, layout=layout)
plotly.offline.iplot(fig) # jupyter上で表示する
# plotly.offline.plot(fig) # htmlファイルでグラフをエクスポート
以上是关于python 情节片段的主要内容,如果未能解决你的问题,请参考以下文章
Python 一直在覆盖以前的情节,但没有用所需的情节保存它
python情节上没有弹跳的球
python: dash 实况情节图例
python 情节分散的例子
python 小提琴情节
python 熊猫情节