On Mon, Feb 28, 2011 at 1:05 PM, Laurent Gautier wrote:
>> Indeed, you mentioned NA_Real, but what else can be put in FloatVector
>> beside float number? Some R's NULL representation? What about NaN?
[...]
> rinterface.NULL is not accepted (for I believe R's behaviour is confusing).
> Nan in Pytho
On 25/02/11 18:59, Artur Wroblewski wrote:
> On Fri, Feb 25, 2011 at 5:25 PM, Laurent wrote:
>> On 24/02/11 11:26, Artur Wroblewski wrote:
> [...]
>>> In Python
>>>
>>> >>>(1, None, 2, None, 3)
>>> (1, None, 2, None, 3)
>>>
>>> In R
>>>
>>> >c(1, NULL, 2, NULL, 3)
>>> [
On Fri, Feb 25, 2011 at 5:25 PM, Laurent wrote:
> On 24/02/11 11:26, Artur Wroblewski wrote:
[...]
>> In Python
>>
>> >>> (1, None, 2, None, 3)
>> (1, None, 2, None, 3)
>>
>> In R
>>
>> > c(1, NULL, 2, NULL, 3)
>> [1] 1 2 3<- NULL is removed, by default
>>
>> > c(1, NA, 2, N
On 24/02/11 11:26, Artur Wroblewski wrote:
> On Thu, Feb 24, 2011 at 07:57:19AM +0100, Laurent wrote:
>> On 24/02/11 00:12, Artur Wroblewski wrote:
>>> On Wed, Feb 23, 2011 at 8:00 PM, Laurent Gautier
>>> wrote:
>>> [...]
Rpy2 aims at doing very little hidden magic or second guessing of the
On Thu, Feb 24, 2011 at 07:57:19AM +0100, Laurent wrote:
> On 24/02/11 00:12, Artur Wroblewski wrote:
> >On Wed, Feb 23, 2011 at 8:00 PM, Laurent Gautier wrote:
> >[...]
> >>Rpy2 aims at doing very little hidden magic or second guessing of the user's
> >>intention (R is already enough).
> >
> >Pro