用法:
DataFrame.to_clipboard(excel=True, sep=None, **kwargs)
将对象复制到系统剪贴板。
将对象的文本表示写入系统剪贴板。例如,这可以粘贴到 Excel 中。
- excel:布尔值,默认为真
以 csv 格式生成输出,以便轻松粘贴到 Excel 中。
没错,使用提供的分隔符进行 csv 粘贴。
False,将对象的字符串表示形式写入剪贴板。
- sep:
str,默认
'\t'
字段分隔符。
- **kwargs:
这些参数将被传递给 DataFrame.to_csv。
参数:
注意:
对您的平台的要求。
Linux:
xclip
, orxsel
(withPyQt4
modules)Windows:none
macOS:none
例子:
将 DataFrame 的内容复制到剪贴板。
>>> df = pd.DataFrame([[1, 2, 3], [4, 5, 6]], columns=['A', 'B', 'C'])
>>> df.to_clipboard(sep=',') ... # Wrote the following to the system clipboard: ... # ,A,B,C ... # 0,1,2,3 ... # 1,4,5,6
我们可以通过传递关键字
index
并将其设置为 false 来省略索引。>>> df.to_clipboard(sep=',', index=False) ... # Wrote the following to the system clipboard: ... # A,B,C ... # 1,2,3 ... # 4,5,6
相关用法
- Python pandas.DataFrame.to_csv用法及代码示例
- Python pandas.DataFrame.to_numpy用法及代码示例
- Python pandas.DataFrame.to_json用法及代码示例
- Python pandas.DataFrame.to_markdown用法及代码示例
- Python pandas.DataFrame.to_sql用法及代码示例
- Python pandas.DataFrame.to_xml用法及代码示例
- Python pandas.DataFrame.to_latex用法及代码示例
- Python pandas.DataFrame.to_pickle用法及代码示例
- Python pandas.DataFrame.to_string用法及代码示例
- Python pandas.DataFrame.to_dict用法及代码示例
- Python pandas.DataFrame.to_hdf用法及代码示例
- Python pandas.DataFrame.to_excel用法及代码示例
- Python pandas.DataFrame.to_records用法及代码示例
- Python pandas.DataFrame.to_stata用法及代码示例
- Python pandas.DataFrame.to_parquet用法及代码示例
- Python pandas.DataFrame.to_xarray用法及代码示例
- Python pandas.DataFrame.to_period用法及代码示例
- Python pandas.DataFrame.truncate用法及代码示例
- Python pandas.DataFrame.transpose用法及代码示例
- Python pandas.DataFrame.transform用法及代码示例
注:本文由纯净天空筛选整理自pandas.pydata.org大神的英文原创作品 pandas.DataFrame.to_clipboard。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。