I have a tibble that looks like this:
X Form Jan_92 Feb_92 Mar_92 (....)
<int> <fct> <dbl> <dbl> <dbl>
1 var1 2.02 2.97 0.12
2 var2 0.23 0.28 0.33
3 var3 0.08 0.28 0.12
I want to tidy it so that all of the month/year combos (there are 10 years worth) are in a single column, and the var1/var2/var3 measures are column names with the respective values (corresponding to the dates).
So far I've tried transposing with t(data) but that turns it into a dataframe and I get weird row/column naming problems that I can't fix when I put it back into tibble format. Help!