次のようなデータフレームがあるとします
set.seed(7302012)
county <- rep(letters[1:4], each=2)
state <- rep(LETTERS[1], times=8)
industry <- rep(c("construction", "manufacturing"), 4)
employment <- round(rnorm(8, 100, 50), 0)
establishments <- round(rnorm(8, 20, 5), 0)
data <- data.frame(state, county, industry, employment, establishments)
state county industry employment establishments
1 A a construction 146 19
2 A a manufacturing 110 20
3 A b construction 121 10
4 A b manufacturing 90 27
5 A c construction 197 18
6 A c manufacturing 73 29
7 A d construction 98 30
8 A d manufacturing 102 19
これを作り直して、各行が郡と産業ではなく (州と) 郡を表し、列construction.employment
が 、construction.establishments
、および製造業の類似バージョンになるようにします。これを行う効率的な方法は何ですか?
1 つの方法は、サブセット化することです
construction <- data[data$industry == "construction", ]
names(construction)[4:5] <- c("construction.employment", "construction.establishments")
製造の場合も同様に、マージを行います。業界が 2 つしかない場合、これはそれほど悪くはありませんが、14 の業界があると想像してください。このプロセスは面倒になります (ただしfor
、 のレベルにまたがるループを使用することで軽減されますindustry
)。
他のアイデアはありますか?