I\'m try to do a simple minimum across multiple columns in a data frame but the min function automatically returns the min across the whole of each column rather than for ea
We could also use rowMins from library(matrixStats)
rowMins
library(matrixStats)
library(matrixStats) df$minIwant <- rowMins(as.matrix(df))