Python|文森特的折线图
在本文中,我们将在 vincent 的帮助下创建折线图。哪个是Python中的库,可以将Python转换为 vega?它具有Python的数据能力和javascript的可视化能力。它专为快速绘制数据框和系列而构建。
要求:安装文森特
$pip install vincent
警告:需要需要 numpy 的 Pandas
示例 1:简单折线图
# import the vincent library=
import vincent
# To initialize vincent in the notebook
vincent.core.initialize_notebook()
# pass the parameters to the bar method
Line = vincent.Line([10, 20, 30, 20, 15, 30, 45])
# Display the line chart
Line.display()
输出 :
示例 2:带有轴标签的折线图
# import the vincent library
import vincent
# To initialize vincent in the notebook
vincent.core.initialize_notebook()
# pass the parameters to the bar method
Line = vincent.Line([10, 20, 30, 20, 15, 30, 45])
# give axis names
Line.axis_titles(x='X-axis', y='Y-axis')
# Display the line chart
Line.display()
输出 :
有关 vincent 折线图和 vincent 的更多信息,请访问此链接