From cb6026f663ffc6c84d782d403a2a166d2a277ac3 Mon Sep 17 00:00:00 2001 From: fly6516 Date: Sun, 30 Mar 2025 02:56:44 +0800 Subject: [PATCH] =?UTF-8?q?feat(preprocessing):=20=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E9=A2=84=E5=A4=84=E7=90=86=E7=A4=BA=E4=BE=8B?= =?UTF-8?q?=E8=84=9A=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 添加多个数据预处理示例脚本,包括离散化、去重、缺失值处理、插值、标准化等 - 新增 CheckNULL、Interpolation、Merge 等实用工具脚本 - 提供了不同的标准化方法示例,如标准差标准化、离差标准化、小数定标标准化 --- Read-2.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Read-2.py diff --git a/Read-2.py b/Read-2.py new file mode 100644 index 0000000..d06cbdf --- /dev/null +++ b/Read-2.py @@ -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) \ No newline at end of file