如何获取 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

结果是一系列 pandas:

 #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 中的条件创建新列

添加评论

您的电子邮箱地址不会被公开。 必填项已用*标注