How do you flatten two columns in pandas dataframes?
e.g
Task 1 : company-asset company-debt wealth GOLD SILVER 2000.0 BRONZE IRON 4000.0 IRON GOLD 1500.0 Now I want (where asset is + and debt is negative)
GOLD SILVER BRONZE IRON 500 -2000 4000 -2500 Task 2: Now i want to get the original dataframe with rows where value of the columns in dataframe 2 is greater than -1000 and less than +1000. So in the case above it will only be GOLD therefore we get this DF company-asset company-debt wealth GOLD SILVER 2000.0 IRON GOLD 1500.0