在此,我的数据集很小。
set.seed(123)
X1 <- rep(1:3, each = 4)
X2 <- c(1:4, 1:4, 1:4)
Y <- rnorm (12, 4, 20)
myd <- data.frame(X1, X2, Y)
# "unmelten" form of the dataframe
aggregate(Y ~ X1, myd, c )
X1 Y.1 Y.2 Y.3 Y.4
1 1 -7.2095129 -0.6035498 35.1741663 5.4101678
2 2 6.5857547 38.3012997 13.2183241 -21.3012247
3 3 -9.7370570 -4.9132394 28.4816359 11.1962765
实际数据矩阵在层面更大。 我想写的是使用熔炉构成数据的功能,如:
Example for X1, Y1.1 cell
(X1,Y.1) - sum(X1 row) - sum(Y.1 column) + grand total (= sum(Y))
-7.2095129 - ( -7.2095129 - 0.6035498 + 35.1741663 + 5.4101678) - ( -7.2095129 + 6.5857547 -9.7370570) + sum ( all values in the able)
表明我观点的其他两个例子。
For X2, Y1.1 cell
(X2,Y.1) - sum(X2 row) - sum(Y.1 column) + grand total (= sum(Y))
For X3, Y.3 cell
(X3,Y.3) - sum(X3 row) - sum(Y.3 column) + grand total (= sum(Y))
Similarly this will output a matrix of 3 x 4 size for each cell in the matrix.
我正试图写出这方面的职能,但可以得出任何想法。 页: 1