Answers for "get 1 row from dataframe based on condition"

4

fetch row where column is equal to a value pandas

df.loc[df['column_name'] == 'value']
Posted by: Guest on May-02-2020
1

slice dataframe pandas based on condition

# To slice pandas dataframe by condition

frioMurteira = data.loc[(data["POM"] == "Murteira") & (data["TMP"] > 7.2), ["DTM","TMP"]]
Posted by: Guest on May-31-2020

Code answers related to "get 1 row from dataframe based on condition"

Python Answers by Framework

Browse Popular Code Answers by Language