How can I use pygwalker in marimo? #1756
Answered
by
mscolnick
Dumbliidore
asked this question in
Q&A
-
There is a warning when I use pygwalker in marimo this is the code import pygwalker as pyg
import pandas as pd
df= pd.read_csv("./movie.csv")
walker = pyg.walk(df, kernel_computation=True) and then I configure the max output size with the environment variable MARIMO_OUTPUT_MAX_BYTES. import os
os.environ['MARIMO_OUTPUT_MAX_BYTES'] = '1000_000_000' it still doesn't work. |
Beta Was this translation helpful? Give feedback.
Answered by
mscolnick
Jul 11, 2024
Replies: 1 comment 1 reply
-
You'll need to do |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Dumbliidore
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You'll need to do
export MARIMO_OUTPUT_MAX_BYTES=1000000000
in your terminal since it uses the output at startup time