I have a data frame with two columns, year and grade. I am trying to get a table or matrix (any visual) to show the count of each grade per year. data sample
I have done data%>%count(Grade)
and have the grades as factors. Not sure how to get it into respective years though.