我在基於行和列中值的互惠性對數據框架進行子集時遇到了問題。按行列可互換子集
下面是一個例子DF來說明這個問題:
rater <- c(21, 23, 26, 24)
ratee <- c(24, 21, 23, 21)
rating.data <- data.frame(rater, ratee)
輸出:
rater ratee
1 21 24
2 23 21
3 26 23
4 24 21
我想通過只保留有相互值的行子集到這個DF。
產生的子集應該是這樣的:
rater ratee
1 21 24
4 24 21
任何想法,將不勝感激!
你錯誤地使用了字倒數。 1/x是x的倒數值。 –
你想結束對稱矩陣? –
https://stackoverflow.com/questions/28574006/unique-rows-considering-two-columns-in-r-without-order也檢查鏈接 – Wen