Python|熊猫 dataframe.to_clipboard()
Python是一种用于进行数据分析的出色语言,主要是因为以数据为中心的Python包的奇妙生态系统。 Pandas就是其中之一,它使导入和分析数据变得更加容易。
Pandas dataframe.to_clipboard()
函数将对象复制到系统剪贴板。此函数将对象的文本表示写入系统剪贴板。这可以很容易地粘贴到 excel 或 notepad++ 中。
Syntax: DataFrame.to_clipboard(excel=True, sep=None, **kwargs)
Parameters :
excel : True, use the provided separator, writing in a csv format for allowing easy pasting into excel. False, write a string representation of the object to the clipboard.
sep : Field delimiter.
**kwargs : These parameters will be passed to DataFrame.to_csv.
注意:有关代码中使用的 CSV 文件的链接,请单击此处
示例 #1:使用to_clipboard()
函数将对象以非 excel 格式复制到剪贴板。
# importing pandas as pd
import pandas as pd
# Creating the dataframe
df = pd.read_csv('nba.csv')
# Print the dataframe
df
输出 :
现在我们将这个对象以非 excel 格式复制到剪贴板。
# copy to clipboard
df.to_clipboard(excel = False, sep = ', ')
输出 :
我们只是粘贴了执行上一个命令后复制到剪贴板的内容。使用的软件是“记事本++”。示例 #2:使用to_clipboard()
函数将对象以 excel 格式复制到剪贴板。
# importing pandas as pd
import pandas as pd
# Creating the dataframe
df = pd.read_csv('nba.csv')
# Print the dataframe
df
输出 :
现在我们将这个对象以 excel 格式复制到剪贴板。
# copy to clipboard
df.to_clipboard(excel = True)
输出 :