我是使用reshape2及其功能的新手。我有一個數據表,d,爲此,我想在車站種數合計數據中來,以獲得平均計算每個物種在所有站每年可爲: d<-data.table(station=c(1,1,4,3),year=c(2000,2000,2001,2000),
species=c("cat","dog","dog","owl"),abundance=c(10,20,30,10))
d
我需要的東西在R鍵變換數據幀是這樣的: id past present future
id1 A A B
id2 B C
id3 A C
id4 B B A
要這樣: id A B C
id1 past, present future
id2 past future
id3 past present
id4 futu