-
Notifications
You must be signed in to change notification settings - Fork 170
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
polars xlsx_cells
#1358
Merged
Merged
polars xlsx_cells
#1358
Changes from all commits
Commits
Show all changes
61 commits
Select commit
Hold shift + click to select a range
862c7dd
add make_clean_names function that can be applied to polars
01531cc
add examples for make_clean_names
0fb440e
changelog
5e944b2
limit import location for polars
501d9c6
limit import location for polars
9506832
fix polars in environment-dev.yml
1ae8edd
install polars in doctest
3b1829b
limit polars imports - user should have polars already installed
52fd80c
use subprocess.run
2dce78b
add subprocess.devnull to docstrings
37b3feb
add subprocess.devnull to docstrings
0953f2d
add subprocess.devnull to docstrings
d7c71b6
add subprocess.devnull to docstrings
40b8502
add os.devnull
4f11d09
add polars as requirement for docs
54b179c
add polars to tests requirements
25b39b9
delete irrelevant folder
a09f34b
changelog
1b375f8
create submodule for polars
799532f
fix doctests
dbce4b9
fix tests; add polars to documentation
1c642e6
fix tests; add polars to documentation
407d21b
import janitor.polars
aedfc65
control docs output for polars submodule
db9b486
exclude functions in docs rendering
6a91e67
exclude functions in docs rendering
7a88078
show_submodules=true
6d7885e
fix docstring rendering for polars
944fa02
Expression -> expression
b9aefaa
Merge dev into samukweku/polars_clean_names
ericmjl e9c370a
rename functions.py
ee66d2a
pivot_longer implemented for polars
959b082
changelog
3177503
keep changes related only to pivot_longer
ee899b2
pd -> pl
8ea9b71
pd -> pl
d12ae1a
df.pivot_longer -> df.janitor.pivot_longer
652f3e3
df.pivot_longer -> df.janitor.pivot_longer
9b9c1a9
pd -> pl
69c273f
pd -> pl
b3391e8
add >>> df
4ffaac5
add >>> df
1de57bb
keep changes related only to polars pivot_longer
e495790
add polars support to read_commandline
a5c331a
remove irrelevant files
4d9c35f
minor edit to docs
3b781c1
xlsx_table now supports polars
5364f8d
xlsx_cells now supports polars
bceefe8
changelog
f6795f8
docs fix
0264109
docs fix
d580316
docs fix
de59dfa
docs fix
9de6065
docs fix
9c1b725
Merge dev into samukweku/polars_xlsx_cells
ericmjl 9f50e3b
Merge dev into samukweku/polars_xlsx_cells
ericmjl 0644b78
Merge dev into samukweku/polars_xlsx_cells
ericmjl 4e00d71
Merge dev into samukweku/polars_xlsx_cells
ericmjl 02ede24
Merge dev into samukweku/polars_xlsx_cells
ericmjl 2f0302e
Merge dev into samukweku/polars_xlsx_cells
ericmjl 5ad131f
Merge branch 'dev' into samukweku/polars_xlsx_cells
ericmjl 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 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 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.
@samukweku what are your thoughts on assigning
base_engine
whenever we dispatch differently between polars and pandas? Does it make sense for us to use one pattern instead?