I have the following data frame:
In [11]: import pandas as pd In [12]: mydict = {'foo':[0, 0.3], 'bar':[1,0.55], 'qux': [0.3,4.1]} In [13]: df = pd.DataFrame.from_dict(mydict, orient='index') In [14]: df Out[14]: 0 1 qux 0.3 4.10 foo 0.0 0.30 bar 1.0 0.55
What I want to do is replace all values ββthat are less than 1 with 0. Conceding:
0 1 qux 0 4.10 foo 0 0 bar 1.0 0
How can i achieve this?
source share