标签: r
我正在尝试了解如何将图片1中的数据框转换为2。我该如何进行转型呢?
答案 0 :(得分:1)
我们可以将gather与extract
gather
extract
library(tidyverse) gather(df1, year, MatriculationRates, -1) %>% extract(year, into = 'year', '[^0-9]+([0-9]+)')