当前位置: 首页 > 图灵资讯 > 行业资讯> python中pyg2plot如何使用?

python中pyg2plot如何使用?

发布时间:2024-08-27 14:00:47

1、渲染完整 HTML

这种情况可用于:

服务端 html 直出的场景

生成可交互可视化共享

Excel 嵌入工具的场景

frompyg2plotimportPlot

line=Plot("Line")

line.set_options({
"data":[
{"year":"1991","value":3},
{"year":"1992","value":4},
{"year":"1993","value":3.5},
{"year":"1994","value":5},
{"year":"1995","value":4.9},
{"year":"1996","value":6},
{"year":"1997","value":7},
{"year":"1998","value":9},
{"year":"1999","value":13},
],
"xField":"year",
"yField":"value",
})

#1.renderhtmlfilenamedplot.html
line.render("plot.html")

#2.renderhtmlstring
line.render_html()

2、在 Jupyter notebook 中预览

frompyg2plotimportPlot

line=Plot("Line")

line.set_options({
"height":400,#setadefaultheightinjupyterpreview
"data":[
{"year":"1991","value":3},
{"year":"1992","value":4},
{"year":"1993","value":3.5},
{"year":"1994","value":5},
{"year":"1995","value":4.9},
{"year":"1996","value":6},
{"year":"1997","value":7},
{"year":"1998","value":9},
{"year":"1999","value":13},
],
"xField":"year",
"yField":"value",
})

line.render_notebook()

我们可以在做数据分析教程的过程中使用我们的数据 PyG2Plot 可视化和预览,非常方便!

以上是pyg2plot在python中的使用,希希望能对大家有所帮助。更多Python学习指导:python基础教程

相关文章

如何让vim支持python3

如何让vim支持python3

2025-09-12
python2.7和3.6区别有哪些

python2.7和3.6区别有哪些

2025-09-12
python3有serial库吗

python3有serial库吗

2025-09-12
python中w、r表示什么意思

python中w、r表示什么意思

2025-09-12
python中如何把list变成字符串

python中如何把list变成字符串

2025-09-12
python命名空间是什么

python命名空间是什么

2025-09-12