Apply a function to each row in a data frame in R [duplicate]
This question already has answers here : Apply a function to every row of a matrix or a data frame (6 answers) Possible Duplicate: how to apply a function to every row of a matrix (or a data frame) in R R - how to call apply-like function on each row of dataframe with multiple arguments from each row of the df I want to apply a function to each row in a data frame, however, R applies it to each column by default. How do I force it otherwise? > a = as.data.frame(list(c(1,2,3),c(10,0,6)),header=T) > a c.1..2..3. c.10..0..6. 1 1 10 2 2 0 3 3 6 > sapply(a,min) c.1..2..3. c.10..0..6. 1 0 I wanted