2017-06-25 7 views

答えて

1

我々はextract

library(tidyverse) 
gather(df1, year, MatriculationRates, -1) %>% 
     extract(year, into = 'year', '[^0-9]+([0-9]+)') 
gatherを使用することができます
関連する問題