Pandas dataframe の最初の行を取得する方法 (例あり)


次のメソッドを使用して、pandas DataFrame の最初の行を取得できます。

方法 1: DataFrame の最初の行を取得する

 df. iloc [0]

方法 2: 特定の列の DataFrame の最初の行を取得する

 df[[' column1 ', ' column2 ']]. iloc [0]

次の例は、次の 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
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

例 1: Pandas DataFrame の最初の行を取得する

次のコードは、pandas DataFrame の最初の行を取得する方法を示しています。

 #get first row of DataFrame
df. iloc [0]

points 25
assists 5
rebounds 11
Name: 0, dtype: int64

DataFrame の各列の最初の行の値が返されることに注意してください。

例 2: 特定の列の Pandas DataFrame の最初の行を取得する

次のコードは、ポイント列バウンス列のみのパンダ データフレームの最初の行の値を取得する方法を示しています。

 #get first row of values for points and rebounds columns
df[[' points ', ' rebounds ']]. iloc [0]

points 25
rebounds 11
Name: 0, dtype: int64

ポイント列リバウンド列の最初の行の値が返されることに注意してください。

追加リソース

次のチュートリアルでは、パンダで他の一般的なタスクを実行する方法を説明します。

Pandas DataFrame から最初の列を取得する方法
Pandas DataFrame に行を追加する方法
Pandas DataFrame の行数をカウントする方法

コメントを追加する

メールアドレスが公開されることはありません。 が付いている欄は必須項目です