Answers for "slice panda dataframe by condition"

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 "slice panda dataframe by condition"

Python Answers by Framework

Browse Popular Code Answers by Language