“Filtr pandy z daną wartością” Kod odpowiedzi

Filtr pandy z daną wartością

Method 1: Selecting rows of Pandas Dataframe based on particular column value using ‘>’, ‘=’, ‘=’, ‘<=’, ‘!=’ operator.

Example 1: Selecting all the rows from the given Dataframe in which ‘Percentage’ is greater than 75 using [ ].

Python3
# selecting rows based on condition 
rslt_df = dataframe[dataframe['Percentage'] > 70] 
    
print('\nResult dataframe :\n', rslt_df)
InnovateDotAI DS

Pandas filtruje wiersze według wartości

# 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)
Courageous Chamois

Odpowiedzi podobne do “Filtr pandy z daną wartością”

Pytania podobne do “Filtr pandy z daną wartością”

Więcej pokrewnych odpowiedzi na “Filtr pandy z daną wartością” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu