We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to integrate maditr with disk.frame but for that I need the methods in maditr to be S3 compatible. E.g.
let = function(data, ....) { UseMethod("let") } let.default = function(data, # omitted) { # your original let function implementation here; omitted }
then in disk.frame I can implement the let method
let
let.disk.frame <- function(data,...) { # implement it for disk.frame }
which will enable large datasets that doesn't fit into ram to benefit from maditr.
The text was updated successfully, but these errors were encountered:
Ok, will be added in the next release.
Sorry, something went wrong.
Make verbs generic (issue #8). 'dt_mutate' and 'dt_summarize' are unc…
f865f54
…hanged because they are just alias to 'let' and 'take'.
Added in version 0.6.3
No branches or pull requests
I want to integrate maditr with disk.frame but for that I need the methods in maditr to be S3 compatible. E.g.
then in disk.frame I can implement the
let
methodwhich will enable large datasets that doesn't fit into ram to benefit from maditr.
The text was updated successfully, but these errors were encountered: