From e6d671d128017a0c7e4af5dfef5c905d4b95428b Mon Sep 17 00:00:00 2001 From: "Anthony D. Blaom" Date: Wed, 27 Sep 2023 12:04:30 +1300 Subject: [PATCH] rm redundant code --- src/resampling.jl | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/resampling.jl b/src/resampling.jl index 1e70fcce..85fe9494 100644 --- a/src/resampling.jl +++ b/src/resampling.jl @@ -557,12 +557,6 @@ end round3(x) = x round3(x::AbstractFloat) = round(x, sigdigits=3) -_short(v) = v -_short(v::Vector{<:Real}) = MLJBase.short_string(v) -_short(v::Vector) = string("[", join(_short.(v), ", "), "]") -_short(::Missing) = missing - - const SE_FACTOR = 1.96 # For a 95% confidence interval. _standard_error(v::AbstractVector{<:Real}) = SE_FACTOR*std(v) / sqrt(length(v) - 1)