Are the following two items equivalent?
df['studio'] == df.studio
I thought that it would return a True/False
based on a comparison of the entire object, but when doing this, it seems to return another pd.Series
with a bunch of True/False
values so it's hard (for me at least) to tell if the two items are the same thing or not.
If they are the same, is one notation preferred over another? If they are not, how are the two different?