I have a series values and I want to print 'Bigger' for each value bigger than zero
if(ser > 0)
print 'Bigger'
python gives me the error:
ValueError: The truth value of a Series is ambiguous. Use a.empty, a.bool(), a.item(), a.any() or a.all().