datatable.Frame.min1()¶
Find the smallest value in a single-column Frame. The frame’s stype must be numeric.
This function is a shortcut for:
DT.min()[0, 0]
Parameters¶
return
bool | int | floatThe returned value corresponds to the stype of the frame.
except
ValueErrorIf called on a Frame that has more or less than 1 column.
See Also¶
The content on this page is licensed under the Creative Commons Attribution 4.0 License
(CC BY 4.0) ,
and code samples are licensed under the MIT License.