FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

namespace-qualifying shift() (and last(), first()) shouldn't turn off GForce · Issue #5942 · Rdatatable/data.table · GitHub

namespace-qualifying shift() (and last(), first()) shouldn't turn off GForce #5942

Description

x = data.table(a = 1:2, b = 1:10)
x[, shift(b), a, verbose=TRUE]
# ...
# GForce optimized j to 'gshift(b)' (see ?GForce)
# ...

x[, data.table::shift(b), a, verbose=TRUE]
# ...
# GForce is on, but not activated for this query; left j unchanged (see ?GForce)
# ...

The same goes for other GForce functions that mask our own exports.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

Labels

GForceissues relating to optimized grouping calculations (GForce)

Type

No type

Projects

No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions


    Back | FazBrowse Home | New Git URL