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"