I have a pandas dataframe with a multiindex (module_id, id). I'm trying to select all row less than or equal to 2.2 (module_id.id)
calculated
module_id id
1 1 False
2 False
3 False
2 1 True
2 True
3 True
How would you do this?