Tag: subsetting

  • Subscripting in R * [ gives the same …

    site utile Subscripting in R

    [ gives the same data type as the data it is applied to.
    [[ and $ extract the element and the data type is not necessarily the same as that of the data it is applied to.

    $ does partial matching.
    [ and [[ don’t.

    $ does not evaluate.
    [ and [[ evaluate their arguments.