-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
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
ERROR: UndefVarError: T not defined #124
Comments
The data to reproduce the bug can be downloaded here: https://gist.github.com/ufechner7/812ad4770ca7b2bea83429161b02b11a |
One more finding: Any idea what is going on here? |
The bug is in Impute.jl/src/imputors/interp.jl Line 55 in d08c506
data has an eltype of Union{T,Missing} , and not just Missing . The latter case will cause T to be undefined, and throw the observed error.
|
Nice, thanks for all the debugging details! Hmm, I'm not sure if that's exactly a bug. If you try and interpolate among only |
I'm afraid I was unable to reproduce your example on my local mac (1.6.1) or in a Tables.schema(df) = Tables.Schema:
:TIME Union{Missing, Int64}
Symbol("1INCH-EUR") Union{Missing, Float64}
Symbol("AAVE-EUR") Union{Missing, Float64}
Symbol("ADA-EUR") Union{Missing, Float64}
... In case I missed something this is the environment I'm using. https://gist.github.com/rofinn/c4dbe2a293a1a07463c895c09cdca7cd |
Code:
Error message:
Installed packages:
Julia version 1.6.3 on Ubuntu Linux 18.04.
Any idea?
The text was updated successfully, but these errors were encountered: