From f4e0bf7b893c4b2a3c76b6a23fe99d3c7e633435 Mon Sep 17 00:00:00 2001 From: Rik Huijzer Date: Fri, 1 Dec 2023 16:07:26 +0100 Subject: [PATCH] Rename extract to importance --- src/SIRUS.jl | 2 +- src/{extract.jl => importance.jl} | 0 test/{extract.jl => importance.jl} | 0 test/runtests.jl | 4 ++-- 4 files changed, 3 insertions(+), 3 deletions(-) rename src/{extract.jl => importance.jl} (100%) rename test/{extract.jl => importance.jl} (100%) diff --git a/src/SIRUS.jl b/src/SIRUS.jl index c0529f7..0a93889 100644 --- a/src/SIRUS.jl +++ b/src/SIRUS.jl @@ -37,7 +37,7 @@ include("ruleshow.jl") include("dependent.jl") export gap_size include("weights.jl") -include("extract.jl") +include("importance.jl") export feature_importance, feature_importances include("mlj.jl") diff --git a/src/extract.jl b/src/importance.jl similarity index 100% rename from src/extract.jl rename to src/importance.jl diff --git a/test/extract.jl b/test/importance.jl similarity index 100% rename from test/extract.jl rename to test/importance.jl diff --git a/test/runtests.jl b/test/runtests.jl index ff1f576..1a3f60c 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -36,8 +36,8 @@ end include("weights.jl") end -@testset "extract" begin - include("extract.jl") +@testset "importance" begin + include("importance.jl") end if get(ENV, "CAN_RUN_R_SIRUS", "false")::String == "true"