🐼pandas基础入门 2025年10月06日 · Data field · 28 分钟阅读 1. pip配置详解全局配置文件位置Windows: %APPDATA%\pip\pip.inimacOS/Linux: ~/.pip/pip.conf推荐配置(清华源)[global] index-url = https://pypi.tuna.tsinghua.edu.cn/simple/ trusted-host = pypi.tuna.tsinghua.edu.cn timeout = 6...
🐼 Pandas 命令手册(Command Reference Guide) 2025年10月03日 · Data field · 18 分钟阅读 “DataFrame 就像 Excel + SQL + Python 的孩子,天生会玩数据。”📦 一、导入与基础import pandas as pd import numpy as np读取文件pd.read_csv('data.csv') # 读取 CSV pd.read_excel('data.xlsx', sheet_name=0) pd.read_...