I would like to apply mutiply keyword filter for filtering down on columns.I tried this code:
df = df.filter(regex='AMP','amp','date')
Error I get :
df = df.filter(regex='AMP','amp','date')
^
SyntaxError: positional argument follows keyword argument.
Basically,I want all the columns with these keywords contained in their column name. Thank you in advance