Skip to content
Snippets Groups Projects
Commit 7be8a879 authored by Claudio Zandonella's avatar Claudio Zandonella
Browse files

Remove preprocessing in reporting

Do not run preprocessing because in the case of decomposing techniques
variables are not longer interpretable
parent 339d6454
Branches main
No related tags found
No related merge requests found
......@@ -714,9 +714,11 @@ def reporting(
# apply all the pre-processing transformations
preprocs = [] if preprocs is None else preprocs
tdata = data.copy()
for pre in preprocs:
if pre is not None:
tdata = pre.fit_transform(tdata)
# Do not run preprocessing because in the case of decomposing techniques
# variables are not longer interpretable
# for pre in preprocs:
# if pre is not None:
# tdata = pre.fit_transform(tdata)
tdata = pd.DataFrame(
tdata,
......
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