I am trying to group data in R by Education-Experience-Year cells. My search led me to the dplyr
package, and I can use code like this
by_EdExpT <- df1 %>% group_by(ED, EXP, YEAR)
to group the data. But I'm not really sure how to perform operations on it. Is dplyr the best package to use for this, and how do I perform operations like means or regressions?