Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
生データは次のようになります。
type value 1 a 10 2 a 20 3 a 30 4 b 50 5 b 10 6 b 20
溶けたデータは次のようになります。
1 a value 10 2 b value 10
wilcox.test を a,b に適用して、a が b より大きいかどうかを確認します。どうやってするか?ありがとう。
データを溶かす必要はないと思います。
あなたの(溶けていない)データrawを含むdata.frameが与えられたraw
raw
wilcox.test(value ~ type, data = raw)
動作するはずです。