Reputation: 2273
I have the following df :
A B C
A A A*B A*C
B A*B B B*C
C A*C B*C C
I have on ther side a dfs with the values:
df0:
A*B 3
A*C 4
B*C 2
df1:
A 2
B 8
C 3
Is there anyway I can substitute the values of the dataframe by the corresponding numerical values?
Upvotes: 1
Views: 69