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 lines, how could I achieve such a function by python scripts? My idea is to create a R vector and add those wanted elements into this vecotr so that the final vector is the same as that in R. As I am new to R, I create a seq(), but it seems that it has an initial digit 1, so the final result would always started with the digit 1, which is not what I want. So, is there a better way to do this? Thanks!
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
See also vector help
|
|||
|
I pre-allocate a vector with
You can then use [] to insert values into it. |
|||||||||||
|
|
You can create an empty vector like so
And then add elements using c()
However as romunov says, it's much better to pre-allocate a vector and then populate it (as this avoids reallocating a new copy of your vector every time you add elements) |
|||||||||||||
|
|
I've also seen
Now you can concatenate or bind a vector of any dimension to
|
|||
|
|
|
In rpy2, the way to get the very same operator as "[" with R is to use ".rx". See the documentation about extracting with rpy2 For creating vectors, if you know your way around with Python there should not be any issue. See the documentation about creating vectors |
||||