File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
ads/opctl/operator/lowcode/common Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 3
3
# Copyright (c) 2023, 2024 Oracle and/or its affiliates.
4
4
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
5
5
6
- import re
7
6
from abc import ABC
8
7
9
8
import pandas as pd
@@ -98,8 +97,8 @@ def run(self, data):
98
97
def _remove_trailing_whitespace (self , df ):
99
98
return df .apply (lambda x : x .str .strip () if x .dtype == "object" else x )
100
99
101
- def _normalize_column_names (self , df ):
102
- return df .rename (columns = lambda x : re .sub ("[^A-Za-z0-9_]+" , "" , x ))
100
+ # def _normalize_column_names(self, df):
101
+ # return df.rename(columns=lambda x: re.sub("[^A-Za-z0-9_]+", "", x))
103
102
104
103
def _set_series_id_column (self , df ):
105
104
self ._target_category_columns_map = {}
You can’t perform that action at this time.
0 commit comments