I have a DataFrame sy_wx as below:
And I wish to drop any row with minutes not equal to zero to look like.
Using
sy_wx = sy_wx[sy_wx['time_utc'].minute == 0]
gives AttributeError: 'Series' object has no attribute 'minute' error
but
In [50]: sy_wx['time_utc'][1].minute
Out[50]: 30
Where am I going wrong?