I want to use R in Python, as provided by the module Rpy2. I notice that R has very convenient [] operations by which you can extract the specific columns or li
[]
I've also seen
x <- {}
Now you can concatenate or bind a vector of any dimension to x
x
rbind(x, 1:10) cbind(x, 1:10) c(x, 10)