Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feat] Support for Polars #41

Closed
alexk101 opened this issue Feb 25, 2023 · 5 comments · Fixed by #57
Closed

[Feat] Support for Polars #41

alexk101 opened this issue Feb 25, 2023 · 5 comments · Fixed by #57
Labels
enhancement New feature or request

Comments

@alexk101
Copy link

Thank you for this wonderful data analysis project! It is going to be quite helpful for a lot of non-technical people in our lab. I do have a suggestion for a feature, which may or may not be feasible, but integrating Polars support for this tool would be a wonderful addition. Its programming interface is quite similar to that of Pandas, but has quite a few differences in order to optimize the library for speed and performance. It makes working with a lot of our very large datasets in python much quicker.

@Asm-Def Asm-Def added the enhancement New feature or request label Feb 26, 2023
@jordan-carson
Copy link

this can be done by converting polars to pandas, but I agree polars support would be best.

import polars as pl
import pygwalker as pyg

data = pl.read_csv(r"../file.csv")
data = data.to_pandas()

pyg.walk(data)

@Asm-Def
Copy link
Collaborator

Asm-Def commented Mar 2, 2023

@alexk101 @jordan-carson
It's now supported in pr #57 from @0warning0error.
Please try pip install pygwalker>=0.1.4.7a0 --pre to experience it.

@alexk101
Copy link
Author

alexk101 commented Mar 2, 2023

@Asm-Def
Awesome! Thanks for the fast turn around time!

@0warning0error
Copy link
Contributor

@Asm-Def I deleted graphic-walker.iife.js by mistake. If you want to experience it, remember to check it.

@Asm-Def
Copy link
Collaborator

Asm-Def commented Mar 3, 2023

@Asm-Def I deleted graphic-walker.iife.js by mistake. If you want to experience it, remember to check it.

no need to worry about it, the releasing script builds the js file every time.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

4 participants