I have a dataframe called df that looks something like this... "ID","ReleaseYear","CriticPlayerPrefer","n","CountCriticScores","CountUserScores" "1",1994,"Both",1,5,283 "2",1994,"Critics",0,0,0 "3",1994,"Players",0,0,0 "4",1995,"…
r dcastI’m trying to reshape my data from long to wide formula using the dcast function from reshape2. The objective …
r reshape2 dcast