Skip to content

Commit 6a5522c

Browse files
committed
Fix Julia 0.4
1 parent 717661e commit 6a5522c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GLMNet.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ modeltype(::Poisson) = "Poisson"
196196

197197
function show(io::IO, g::GLMNetPath)
198198
println(io, "$(modeltype(g.family)) GLMNet Solution Path ($(size(g.betas, 2)) solutions for $(size(g.betas, 1)) predictors in $(g.npasses) passes):")
199-
print(io, CoefTable([nactive(g.betas), g.dev_ratio, g.lambda], ["df", "pct_dev", "λ"], []))
199+
print(io, CoefTable(Union{Vector{Int},Vector{Float64}}[nactive(g.betas), g.dev_ratio, g.lambda], ["df", "pct_dev", "λ"], []))
200200
end
201201

202202
function check_jerr(jerr, maxit)

0 commit comments

Comments
 (0)