2 커밋 467b4a4186 ... f051a56670

작성자 SHA1 메시지 날짜
  wxz f051a56670 提取表格数据 4 주 전
  wxz 20b4f9896c 提取表格数据 4 주 전
1개의 변경된 파일20개의 추가작업 그리고 0개의 파일을 삭제
  1. 20 0
      data/analyze_data/analyze_xls.py

+ 20 - 0
data/analyze_data/analyze_xls.py

@@ -0,0 +1,20 @@
+import pandas as pd
+
+def readXls(path):
+    # 读取xls文件
+    df = pd.read_excel(path)
+
+    # 分隔
+    df.iloc[:, 0] = df.iloc[:, 0].astype(str).str.split('+')
+    df.iloc[:, 2] = df.iloc[:, 2].astype(str).str.split('/')
+    df.iloc[:, 4] = df.iloc[:, 4].astype(str).str.split('/')
+    df.iloc[:, 6] = df.iloc[:, 6].astype(str).str.split('/')
+
+    # 将DataFrame数据转换为字典列表
+    data_list = df.to_dict('records')
+
+    return data_list
+
+
+
+