feat(preprocessing): 添加数据预处理示例脚本

- 添加多个数据预处理示例脚本,包括离散化、去重、缺失值处理、插值、标准化等
- 新增 CheckNULL、Interpolation、Merge 等实用工具脚本
- 提供了不同的标准化方法示例,如标准差标准化、离差标准化、小数定标标准化
This commit is contained in:
fly6516 2025-03-30 02:56:44 +08:00
parent 3f2ae8adf5
commit cb6026f663

5
Read-2.py Normal file
View File

@ -0,0 +1,5 @@
import pandas as pd
ele_loss=pd.read_csv("5Preprocessing/ele_loss.csv")
alarm=pd.read_csv("5Preprocessing/alarm.csv", encoding='gbk')
print("ele_loss 表的形状为",ele_loss.shape)
print("alarm 表的形状为",alarm.shape)