python中loc是什麼
loc中的資料是列名,是字串,所以前後都要取;iloc中資料是int整型,所以是Python預設的前閉後開
loc函式
構建資料集df
import pandas as pd df = pd.DataFrame([ ['green', 'M', 10.1, 'class1'], ['red', 'L', 13.5, 'class2'], ['blue', 'XL', 15.3, 'class1']]) print (df) # 資料集為以下內容,所有操作均對df進行 0 1 2 3 0 green M 10.1 class1 1 red L 13.5 class2 2 blue XL 15.3 class1
loc函式主要透過行標籤索引行資料,劃重點,標籤!標籤!標籤!
loc[1] 選擇行標籤是1的(從0、1、2、3這幾個行標籤中)
In[1]: df.loc[1] Out[1]: 0 red 1 L 2 13.5 3 class2
推薦學習《》。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/756/viewspace-2834827/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- python中的input是什麼Python
- python中的字典是什麼Python
- python中return是什麼意思?Python
- python中mat是什麼意思?Python
- python中global是什麼意思?Python
- Python中什麼是閉包?閉包的好處是什麼?Python
- Python中的mechanize模組是什麼?Python
- python中collections.Counter是什麼?Python
- python中flake8是什麼Python
- Python中的作用域是什麼Python
- python中Matplotlib是什麼?怎麼用?Python
- Python中的arange是什麼?和range有什麼不同?Python
- Python中模組是什麼?Python有哪些模組?Python
- 什麼是python?python有什麼用途?Python
- Python中的類和物件是什麼Python物件
- python OpenCV中的閾值是什麼PythonOpenCV
- python中h5py是什麼?PythonH5
- Python中的rad是什麼意思?Python
- Python 中的 *args 和 **kwargs 是什麼Python
- 什麼是PythonPython
- Python是什麼?為什麼要掌握python?Python
- Python是什麼意思?Python有什麼用?Python
- python中類方法的區別是什麼Python
- python中的name等於main是什麼PythonAI
- python中upper函式的用法是什麼?Python函式
- 在python中什麼是私有變數域Python變數
- python中Roberts運算元是什麼Python
- Python中的“特權種族”是什麼?Python
- Python 中的數字到底是什麼?Python
- Python中eval函式是什麼?如何使用?Python函式
- Python是什麼語言?Python底層語言是什麼?Python
- 什麼是Python?Python為什麼這麼搶手?Python
- python arange是什麼Python
- python字典是什麼Python
- python re是什麼?Python
- python是什麼蛇Python
- python title是什麼Python
- python 是什麼意思Python