📜  panda - 基于列值的子集 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:43.017000             🧑  作者: Mango

代码示例2
# does year equals to 2002?
# is_2002 is a boolean variable with True or False in it
>is_2002 =  gapminder['year']==2002
>print(is_2002.head())
0    False
1    False
2    False
3    False
4    False
# filter rows for year 2002 using  the boolean variable
>gapminder_2002 = gapminder[is_2002]
>print(gapminder_2002.shape)
(142, 6)