Pandas 係列是帶有軸標簽的一維ndarray。標簽不必是唯一的,但必須是可哈希的類型。該對象同時支持基於整數和基於標簽的索引,並提供了許多方法來執行涉及索引的操作。
Pandas Series.to_clipboard()
函數將對象複製到係統剪貼板。它將對象的文本表示形式寫入係統剪貼板。也可以將其粘貼到Excel中。
用法: Series.to_clipboard(excel=True, sep=None, **kwargs)
參數:
excel:布爾值,默認為True
sep:str,默認為“ \ t”
** kwargs:這些參數將傳遞到DataFrame.to_csv。
返回:沒有
範例1:采用Series.to_clipboard()
函數將給定的Series對象複製到係統剪貼板。
# importing pandas as pd
import pandas as pd
# Creating the Series
sr = pd.Series(['New York', 'Chicago', 'Toronto', 'Lisbon', 'Rio', 'Moscow'])
# Create the Datetime Index
didx = pd.DatetimeIndex(start ='2014-08-01 10:00', freq ='W',
periods = 6, tz = 'Europe/Berlin')
# set the index
sr.index = didx
# Print the series
print(sr)
輸出:
現在我們將使用Series.to_clipboard()
函數將給定的係列對象複製到係統剪貼板。
# copy to clipboard
sr.to_clipboard()
輸出:
執行完最後一行代碼後,我們隻需將複製的內容粘貼到Notepad ++中的係統剪貼板中即可。這就是它的樣子。
範例2:采用Series.to_clipboard()
函數將給定的Series對象複製到係統剪貼板。
# importing pandas as pd
import pandas as pd
# Creating the Series
sr = pd.Series([19.5, 16.8, None, 22.78, None, 20.124, None, 18.1002, None])
# Print the series
print(sr)
輸出:
現在我們將使用Series.to_clipboard()
函數將給定的係列對象複製到係統剪貼板。
# copy to clipboard
sr.to_clipboard()
輸出:
執行完最後一行代碼後,我們隻需將複製的內容粘貼到Notepad ++中的係統剪貼板中即可。這就是它的樣子。請注意,缺失值是如何表示為空白的。
相關用法
- Python pandas.map()用法及代碼示例
- Python Pandas.pivot_table()用法及代碼示例
- Python Pandas Timestamp.now用法及代碼示例
- Python Pandas.pivot()用法及代碼示例
- Python Pandas.melt()用法及代碼示例
- Python Pandas Timestamp.dst用法及代碼示例
- Python Pandas Index.max()用法及代碼示例
- Python Pandas.CategoricalDtype()用法及代碼示例
- Python Pandas Index.all()用法及代碼示例
- Python Pandas Index.any()用法及代碼示例
- Python Pandas Timestamp.tz用法及代碼示例
- Python Pandas Timestamp.second用法及代碼示例
- Python Pandas Series.mul()用法及代碼示例
- Python Pandas Series.div()用法及代碼示例
- Python Pandas Series.pow()用法及代碼示例
注:本文由純淨天空篩選整理自Shubham__Ranjan大神的英文原創作品 Python | Pandas Series.to_clipboard()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。