I want know what the Sepal.Length is for the minimum Sepal.Width for each species, but I can't figure out how to get the matching rows for the row that has the minimum Sepal.Width.
library(dplyr)
itable <- tbl_df(iris)
#print(itable)
a <- itable %>% group_by(Species) %>% summarise_each(funs(min(Sepal.Width)))
print(a)
Sorry for the basic question.