I have the need of using any() method of the data frame. This used to return the first non-empty value in the series but now it returns only true/false value.
>>> df = pd.DataFrame([{"a":"asdfads10", "b":100}, {"a":"10asdfasdf","b":200}])
>>> df['a'].any()
True
Can you help if you have seen any alternative?