close_all = pd.pivot(df, index="datetime", columns="htsc_code", values=["close"])
时间: 2023-11-07 18:41:58 浏览: 95
df.rank & pd.pivot_table & pd.read_excel & df添加行 &调整df行列顺序(reindex再理解)
这行代码使用了 Pandas 的 pivot 方法,将 DataFrame df 中的数据按照 datetime 和 htsc_code 进行重塑,其中 datetime 作为行索引,htsc_code 作为列索引,close 列的值被放入新的 DataFrame 中的对应位置。最终生成的 DataFrame 名称为 close_all。
阅读全文