Could someone please explain to me why the output complete changes when you forget the (), i.e this is the correct minimum:
data['PRICE'].min()
5.0
...and this is the output when you forget to use parentheses. How could this be interpretted?
data['PRICE'].min
<bound method Series.min of 0      24.0
1      21.6
2      34.7
3      33.4
4      36.2
       ... 
501    22.4
502    20.6
503    23.9
504    22.0
505    11.9
Name: PRICE, Length: 506, dtype: float64>

 
     
    