0
What follows functions as expected:
Data.frame(c(1, 2, 3)) - A
data.frame B (4, 5, 6)
cbind (A, B)
c.1..2..3. X4 X5 X6
1 1 4 5 6
2 2 4 5 6
3 3 4 5 6
Right now, I'm using rbind to transpose:
in data.frame (1, 2, 3)
Bt = data.frame(c(4),(5),(6))
rbind (At, Bt)
Also, this is ineffective:
Rbind(deparse.level,...) error: Numbers of parameters' columns do not match
The following is interestingly supported by both cbind and rbind:
cbind (A, 4, 5, 6)
c.1..2..3. 4 5 6
1 1 4 5 6
2 2 4 5 6
3 3 4 5 6
rbind (At, 4, 5, 6)
X1 X2 X3
1 1 2 3
2 4 4 4
3 5 5 5
4 6 6 6