将 pandas Excel 数据帧复制到没有索引的剪贴板 header
copy pandas Excel Dataframe to clipboard without index header
我有一个 Excel 文件,我必须从那里复制一些数据子集到剪贴板,以便我可以将它粘贴到任何地方。我正在使用 pandas DataFrame.to_clipboard(excel=True, sep=None, **kwargs)
函数,但我不想复制索引 headers。
复制的是这个:
我要复制的只有这个:
你必须为此传递两个参数:index 和 header。
DataFrame.to_clipboard(excel=True, sep=None, index=False, header=None)
我有一个 Excel 文件,我必须从那里复制一些数据子集到剪贴板,以便我可以将它粘贴到任何地方。我正在使用 pandas DataFrame.to_clipboard(excel=True, sep=None, **kwargs)
函数,但我不想复制索引 headers。
复制的是这个:
我要复制的只有这个:
你必须为此传递两个参数:index 和 header。
DataFrame.to_clipboard(excel=True, sep=None, index=False, header=None)