arg_max() (aggregation function)

Learn how to use the arg_max() aggregation function to find a row in a table that maximizes the input expression.

Finds a row in the table that maximizes the specified expression. It returns all columns of the input table or specified columns.

Syntax

arg_max (ExprToMaximize, * | ExprToReturn [, …])

Parameters

NameTypeRequiredDescription
ExprToMaximizestring✔️The expression for which the maximum value is determined.
ExprToReturnstring✔️The expression determines which columns’ values are returned, from the row that has the maximum value for ExprToMaximize. Use a wildcard * to return all columns.

Returns

Returns a row in the table that maximizes the specified expression ExprToMaximize, and the values of columns specified in ExprToReturn.

Examples

Find maximum latitude

The following example finds the maximum latitude of a storm event in each state.

StormEvents 
| summarize arg_max(BeginLat, BeginLocation) by State

Output

The results table displays only the first 10 rows.

StateBeginLatBeginLocation
MISSISSIPPI34.97BARTON
VERMONT45NORTH TROY
AMERICAN SAMOA-14.2OFU
HAWAII22.2113PRINCEVILLE
MINNESOTA49.35ARNESEN
RHODE ISLAND42WOONSOCKET
INDIANA41.73FREMONT
WEST VIRGINIA40.62CHESTER
SOUTH CAROLINA35.18LANDRUM
TEXAS36.4607DARROUZETT

Find last state fatal event

The following example finds the last time an event with a direct death happened in each state, showing all the columns.

The query first filters the events to include only those events where there was at least one direct death. Then the query returns the entire row with the most recent StartTime.

StormEvents
| where DeathsDirect > 0
| summarize arg_max(StartTime, *) by State

Output

The results table displays only the first 10 rows and first three columns.

StateStartTimeEndTime
GUAM2007-01-27T11:15:00Z2007-01-27T11:30:00Z
MASSACHUSETTS2007-02-03T22:00:00Z2007-02-04T10:00:00Z
AMERICAN SAMOA2007-02-17T13:00:00Z2007-02-18T11:00:00Z
IDAHO2007-02-17T13:00:00Z2007-02-17T15:00:00Z
DELAWARE2007-02-25T13:00:00Z2007-02-26T01:00:00Z
WYOMING2007-03-10T17:00:00Z2007-03-10T17:00:00Z
NEW MEXICO2007-03-23T18:42:00Z2007-03-23T19:06:00Z
INDIANA2007-05-15T14:14:00Z2007-05-15T14:14:00Z
MONTANA2007-05-18T14:20:00Z2007-05-18T14:20:00Z
LAKE MICHIGAN2007-06-07T13:00:00Z2007-06-07T13:00:00Z

Handle nulls

The following example demonstrates null handling.

datatable(Fruit: string, Color: string, Version: int) [
    "Apple", "Red", 1,
    "Apple", "Green", int(null),
    "Banana", "Yellow", int(null),
    "Banana", "Green", int(null),
    "Pear", "Brown", 1,
    "Pear", "Green", 2,
]
| summarize arg_max(Version, *) by Fruit

Output

FruitVersionColor
Apple1Red
BananaYellow
Pear2Green

Comparison to max()

The arg_max() function differs from the max() function. The arg_max() function allows you to return other columns along with the maximum value, and max() only returns the maximum value itself.

Examples

arg_max()

Find the last time an event with a direct death happened, showing all the columns in the table.

The query first filters the events to only include events where there was at least one direct death. Then the query returns the entire row with the most recent (maximum) StartTime.

StormEvents
| where DeathsDirect > 0
| summarize arg_max(StartTime, *)

The results table returns all the columns for the row containing the highest value in the expression specified.

| StartTime | EndTime | EpisodeId | EventId | State | EventType | … | |–|–|–|–| | 2007-12-31T15:00:00Z | 2007-12-31T15:00:00 | 12688 | 69700 | UTAH | Avalanche | … |

max()

Find the last time an event with a direct death happened.

The query filters events to only include events where there is at least one direct death, and then returns the maximum value for StartTime.

StormEvents
| where DeathsDirect > 0
| summarize max(StartTime)

The results table returns the maximum value of StartTime, without returning other columns for this record.

max_StartTime
2007-12-31T15:00:00Z