1
簡單地說,我想打印1到5的所有組合作爲座標(x,y),並在其旁邊打印平均值。操縱和格式化數據幀的輸出
現在我一個月左右到R,這是我所管理:
combination <- combn(seq(1:5), 2)
combination <- data.frame(combination)
combination <- rbind(combination, combn(seq(1:5), 2, mean))
mapply(paste, combination[1,], combination[2,], MoreArgs = list(sep = ","), USE.NAMES = FALSE)
所以我有我需要的一切數據幀,但什麼我難倒是得到它印像:
(1,2)1.5 (1,3)2 等
有人點我在對這個正確的方向?
大加讚賞, 克里斯