0

我在选角方面遇到了麻烦this dataframe。我想有物种的频率(使用newname)跨越main_habitat和市镇(munc),与main_habitat在行newname和所有munc,在列中具有相应的频率:

   main_haitat  newname munc1 munc2 munc3
    A            X      1     1     0
    A            Y      0     1     1
    B            Y       ...
    B            Z       ...
    ... 

非常感谢您对此的任何帮助!

4

1 回答 1

1

reshape2

library(reshape2)
dcast( species, main_habitat + newname ~ munc, fill=0 )
于 2013-05-23T10:18:21.653 回答