Skip to content
Snippets Groups Projects
Commit 9e9e74ce authored by leufen1's avatar leufen1
Browse files

adjust minmax scaling for filtered data to standardise

parent e8b75730
No related branches found
No related tags found
5 merge requests!319add all changes of dev into release v1.4.0 branch,!318Resolve "release v1.4.0",!317enabled window_lead_time=1,!311Resolve "mean bootstrapping",!259Draft: Resolve "WRF-Datahandler should inherit from SingleStationDatahandler"
Pipeline #73708 passed
......@@ -61,6 +61,8 @@ class DataHandlerFilterSingleStation(DataHandlerSingleStation):
for k, v in transformation[0].items():
if v["method"] == "log":
transformation[0][k]["method"] = "standardise"
elif v["method"] == "min_max":
transformation[0][k]["method"] = "standardise"
return transformation
def _check_sampling(self, **kwargs):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment