Seen on Stack Overflow:
"In order to combine Boolean indices, you need to surround them with parentheses and use the bitwise operators &, |, or ~." (note syntax):
So: allUS = filtered_df.loc[(filtered_df['Unitedstateswest']==1) | (filtered_df['Unitedstateseast'] == 1)]