-
Notifications
You must be signed in to change notification settings - Fork 62
Introduce Polars
for dumping and loading data
#457
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
Open
hirosassa
wants to merge
17
commits into
m3dev:master
Choose a base branch
from
hirosassa:introduce-polars
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+462
−152
Open
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
45623d1
temp implementation
hirosassa c62b9b0
add DATAFRAME_FRAMEWORK variable to branch pandas and polars
hirosassa 4548266
Merge branch 'master' into introduce-polars
hirosassa 665489a
format
hirosassa 4ab9c35
fix tests
hirosassa c55c3ab
fix workflow
hirosassa 94e9fc8
fix tests
hirosassa 1a344e1
fix dependencies
hirosassa d70f285
docs
hirosassa 8a9063f
use env var to switch frameworks
hirosassa 5395556
Merge branch 'master' into introduce-polars
hirosassa 33fb5ef
use env var to switch frameworks
hirosassa 2a88189
fix typo
hirosassa 79839e1
raise exception if the users doesn't install polars when user set the…
hirosassa b200fd9
add fixture for reloading the modules
hirosassa 14ce3ab
Merge branch 'master' into introduce-polars
hirosassa 17af046
Merge branch 'master' into introduce-polars
hirosassa File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
For Pandas | ||
========== | ||
|
||
Gokart also has features for Polars. It is enabled by installing extra using following command: | ||
|
||
.. code:: sh | ||
|
||
pip install gokart[polars] | ||
|
||
|
||
You need to set the environment variable ``GOKART_DATAFRAME_FRAMEWORK`` as ``polars`` and you can use Polars for the most of the file format used in :func:`~gokart.task.TaskOnKart.load` and :func:`~gokart.task.TaskOnKart.dump` feature. | ||
If you don't set ``GOKART_DATAFRAME_FRAMEWORK`` or set it as ``pandas``, you can use pandas for it. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add the test run with
polars
extra