How to get the difference between two DataFrames. For example, I have 2 DataFrames
previous_asks = pd.DataFrame({'price':[1,2,3], 'amount':[10,20,30]})
current_asks = pd.DataFrame({'price':[1,2,3,4], 'amount':[11,20,30,40]})
I would like to receive
price':[1, 4], 'amount':[11,40]