Data.min¶
- Data.min(column: str | int | Pattern | Sequence[int | str | Pattern] | None = None, bounds: Callable | None = None) Tuple[float, int]¶
Find minimum value and index in col_a column of data.
- Parameters:
datafile (Data) – If not being used as a bound menthod, specifies the instance of Data to work with.
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.setascolumn assignments are used.