I want to filter a DataFrame on multiple values from different columns. I wrote the following code, but it's giving me an error, ERROR: TypeError: non-boolean (BitArray{1}) used in boolean context.
df[((df.eruption .== "CC2011") && (df.dataset .== "MODIS.NDVI.CDI")), :]
Where eruption and dataset are columns in the dataframe
Any ideas what I am doing incorrectly?