From 26c1aa4c9113feee67b696e1ed72afab83c33abb Mon Sep 17 00:00:00 2001 From: Philip Swannell Date: Sat, 23 Jan 2021 14:53:37 +0000 Subject: [PATCH] imports --- src/KendallTau.jl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/KendallTau.jl b/src/KendallTau.jl index 42323f7..411a3a9 100644 --- a/src/KendallTau.jl +++ b/src/KendallTau.jl @@ -2,6 +2,8 @@ module KendallTau using Random using BenchmarkTools +import LinearAlgebra # only used in method speedtest_correlation +import StatsBase # only used in method speedtest_correlation const RealVector{T <: Real} = AbstractArray{T,1} const RealMatrix{T <: Real} = AbstractArray{T,2}