pd.Series.rank
¶
pandas.Series.rank(axis=0, method='average', numeric_only=NoDefault.no_default, na_option='keep', ascending=True, pct=False)
Supported Arguments¶
argument | datatypes |
---|---|
method |
String in |
na_option |
String in |
ascending |
Boolean |
pct |
Boolean |
Note
- Using
method='first'
withascending=False
is currently unsupported.