I know pandas provide various ways to index data, I wanted to know is there a difference between the following two methods from the perspective of performance i.e. which one is faster or both the same?
# method 1
df = table.loc[table.some_col==True, :]
# method 2
df = table[table.some_col==True]