如何通过pygwalker保留我创建的图表?

huangapple go评论64阅读模式
英文:

How to persist the charts I made through pygwalker?

问题

我正在使用Pygwalker创建一些用于分析的图表,但我无法保存我创建的图表。

每次我重新打开笔记本或刷新笔记本页面时,我之前创建的图表都会消失。

我想要通过共享的ipynb文件与其他人分享我使用Pygwalker创建的图表,但他们无法在我的共享文件中看到这些图表。

我想知道如何保留通过pygwalker创建的图表。

Python - 3.11.3

我已经保存了我的笔记本,但我发现当我刷新它时,我的图表被清除了。

英文:

I am using Pygwalker to create some charts for my analysis, but I am unable to save the charts I have created.

Every time I reopen the notebook or refresh the notebook page, the charts I made before disappear.

I want to share the charts I created using Pygwalker with others, but they cannot see the charts through my shared ipynb file.

I want to know how to persist the charts I made through pygwalker.

Python - 3.11.3

I've already saved my notebook, but I found that my charts got cleared when I refresh it.

答案1

得分: 0

pygwalker(<0.2.0)

点击 "export_code",并复制模态框中显示的代码。

pygwalker(>=0.2.0)

版本 0.2.0 有许多重要的更新。

  1. 导入 pygwalker 和您的数据。
import pandas as pd
import pygwalker as pyg

df = pd.read_csv("xxx")
walker = pyg.walk(df, spec="config.json", use_preview=True)
  1. 探索数据并制作图表,点击 "save" 按钮保存您的图表,图表配置将保存在 JSON 文件 (spec) 中。

  2. 使用 display_chart 函数在任何单元格中显示已保存的图表。

walker.display_chart("Your Chart Name")

有关 pygwalker(0.2.0) 的更多详细信息:这里

英文:

pygwalker(<0.2.0)

click "export_code", and copy code showed in modal.

如何通过pygwalker保留我创建的图表?
如何通过pygwalker保留我创建的图表?

pygwalker(>=0.2.0)

version 0.2.0 has many important updates.

  1. import pygwalker and your datas.

    import pandas as pd
    import pygwalker as pyg
    
    
    df = pd.read_csv(&quot;xxx&quot;)
    walker = pyg.walk(df, spec=&quot;config.json&quot;, use_preview=True)
    
  2. explore datas and make charts, click "save" button to save your charts, chart config would save in the json file(spec).

如何通过pygwalker保留我创建的图表?

  1. use display_chart function to display your saved charts in any cells.

    walker.display_chart(&quot;Your Chart Name&quot;)
    

more details about pygwalker(0.2.0): here

huangapple
  • 本文由 发表于 2023年7月24日 14:49:44
  • 转载请务必保留本文链接:https://go.coder-hub.com/76752020.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定