-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
more flexible type of input arguments for px functions #1768
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
Merged
Merged
Changes from 1 commit
Commits
Show all changes
69 commits
Select commit
Hold shift + click to select a range
152f87f
more flexible type of input arguments for px functions
emmanuelle fe4eda3
wrong col name case
emmanuelle 86937ea
corner case of functions grabbing all cols
emmanuelle 1ad0f5c
better behavior of index, more tests
emmanuelle 7d0e985
comment code
emmanuelle 915a5a1
black
emmanuelle 5d5ab81
debugging
emmanuelle ea0fa6a
relax column ordering in tests
emmanuelle e5f6953
tests
emmanuelle 29d7e18
array arguments
emmanuelle 4a028a2
move column checks
emmanuelle ab35b42
case of dimensions
emmanuelle e4b8835
clean code + black
emmanuelle 3b0d21a
deduplicated labels logics
emmanuelle 2a6ff71
better handling of dimensions
emmanuelle 72b5d1c
corner case when column was modified
emmanuelle 19431dd
modified docs
emmanuelle 7297a7f
black
emmanuelle dadd645
case when no df provided and str arguments
emmanuelle 2cb9dba
argument=None
emmanuelle b09dc58
better handling of problematic case
emmanuelle 91e6cda
simplify code
emmanuelle 33db488
symbol and line_dash
emmanuelle e58c82e
stricter check on column
emmanuelle 9d65a07
more readable error message
emmanuelle 64010de
check length
emmanuelle 20bd812
error when multiindex
emmanuelle a7241a5
accept int as column names
emmanuelle dc1fc0a
array and dict as dataframe
emmanuelle 61678c2
splom case
emmanuelle 71756a3
simplified index case
emmanuelle 40ba5b9
black
emmanuelle 749db6c
better error messages
emmanuelle cd8574a
better handling of Series (name is None)
emmanuelle 299fdde
handle case of name conflicts
emmanuelle 8753797
removed print statements
emmanuelle ed24d8b
black
emmanuelle 2da2b21
wip
emmanuelle 102b89f
name heuristic
emmanuelle 0a50f6a
Py2 fix
emmanuelle 58c9eba
more complex test
emmanuelle 0a92537
use sets instead of lists
emmanuelle 372bd8f
bug correction and new test
emmanuelle 3d0aff0
comments
emmanuelle 5a329ad
simpler way to use names
emmanuelle e0e0dd5
comments
emmanuelle 6bced73
docstring
emmanuelle bcc41a2
more tests
emmanuelle 382e768
integer column names
emmanuelle 82c6592
typo
emmanuelle 9caeee1
better error message
emmanuelle adc68d3
better test
emmanuelle 5dc0ab1
order of tests
emmanuelle f5d056c
doc modification
emmanuelle bedf74f
qa
emmanuelle 074342b
case of named index
emmanuelle ead8430
be more defensive with names
emmanuelle db10967
better error msg with index
emmanuelle ef29378
do not modify input arguments
emmanuelle 5e40653
corrected bug
emmanuelle 78564cc
name consistency
emmanuelle 2534ca9
name consistency
emmanuelle c88660f
qa
emmanuelle b5adbcf
if args[field] is a dict it should stay a dict
emmanuelle b375f91
addressed Jon's comments
emmanuelle c59a4d5
spaces in error messages
emmanuelle 1774ade
case of size column
emmanuelle 16d95af
qa
emmanuelle 5c95786
revert to is
emmanuelle 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
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.
Is it intentional to move from
is
to.equals()
here?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.
(also we should remove the comment above now ;)
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.
yes it was intentional, I think it's enough that the values are all equal. What do you think?
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.
ok I reverted to
is