Use the pandas idxmax function. It's straightforward:
>>> import pandas
>>> import numpy as np
>>> df = pandas.DataFrame(np.random.randn(5,3),columns=['A','B','C'])
>>> df
A B C
0 1.232853 -1.979459 -0.573626
1 0.140767 0.394940 1.068890
2 0.742023 1.343977 -0.579745
3 2.125299 -0.649328 -0.211692
4 -0.187253 1.908618 -1.862934
>>> df['A'].idxmax()
3
>>> df['B'].idxmax()
4
>>> df['C'].idxmax()
1
Alternatively you could also use
numpy.argmax, such asnumpy.argmax(df['A'])-- it provides the same thing, and appears at least as fast asidxmaxin cursory observations.idxmax()returns indices labels, not integers.Example': if you have string values as your index labels, like rows 'a' through 'e', you might want to know that the max occurs in row 4 (not row 'd').
if you want the integer position of that label within the
Indexyou have to get it manually (which can be tricky now that duplicate row labels are allowed).
HISTORICAL NOTES:
idxmax()used to be calledargmax()prior to 0.11argmaxwas deprecated prior to 1.0.0 and removed entirely in 1.0.0- back as of Pandas 0.16,
argmaxused to exist and perform the same function (though appeared to run more slowly thanidxmax). argmaxfunction returned the integer position within the index of the row location of the maximum element.- pandas moved to using row labels instead of integer indices. Positional integer indices used to be very common, more common than labels, especially in applications where duplicate row labels are common.
For example, consider this toy DataFrame with a duplicate row label:
In [19]: dfrm
Out[19]:
A B C
a 0.143693 0.653810 0.586007
b 0.623582 0.312903 0.919076
c 0.165438 0.889809 0.000967
d 0.308245 0.787776 0.571195
e 0.870068 0.935626 0.606911
f 0.037602 0.855193 0.728495
g 0.605366 0.338105 0.696460
h 0.000000 0.090814 0.963927
i 0.688343 0.188468 0.352213
i 0.879000 0.105039 0.900260
In [20]: dfrm['A'].idxmax()
Out[20]: 'i'
In [21]: dfrm.iloc[dfrm['A'].idxmax()] # .ix instead of .iloc in older versions of pandas
Out[21]:
A B C
i 0.688343 0.188468 0.352213
i 0.879000 0.105039 0.900260
So here a naive use of idxmax is not sufficient, whereas the old form of argmax would correctly provide the positional location of the max row (in this case, position 9).
This is exactly one of those nasty kinds of bug-prone behaviors in dynamically typed languages that makes this sort of thing so unfortunate, and worth beating a dead horse over. If you are writing systems code and your system suddenly gets used on some data sets that are not cleaned properly before being joined, it's very easy to end up with duplicate row labels, especially string labels like a CUSIP or SEDOL identifier for financial assets. You can't easily use the type system to help you out, and you may not be able to enforce uniqueness on the index without running into unexpectedly missing data.
So you're left with hoping that your unit tests covered everything (they didn't, or more likely no one wrote any tests) -- otherwise (most likely) you're just left waiting to see if you happen to smack into this error at runtime, in which case you probably have to go drop many hours worth of work from the database you were outputting results to, bang your head against the wall in IPython trying to manually reproduce the problem, finally figuring out that it's because idxmax can only report the label of the max row, and then being disappointed that no standard function automatically gets the positions of the max row for you, writing a buggy implementation yourself, editing the code, and praying you don't run into the problem again.
Use the pandas idxmax function. It's straightforward:
>>> import pandas
>>> import numpy as np
>>> df = pandas.DataFrame(np.random.randn(5,3),columns=['A','B','C'])
>>> df
A B C
0 1.232853 -1.979459 -0.573626
1 0.140767 0.394940 1.068890
2 0.742023 1.343977 -0.579745
3 2.125299 -0.649328 -0.211692
4 -0.187253 1.908618 -1.862934
>>> df['A'].idxmax()
3
>>> df['B'].idxmax()
4
>>> df['C'].idxmax()
1
Alternatively you could also use
numpy.argmax, such asnumpy.argmax(df['A'])-- it provides the same thing, and appears at least as fast asidxmaxin cursory observations.idxmax()returns indices labels, not integers.Example': if you have string values as your index labels, like rows 'a' through 'e', you might want to know that the max occurs in row 4 (not row 'd').
if you want the integer position of that label within the
Indexyou have to get it manually (which can be tricky now that duplicate row labels are allowed).
HISTORICAL NOTES:
idxmax()used to be calledargmax()prior to 0.11argmaxwas deprecated prior to 1.0.0 and removed entirely in 1.0.0- back as of Pandas 0.16,
argmaxused to exist and perform the same function (though appeared to run more slowly thanidxmax). argmaxfunction returned the integer position within the index of the row location of the maximum element.- pandas moved to using row labels instead of integer indices. Positional integer indices used to be very common, more common than labels, especially in applications where duplicate row labels are common.
For example, consider this toy DataFrame with a duplicate row label:
In [19]: dfrm
Out[19]:
A B C
a 0.143693 0.653810 0.586007
b 0.623582 0.312903 0.919076
c 0.165438 0.889809 0.000967
d 0.308245 0.787776 0.571195
e 0.870068 0.935626 0.606911
f 0.037602 0.855193 0.728495
g 0.605366 0.338105 0.696460
h 0.000000 0.090814 0.963927
i 0.688343 0.188468 0.352213
i 0.879000 0.105039 0.900260
In [20]: dfrm['A'].idxmax()
Out[20]: 'i'
In [21]: dfrm.iloc[dfrm['A'].idxmax()] # .ix instead of .iloc in older versions of pandas
Out[21]:
A B C
i 0.688343 0.188468 0.352213
i 0.879000 0.105039 0.900260
So here a naive use of idxmax is not sufficient, whereas the old form of argmax would correctly provide the positional location of the max row (in this case, position 9).
This is exactly one of those nasty kinds of bug-prone behaviors in dynamically typed languages that makes this sort of thing so unfortunate, and worth beating a dead horse over. If you are writing systems code and your system suddenly gets used on some data sets that are not cleaned properly before being joined, it's very easy to end up with duplicate row labels, especially string labels like a CUSIP or SEDOL identifier for financial assets. You can't easily use the type system to help you out, and you may not be able to enforce uniqueness on the index without running into unexpectedly missing data.
So you're left with hoping that your unit tests covered everything (they didn't, or more likely no one wrote any tests) -- otherwise (most likely) you're just left waiting to see if you happen to smack into this error at runtime, in which case you probably have to go drop many hours worth of work from the database you were outputting results to, bang your head against the wall in IPython trying to manually reproduce the problem, finally figuring out that it's because idxmax can only report the label of the max row, and then being disappointed that no standard function automatically gets the positions of the max row for you, writing a buggy implementation yourself, editing the code, and praying you don't run into the problem again.
You might also try idxmax:
In [5]: df = pandas.DataFrame(np.random.randn(10,3),columns=['A','B','C'])
In [6]: df
Out[6]:
A B C
0 2.001289 0.482561 1.579985
1 -0.991646 -0.387835 1.320236
2 0.143826 -1.096889 1.486508
3 -0.193056 -0.499020 1.536540
4 -2.083647 -3.074591 0.175772
5 -0.186138 -1.949731 0.287432
6 -0.480790 -1.771560 -0.930234
7 0.227383 -0.278253 2.102004
8 -0.002592 1.434192 -1.624915
9 0.404911 -2.167599 -0.452900
In [7]: df.idxmax()
Out[7]:
A 0
B 8
C 7
e.g.
In [8]: df.loc[df['A'].idxmax()]
Out[8]:
A 2.001289
B 0.482561
C 1.579985
pandas - select rows containing max value basing on another duplicated rows of a group - Data Science Stack Exchange
Pandas: Get the max value of a group ONLY if the value satisfies given conditions
pandas - How do I find pairwise maximum of multiple rows in a column using python? - Data Science Stack Exchange
Pandas return row with the maximum value of a column
Videos
I have a huge datatset.
The data is grouped by col, row, year, no, potveg, and total. I am trying to get the maximum value of the 'total' column in each specific group year ONLY if its 'possible' value is TRUE. If the max 'total' value is FALSE, then get the second max value, and so on.
If all the values of the 'possible' column in a specific year group = False, then I want to pick the max out of the False so that I don't skip any years.
i.e., for the dataset below:
col row year no potveg total possible
-125 42.5 2015 1 9 697.3 FALSE
-125 42.5 2015 2 13 535.2 TRUE
-125 42.5 2015 3 15 82.3 TRUE
-125 42.5 2016 1 9 907.8 TRUE
-125 42.5 2016 2 13 137.6 FALSE
-125 42.5 2016 3 15 268.4 TRUE
-125 42.5 2017 1 9 961.9 FALSE
-125 42.5 2017 2 13 74.2 TRUE
-125 42.5 2017 3 15 248 TRUE
-125 42.5 2018 1 9 937.9 TRUE
-125 42.5 2018 2 13 575.6 TRUE
-125 42.5 2018 3 15 215.5 FALSE
-135 70.5 2015 1 8 697.3 FALSE
-135 70.5 2015 2 10 535.2 TRUE
-135 70.5 2015 3 19 82.3 TRUE
-135 70.5 2016 1 8 907.8 TRUE
-135 70.5 2016 2 10 137.6 FALSE
-135 70.5 2016 3 19 268.4 TRUE
-135 70.5 2017 1 8 961.9 FALSE
-135 70.5 2017 2 10 74.2 TRUE
-135 70.5 2017 3 19 248 TRUE
-135 70.5 2018 1 8 937.9 TRUE
-135 70.5 2018 2 10 575.6 TRUE
-135 70.5 2018 3 19 215.5 FALSE
-135 70.5 2019 1 8 937.9 FALSE
-135 70.5 2019 2 10 575.6 FALSE
-135 70.5 2019 3 19 215.5 FALSEThe output would be:
col row year no potveg total possible -125 42.5 2015 2 13 535.2 TRUE -125 42.5 2016 1 9 907.8 TRUE -125 42.5 2017 3 15 248 TRUE -125 42.5 2018 1 9 937.9 TRUE -135 70.5 2015 2 10 535.2 TRUE -135 70.5 2016 1 8 907.8 TRUE -135 70.5 2017 3 19 248 TRUE -135 70.5 2018 1 8 937.9 TRUE -135 70.5 2019 1 8 937.9 FALSE
I have tried
# Separate out the true and false possibilities by grouping by ['col','row','year','possible']
# and getting the idxmax for column total. At the end, we sort the result on possible in descending order.
# This puts all idxmax values (now in total) with True in possible first.
idx = df.groupby(['col','row','year','possible'], as_index=False)['total']\
.idxmax().sort_values('possible', ascending=False)['total']
#we then apply a second groupby, this time only on['col', 'row', 'year'] and simply get the first.
result = df.iloc[idx].groupby(['col', 'row', 'year']).first()
orig_index = df.set_index(['col', 'row', 'year']).index.drop_duplicates()
#re-establishing the original order by using df.reindex based on the original df
# with index there set to ['col','row','year'] and getting rid of the duplicates first.
result_reordered = result.reindex(orig_index)But I am still getting some years where the max value is not picked resulting in duplicates.
This would be another approach a little bit shorter:
df.assign(resultado = lambda x: x.rolling(2).max())
EDIT:
For your comment try:
def idx(x):
return x.index.values[np.argmax(x.values)]
df.rolling(2).agg(['max', idx])
will return both, the pairwise maximum and the index that corresponds to that value.
You can create a new column like the one you have but "shifted" one position down, and the compute the maximum of these two columns:
import pandas as pd
import numpy as np
data = np.random.randint(0, 50, size=20)
df = pd.DataFrame(data, columns=['values'])
df['prev'] = df['values'].shift(1)
df['max'] = df[['values', 'prev']].max(axis=1)
The result is
+----+----------+--------+-------+
| | values | prev | max |
|----+----------+--------+-------|
| 0 | 17 | nan | 17 |
| 1 | 32 | 17 | 32 |
| 2 | 3 | 32 | 32 |
| 3 | 4 | 3 | 4 |
| 4 | 4 | 4 | 4 |
| 5 | 17 | 4 | 17 |
| 6 | 12 | 17 | 17 |
...
You can then remove the first row if you don't need it.