eland.DataFrame.idxmax#

DataFrame.idxmax(axis: int = 0) Series#

返回所请求轴上最大值的第一次出现处的索引。

NA/空值将被排除。

参数#

axis{0, 1}, 默认值 0

要过滤的轴,以索引 (int) 表示。

返回值#

pandas.Series

另请参见#

pandas.DataFrame.idxmax

示例#

>>> ed_df = ed.DataFrame('http://localhost:9200', 'flights')
>>> ed_flights = ed_df.filter(["AvgTicketPrice", "FlightDelayMin", "dayOfWeek", "timestamp"])
>>> ed_flights.idxmax()
AvgTicketPrice    1843
FlightDelayMin     109
dayOfWeek         1988
dtype: object