-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
DEPR: Deprecate the convert_dtype param in Series.Apply #52257
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
mroeschke
merged 6 commits into
pandas-dev:main
from
topper-123:deprecate_Series.apply_convert_dtype
Mar 30, 2023
Merged
Changes from 4 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
f6a4af6
DEPR: Deprecate param convert_dtype in Series.Apply
topper-123 9806cab
fix StataReader
topper-123 d9b1fdc
fix issue
topper-123 48dae6c
Merge branch 'master' into deprecate_Series.apply_convert_dtype
topper-123 ea797a2
Update pandas/core/series.py
topper-123 f90bf50
explain more in warning
topper-123 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4387,7 +4387,7 @@ def transform( | |
def apply( | ||
self, | ||
func: AggFuncType, | ||
convert_dtype: bool = True, | ||
convert_dtype: bool | lib.NoDefault = lib.no_default, | ||
args: tuple[Any, ...] = (), | ||
**kwargs, | ||
) -> DataFrame | Series: | ||
|
@@ -4405,6 +4405,10 @@ def apply( | |
Try to find better dtype for elementwise function results. If | ||
False, leave as dtype=object. Note that the dtype is always | ||
preserved for some extension array dtypes, such as Categorical. | ||
|
||
.. deprecated:: 2.1.0 | ||
The convert_dtype has been deprecated. Do ``ser.astype(object).apply()`` | ||
instead if you want this functionality. | ||
args : tuple | ||
Positional arguments passed to func after the series value. | ||
**kwargs | ||
|
@@ -4494,6 +4498,15 @@ def apply( | |
Helsinki 2.484907 | ||
dtype: float64 | ||
""" | ||
if convert_dtype is lib.no_default: | ||
convert_dtype = True | ||
else: | ||
warnings.warn( | ||
"the convert_dtype parameter is deprecated and will be removed in a " | ||
"future version.", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Would be good to mention the alternative here if convert_dtype=False was specified |
||
FutureWarning, | ||
stacklevel=find_stack_level(), | ||
) | ||
return SeriesApply(self, func, convert_dtype, args, kwargs).apply() | ||
|
||
def _reduce( | ||
|
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.
Uh oh!
There was an error while loading. Please reload this page.