Data.min

Data.min(column=None, bounds=None)

Find minimum value and index in col_a column of data.

Parameters:

column (index) – Column to look for the maximum in

Keyword Arguments:

bounds (callable) – col_a callable function that takes col_a single argument list of numbers representing one row, and returns True for all rows to search in.

Returns:

(float,int) – (minimum value,row index of min value)

Note

If column is not defined (or is None) the DataFile.setas column assignments are used.