I want to filter a column in a dataframe which is weather condition line rainy, clear... and contains characters.
` min1$Rainy <- filter(min1$Conditions == "Light Rain")`
I tried the codes above but I faced to this error:
Error in UseMethod("filter_") : no applicable method for 'filter_' applied to an object of class
"logical"
How can I solve it? Appreciate for your time.