(Python) Pandas的loc與iloc用法

在 Python 中,Pandas 是一個廣泛用於資料操作和分析的套件。

其中,loc 和 iloc 是兩個關鍵的索引方法,用於選擇 Pandas DataFrame 或 Series 中的特定資料。

本文將介紹這兩種方法的基本使用和區別。

繼續閱讀

(Pandas) 如何取得DataFrame資訊及大小等資訊(number of rows, columns, elements)

本文說明如何取得DataFrame行數、列數、大小、及其他相資訊(number of rows, columns, elements)。

首先建立一個DataFrame,下面各方法都以此DataFrame做範例:

1
2
3
4
5
6
7
8
9
10
11
>>> import pandas as pd 
>>> df = pd.DataFrame({
'col1': [1, 2],
'col2': ['VAL1', 'VAL2'],
'col3': [5.555, 6.666],
'col4': [None, 4]
})
>>> print(df)
col1 col2 col3 col4
0 1 VAL1 5.555 NaN
1 2 VAL2 6.666 4.0
繼續閱讀