Axis

Applies to: python

An axis is a dimension of an array. In a 2D table, axis 0 usually moves down rows and axis 1 moves across columns.

a.sum(axis=0)  # column sums

See also: numpy-array, shape