-
-
Notifications
You must be signed in to change notification settings - Fork 144
ENH: Improve typing of some general functions #355
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 all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
5a03064
ENH: Improve typing of some general functions
bashtage d3a07a0
Further typing
936edb0
ENH: Add overload to factorize
bashtage f6e38ed
BUG: Correct npt import
bashtage e68812f
ENH: Improve unique
bashtage 65538fe
ENH: Imrpveo typing in merge functions, cut and qcut
bashtage 9cbb9f5
Merge remote-tracking branch 'upstream/main' into gen-funcs-v2
bashtage cee8aad
Merge branch 'gen-funcs-v2' of github.com:bashtage/pandas-stubs into …
bashtage 220c561
CLN: Remove unused imports
bashtage 9e61288
CLN: Catch warning
bashtage 5e0df69
TST: Add tests for cut and fixes
6c475f8
TST: Add final test for cut
7ca155a
TST: Add tests and fixes for qcut
a0fb2c3
TYP: Add typ ignore for overlapping defs
bashtage 737c4d4
Merge remote-tracking branch 'upstream/main' into gen-funcs-v2
bashtage 64f0c1a
TST: Add tests for merge
bashtage bc1b3c8
TST: Add tests for merge_ordered and improve typing
bashtage 0cf5ec3
TST: Add tests for merge_asof and improve typing accuracy
bashtage be824c6
CLN: Remove TODO since pandas PR opened
bashtage 093206c
Merge remote-tracking branch 'upstream/main' into gen-funcs-v2
bashtage 1c12204
TYP: Final refinements
bashtage a5e43fd
TST: Fix intentionally failing test
bashtage 620e799
MAINT: Refactor MergeHow and add JoinHow
7876a5e
TYP: Correct use of MergeHow and add test
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
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 |
---|---|---|
@@ -1,16 +1,27 @@ | ||
from typing import Hashable | ||
|
||
import numpy as np | ||
from pandas.core.frame import DataFrame | ||
|
||
from pandas._typing import HashableT | ||
|
||
def melt( | ||
frame: DataFrame, | ||
id_vars: tuple | list | np.ndarray | None = ..., | ||
value_vars: tuple | list | np.ndarray | None = ..., | ||
var_name: str | None = ..., | ||
value_name: str = ..., | ||
value_name: Hashable = ..., | ||
col_level: int | str | None = ..., | ||
ignore_index: bool = ..., | ||
) -> DataFrame: ... | ||
def lreshape(data: DataFrame, groups, dropna: bool = ..., label=...) -> DataFrame: ... | ||
def lreshape( | ||
data: DataFrame, groups: dict[HashableT, list[HashableT]], dropna: bool = ... | ||
) -> DataFrame: ... | ||
def wide_to_long( | ||
df: DataFrame, stubnames, i, j, sep: str = ..., suffix: str = ... | ||
df: DataFrame, | ||
stubnames: str | list[str], | ||
i: str | list[str], | ||
j: str, | ||
sep: str = ..., | ||
suffix: str = ..., | ||
) -> DataFrame: ... |
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.
Uh oh!
There was an error while loading. Please reload this page.