Skip to content
Back to formatted view

Raw Message

Message-ID: <CABtg=K=qGcsg_tH7m=c0KEzc1mdqMM3ETjB4JNQeOMnS4ehNdg@mail.gmail.com>
Date: 2015-08-12T15:55:56Z
From: Gábor Csárdi
Subject: Weird issue when iterating through dates
In-Reply-To: <CAFnz2-9z0R6xf_RzmtFrHcQKCVbip+jEH+E1+Uj2MuCoerXbMg@mail.gmail.com>

I am not sure if this is a bug or not.

Gabor

On Wed, Aug 12, 2015 at 11:51 AM, Luca Cerone <luca.cerone at gmail.com> wrote:
> Following up on this, should I report a bug? can you drive me through
> the process?
>
> Cheers,
> Luca
>
> On Thu, Aug 6, 2015 at 4:55 PM, William Dunlap <wdunlap at tibco.com> wrote:
>>>> Just a quick question: what's the difference between  `[.Date` and
>>>> `[[.Date`?
>>>> Is it supposed to be the method for accessing the value right?
>>>
>>>For Dates and atomic vectors in general they are the same, but ...
>>
>> Even for atomic vectors with names they are not quite the same
>>     > c(One=1, Two=2)[[2]]
>>     [1] 2
>>     > c(One=1, Two=2)[2]
>>     Two
>>       2
>> (and [[ will only return 1 item, unlike [).
>>
>>
>> Bill Dunlap
>> TIBCO Software
>> wdunlap tibco.com
>>
>> On Thu, Aug 6, 2015 at 5:36 AM, G?bor Cs?rdi <csardi.gabor at gmail.com> wrote:
>>>
>>> On Thu, Aug 6, 2015 at 6:30 AM, Luca Cerone <luca.cerone at gmail.com> wrote:
>>> [...]
>>> > Just a quick question: what's the difference between  `[.Date` and
>>> > `[[.Date`?
>>> > Is it supposed to be the method for accessing the value right?
>>>
>>> For Dates and atomic vectors in general they are the same, but in
>>> general they are two different operators that behave differently on
>>> some data types. E.g. on lists [ selects a sub-list and [[ selects a
>>> single element.
>>>
>>> Gabor
>>>
>>> [...]
>>>
>>> ______________________________________________
>>> R-devel at r-project.org mailing list
>>> https://stat.ethz.ch/mailman/listinfo/r-devel
>>
>>