We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Adding new functionality to pandas
Changing existing functionality in pandas
Removing existing functionality in pandas
Maybe the merge method should add a case parameter to identify case insensitive.
def merge(self, other, on, case=False, ...): self.on_ = self.on.str.lower() other.on_ = other.on.str.lower() ...
Add a param case to the method merge of dataframe like:a.merge(b, case=False),to identify case insensitive.
case
a.merge(b, case=False)
No response
The text was updated successfully, but these errors were encountered:
Thanks for the suggestion but I would be -1 on this enhancement. on can be any type (not just strings) and can be easily done before the merge
on
Sorry, something went wrong.
agree with @mroeschke
there is no performance benefit of doing this within merge
No branches or pull requests
Feature Type
Adding new functionality to pandas
Changing existing functionality in pandas
Removing existing functionality in pandas
Problem Description
Maybe the merge method should add a case parameter to identify case insensitive.
Feature Description
Alternative Solutions
Add a param
case
to the method merge of dataframe like:a.merge(b, case=False)
,to identify case insensitive.Additional Context
No response
The text was updated successfully, but these errors were encountered: