Re: [Rd] Antwort: Re: Inconsistency with matrix indexing (PR#8214)

2005-10-18 Thread Duncan Murdoch
On 10/18/2005 9:32 AM, [EMAIL PROTECTED] wrote: > Dear Duncan, > > you are right. In both R 2.2.0 and 2.1.1 you get the same result. What has > actually changed is the following: > In R 2.1.1 >> mat[1, , drop = FALSE][1] > r1 > 1 > > While in R 2.2.0 >> mat[1, , drop = FALSE][1] > [1] 1 I do

[Rd] Antwort: Re: Inconsistency with matrix indexing (PR#8214)

2005-10-18 Thread stefan . albrecht
Dear Duncan, you are right. In both R 2.2.0 and 2.1.1 you get the same result. What has actually changed is the following: In R 2.1.1 > mat[1, , drop = FALSE][1] r1 1 While in R 2.2.0 > mat[1, , drop = FALSE][1] [1] 1 In both cases > mat[1, , drop = FALSE] c1 c2 c3 r1 1 4 7 I would st