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
after #6380, ability to pretty easily move ops over to the mix-in
date/time
is_beg_year
argmin/max
str
Index
(this turns out to be quite tricky, as sometimes construction depends on the existence of a tz attribute)
tz
freq,frestr,inferred_freq
is_monotonic
pd.infer_freq()
is_unique,lexsort_depth,nlevels
nunique()
unique()
value_counts()
factorize()
get_loc/find
__invert__
These are related in that they are generic.py functions as they have to compute something then set the axis with the result.
normalize
tz_convert/tz_localize
level
DatetimeIndex
PeriodIndex
NDFrame
core/generic
duplicated/drop_duplicates
has_duplicates
The text was updated successfully, but these errors were encountered:
these are mostly done / shared already. @jbrockmendel if anything looks interesting can open a specific issue.
Sorry, something went wrong.
No branches or pull requests
after #6380, ability to pretty easily move ops over to the mix-in
date/time
(added in API/CLN: add in common operations to Series/Index, refactored as a OpsMixin #6380)is_beg_year
), API: add is_beg_month/quarter/year, is_end_month/quarter/year accessors (#4565) #4823argmin/max
, (PR INT: followup to Index not a sub-class of ndarray #7904)str
forIndex
(not for sub-classes though), ENH: add StringMethods (e.g. .str) to Index #9068(this turns out to be quite tricky, as sometimes construction depends on the existence of a
tz
attribute)freq,frestr,inferred_freq
is_monotonic
ENH: Series has gained the properties .is_monotonic* #13336pd.infer_freq()
, related infer_freq broken in 0.13.1 #6407,API: pd.infer_freq interacts correctly with a Series #6408is_unique,lexsort_depth,nlevels
nunique()
,unique()
,value_counts()
, ENH: added nunique function to Index #6734factorize()
ENH/CLN: Add factorize to IndexOpsMixin #7090get_loc/find
index where, first_index_where, first_value_where, first_valid_value #4616__invert__
API: Index should support __inverse__ ops #8875These are related in that they are generic.py functions as they have to compute something then set the axis with the result.
normalize
ENH: Add Index.normalize as a Series or DataFrame method #5502tz_convert/tz_localize
(though this requires a bit of wrapping as they have an axis parm,but should be possible), see also here: ENH: New
level
argument for DataFrame.tz_localize and DataFrame.tz_convert (GH7846) #7915 (currently implemented only onDatetimeIndex
,PeriodIndex
has these as not implemented (and delegating fromNDFrame
is incore/generic
)duplicated/drop_duplicates
Add duplicated method to Index classes #4060, (PR ENH: Add duplicated/drop_duplicates to Index #7979)has_duplicates
BUG: Bug in MultiIndex.has_duplicates when having many levels causes an indexer overflow (GH9075) #9077The text was updated successfully, but these errors were encountered: