我需要將用數(shù)據(jù)框制作的數(shù)據(jù)透視表放在 googlesheet 中。當(dāng)我嘗試在 jupyter 中運(yùn)行它時(shí),它應(yīng)該顯示:但是當(dāng)我將數(shù)據(jù)導(dǎo)出到 googlesheet 時(shí),索引標(biāo)題丟失,如下圖所示:這是我的代碼的一部分,負(fù)責(zé)創(chuàng)建數(shù)據(jù)框并將其導(dǎo)出到 googlesheet 中。我正在使用 pygsheets 庫(kù)來(lái)訪問(wèn) googlesheets。df1 = wks.get_as_df()df1 = df1.apply(pd.to_numeric, errors='ignore')df2 = pd.pivot_table(df1, index =['SSPU','Color'], columns = "Size",values='US 全庫(kù)存',fill_value=0, aggfunc = sum, margins=True)print(df2)我檢查了很多教程,但沒(méi)有找到解決方案。
將 pandas DataFrame 導(dǎo)出到 googsheet 時(shí)索引標(biāo)頭丟失
鴻蒙傳說(shuō)
2022-12-27 10:11:26