R/df_utils.R
rowMins.RdA wrapper for matrixStats::rowMins() Returns the minimal numeric value per row in a matrix or a dataframe
rowMins(x, ...)Arguments passed on to matrixStats::rowMaxs
xrowsA vector indicating subset of rows to
operate over. If NULL, no subsetting is done.
colsA vector indicating subset of columns to
operate over. If NULL, no subsetting is done.
na.rmIf TRUE, missing values are
excluded.
dim.An integer vector of
length two specifying the dimension of x, also when not a
matrix. Comment: The reason for this argument
being named with a period at the end is purely technical (we get a run-time
error if we try to name it dim).
useNamesIf TRUE (default), names
attributes of the result are set, otherwise not.