I have dataframe cannot show the whole data(confidential) which have a longitudes & latitudes points all around the world but I need to filter for just one country
suppose this is data
Now I have to filter rows data for a specific country which have co-ordinates ranges this
`latitude` : 8°4′ N to 37°6′ N
`longitude` : 68°7′ E to 97°25′ E
so I tried this
df_filtered = df[38 > df['LATITUDE'] > 8 and 98 > df['LATITUDE'] > 68]
but this is giving this weird error
ValueError: The truth value of a Series is ambiguous. Use a.empty, a.bool(), a.item(), a.any() or a.all().