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
Before we cut a 1.0 release we should simplify our public API to make maintaining this package easier. (Based off #17)
impute(x, :method)
Impute.method(x; kwargs...)
Imputor
Context
impute
Impute.method(; kwargs)
chain
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Before we cut a 1.0 release we should simplify our public API to make maintaining this package easier. (Based off #17)
impute(x, :method)
in favour ofImpute.method(x; kwargs...)
Imputor
s should contain theContext
rather than passing that toimpute
impute
should always take anImputor
firstImpute.method(; kwargs)
should return a function that takes the datachain
as we should be able to use a more functional interface for nowThe text was updated successfully, but these errors were encountered: