From d13d1fa8f39265fc0390b9e7fada4250e2f7b9af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BAlio=20Hoffimann?= Date: Wed, 24 Jan 2024 17:35:01 -0300 Subject: [PATCH] Rename scale.jl --> lowhigh.jl --- src/transforms.jl | 2 +- src/transforms/{scale.jl => lowhigh.jl} | 0 test/transforms.jl | 2 +- test/transforms/{scale.jl => lowhigh.jl} | 0 4 files changed, 2 insertions(+), 2 deletions(-) rename src/transforms/{scale.jl => lowhigh.jl} (100%) rename test/transforms/{scale.jl => lowhigh.jl} (100%) diff --git a/src/transforms.jl b/src/transforms.jl index f0aa7af4..66ba95e0 100644 --- a/src/transforms.jl +++ b/src/transforms.jl @@ -288,7 +288,7 @@ include("transforms/levels.jl") include("transforms/indicator.jl") include("transforms/onehot.jl") include("transforms/center.jl") -include("transforms/scale.jl") +include("transforms/lowhigh.jl") include("transforms/zscore.jl") include("transforms/quantile.jl") include("transforms/functional.jl") diff --git a/src/transforms/scale.jl b/src/transforms/lowhigh.jl similarity index 100% rename from src/transforms/scale.jl rename to src/transforms/lowhigh.jl diff --git a/test/transforms.jl b/test/transforms.jl index 0873c9bb..8208cfbd 100644 --- a/test/transforms.jl +++ b/test/transforms.jl @@ -23,7 +23,7 @@ transformfiles = [ "onehot.jl", "identity.jl", "center.jl", - "scale.jl", + "lowhigh.jl", "zscore.jl", "quantile.jl", "functional.jl", diff --git a/test/transforms/scale.jl b/test/transforms/lowhigh.jl similarity index 100% rename from test/transforms/scale.jl rename to test/transforms/lowhigh.jl