我正在使用https://github.com/robin900/gspread-dataframe中的set_with_dataframe将数据帧写入Google表格。
我正在迭代地写入工作表,并尝试不包括标题。但是,当include_column_header
设置为False
时,每次都包含标头。
set_with_dataframe(worksheet,df,row=next_available,col=1,include_index=False,include_column_header=False)
这意味着当我迭代编写时,列标题在每次迭代中都会重复。
如何在不包含标题的情况下从数据框中写入Google工作表?
我刚刚在我这边对其进行了测试:
[set_with_dataframe(sheet,df,include_column_header=False)
不会将标题写入工作表。