I want to open a file, filter its data, and show it to the user.
Here is the code:
import pandas as pd
df = pd.read_csv(<file path>)
data = df["Unique Number"] == UID # Unique Number is a column and UID is a Variable
print(data)
And I get a warning (maybe an error)
FutureWarning: elementwise comparison failed; returning scalar instead, but in the future will perform elementwise comparison
res_values = method(rvalues)
Any help?