英文:
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 有许多重要的更新。
- 导入 pygwalker 和您的数据。
import pandas as pd
import pygwalker as pyg
df = pd.read_csv("xxx")
walker = pyg.walk(df, spec="config.json", use_preview=True)
-
探索数据并制作图表,点击 "save" 按钮保存您的图表,图表配置将保存在 JSON 文件 (spec) 中。
-
使用
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(>=0.2.0)
version 0.2.0 has many important updates.
-
import pygwalker and your datas.
import pandas as pd import pygwalker as pyg df = pd.read_csv("xxx") walker = pyg.walk(df, spec="config.json", use_preview=True)
-
explore datas and make charts, click "save" button to save your charts, chart config would save in the json file(spec).
-
use
display_chart
function to display your saved charts in any cells.walker.display_chart("Your Chart Name")
more details about pygwalker(0.2.0): here
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论