基於python的大資料分析實戰學習筆記-pandas之DataFrame
接著上篇我們繼續進行pandas中的DataFrame,話不多說,直接擼程式碼,裡面有註釋
#dataframe的操作不外乎 增刪改查
from pandas import Series
from pandas import DataFrame
df=DataFrame({'age':Series([18,20,30]),
'name':Series(['x1','x2','x3'])
})
print(df)
'''
訪問列:變數名[列名]
訪問行:變數名[n:m] 訪問n行到m-1行
訪問塊(行和列):變數名.iloc[n1:n2, m1:m2] 訪問n1到n2-1行,m1到m2-1列的資料
訪問指定的位置:變數名.at[行索引,列名]
'''
#訪問列
a=df['age']
print(a)
#訪問行
b=df[1:3]
print(b)
#訪問塊
c=df.iloc[0:4,0:2]
print(c)
#訪問指定的位置
d=df.at[0,'name']
print(d)
#增加列
df['address']=['地球','月球','火星']
print(df)
#刪除列
#del df['address']
#增加行
df.loc[len(df)]=[40, 'x4', '木星']
print(df)
#刪除行,根據行索引
#df.drop(1)
是不是很簡單?只要有python基礎,分分鐘搞定哦
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69942496/viewspace-2655343/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 基於python的大資料分析實戰學習筆記-pandas(資料分析包)Python大資料筆記
- 基於python的大資料分析實戰學習筆記-AnacondaPython大資料筆記
- 【pandas學習筆記】DataFrame筆記
- 基於python的大資料分析-pandas資料儲存(程式碼實戰)Python大資料
- 基於python的大資料分析-pandas資料讀取(程式碼實戰)Python大資料
- Python資料分析 DataFrame 筆記Python筆記
- python-資料分析-Pandas-3、DataFrame-資料重塑Python
- 【Pandas學習筆記01】強大的分析結構化資料的工具集筆記
- 基於python的大資料分析-資料處理(程式碼實戰)Python大資料
- python-資料分析-Pandas-4、DataFrame-資料透視Python
- Python大資料分析學習.Pandas 資料匯入問題 (1)Python大資料
- Python資料分析之pandasPython
- Python資料分析與挖掘實戰筆記Python筆記
- pandas學習之Python基礎Python
- 大資料之 Hadoop學習筆記大資料Hadoop筆記
- (五)numpy知識學習2-python資料分析與機器學習實戰(學習筆記)Python機器學習筆記
- 【Pandas學習筆記02】處理資料實用操作筆記
- Python學習筆記|Python之pycache資料夾Python筆記
- numpy的學習筆記\pandas學習筆記筆記
- Python資料分析之Pandas篇Python
- 【筆記】《Python大戰機器學習》筆記Python機器學習
- python pandas DataFrame-A 更新 DataFrame-B中指定列相同的資料Python
- pandas學習筆記筆記
- Python學習筆記——爬蟲之Scrapy專案實戰Python筆記爬蟲
- Python 3 學習筆記之——資料型別Python筆記資料型別
- Python 資料科學之 PandasPython資料科學
- 大資料學習記錄,Python基礎(3)大資料Python
- 大資料學習記錄,Python基礎(4)大資料Python
- pandas之常用基本函式學習筆記函式筆記
- 學習筆記(30):Python資料清洗實戰-Excel檔案讀寫筆記PythonExcel
- 《Flask Web開發:基於Python的Web應用開發實戰》學習筆記(二)FlaskWebPython筆記
- 讀書筆記(四):深度學習基於Keras的Python實踐筆記深度學習KerasPython
- 【pandas學習筆記】Series筆記
- python學習筆記:資料庫Python筆記資料庫
- 學習筆記(1):Python零基礎入門到實戰-資料科學原理與資料處理流程筆記Python資料科學
- Python - pandas 資料分析Python
- 【Pandas學習筆記02】-資料處理高階用法筆記
- 《Python資料分析與挖掘實戰》-- 讀書筆記(2)-- 2019Python筆記