Pandas dataframe の最初の列を取得する方法 (例あり)
次の構文を使用して、pandas DataFrame の最初の列を取得できます。
df. iloc [:, 0]
その結果、一連のパンダが生成されます。結果を pandas DataFrame にしたい場合は、次の構文を使用できます。
df. iloc [:, :1]
次の例は、この構文を実際に使用する方法を示しています。
例 1: Pandas DataFrame から最初の列を取得する(系列を返す)
次のコードは、pandas DataFrame の最初の列を取得する方法を示しています。
import pandas as pd #createDataFrame df = pd. DataFrame ({' points ': [25, 12, 15, 14, 19, 23, 25, 29], ' assists ': [5, 7, 7, 9, 12, 9, 9, 4], ' rebounds ': [11, 8, 10, 6, 6, 5, 9, 12]}) #view DataFrame print (df) points assists rebounds 0 25 5 11 1 12 7 8 2 15 7 10 3 14 9 6 4 19 12 6 5 23 9 5 6 25 9 9 7 29 4 12 #get first column first_col = df. iloc [:, 0] #view first column print (first_col) 0 25 1 12 2 15 3 14 4 19 5 23 6 25 7 29 Name: points, dtype: int64
結果は一連のパンダです。
#check type of first_col print ( type (first_col)) <class 'pandas.core.series.Series'>
例 2: Pandas DataFrame の最初の列を取得する (DataFrame を返す)
次のコードは、pandas DataFrame の最初の列を取得し、それに応じて DataFrame を返す方法を示しています。
#get first column (and return a DataFrame) first_col = df. iloc [:, :1] #view first column print (first_col) points 0 25 1 12 2 15 3 14 4 19 5 23 6 25 7 29 #check type of first_col print ( type (first_col)) <class 'pandas.core.frame.DataFrame'>
追加リソース
Pandas DataFrame に列を追加する方法
Pandas DataFrame に列を挿入する方法
Pandas で条件に基づいて新しい列を作成する方法