我正在尝试使用gspread_data包将熊猫数据框写入Google工作表。添加include_index = True应该向表中添加一个额外的列,其中包含来自数据框的索引,但不会为我添加它。 我的代码:
from gspread_dataframe import get_as_dataframe, set_with_dataframe
df=pd.read_csv(r'C:\Users\Laila\Desktop\rawData18Sheet.csv',thousands=',',
index_col='Client',parse_dates=True,encoding = "ISO-8859-1",usecols=columns)
test_sheet = client.open("2018 Raw Data").worksheet("test_sheet")
set_with_dataframe(test_sheet, df,resize=True,
include_index=True)
当我从csv读取数据帧时,我确实设置了索引,并使用df.index.values拉出索引,从而在Google工作表的索引中获得了所需的值。