Python之Series 學習
pandas 是基於 Numpy 構建的含有更高階資料結構和工具的資料分析包
類似於 Numpy 的核心是 ndarray,pandas 也是圍繞著 Series 和 DataFrame 兩個核心資料結構展開的 。Series 和 DataFrame 分別對應於一維的序列和二維的表結構。pandas 約定俗成的匯入方法如下:
from pandas import Series,DataFrame
import pandas as pd
介紹pandas裡面比較重要的兩個資料結構Series,DataFrame
Series資料結構的定義和獲取,更改以及刪除
from pandas import Series,DataFrame
import pandas as pd
s = Series([1,2,3.0,'abc'])
print('獲取資料',s)
print('第一個資料',s[0])
s[3]='liusen'
print('更新後的資料',s)
del s[3]
print('刪除最後一行資料',s)
實驗結果如下:
獲取資料 0 1
1 2
2 3
3 abc
dtype: object
第一個資料 1
更新後的資料 0 1
1 2
2 3
3 liusen
dtype: object
刪除最後一行資料 0 1
1 2
2 3
dtype: object
相關文章
- pandas 學習(1): pandas 資料結構之Series資料結構
- 【pandas學習筆記】Series筆記
- Python學習之模組Python
- Python之numpy學習Python
- python之pandas學習Python
- 【python】python 模組學習之--FabricPython
- 【python】python 模組學習之--pexpectPython
- Python學習之共享引用Python
- Python 學習之元組Python
- Python學習之set集合Python
- python學習之運算子Python
- python學習之數字Python
- Python學習之函式Python函式
- Python學習之常用模組Python
- Python學習之正則Python
- python學習之argparse模組Python
- async原始碼之series原始碼
- Python學習筆記|Python之程式Python筆記
- python學習之訊號量Python
- Python學習之 datetime模組Python
- Python學習之引數(一)Python
- Python學習之zip函式Python函式
- Python學習之模組與包Python
- Python 學習之元組列表Python
- pandas學習之Python基礎Python
- python庫學習之Requests(二)Python
- Python學習筆記之序列Python筆記
- Python學習筆記|Python之yield理解Python筆記
- Python學習筆記|Python之索引迭代Python筆記索引
- Python學習筆記|Python之特殊方法Python筆記
- Python學習系列之學Python需要什麼軟體?Python
- Python學習之迭代器協議Python協議
- Python學習之資料型別Python資料型別
- python基礎學習之 特徵工程Python特徵工程
- Python基礎學習之迴圈Python
- python學習之讀寫檔案Python
- python學習之變數型別Python變數型別
- (十七)Python學習之檔案操作Python