Skip to content
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

StackOverflow with type Vector{Union{Float64, Missing}} even if no missing values present #75

Open
adienes opened this issue Jan 24, 2023 · 0 comments

Comments

@adienes
Copy link

adienes commented Jan 24, 2023

julia> y = Vector{Union{Float64, Missing}}()
Union{Missing, Float64}[]

julia> append!(y, [1,2,3])
3-element Vector{Union{Missing, Float64}}:
 1.0
 2.0
 3.0

julia> X = rand(3,3)
3×3 Matrix{Float64}:
 0.830955  0.821036  0.235061
 0.028721  0.326948  0.560919
 0.905771  0.673137  0.986464

julia> fit(LassoPath, X, y)
ERROR: StackOverflowError:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant