随笔 - 89
文章 - 43
评论 - 3
阅读 -
39982
12 2021 档案
pandas - day01
摘要:pandas # 设置index 为日期 df.set_index('ymd',inplace=True) # 查看index df.index # 替换温度后面的℃ df.loc[:,'温度列名'] = df['温度列名'].str.replace('℃','').astype('int32')
阅读全文