Posts by Pedro • 11 points
2 posts
-
0
votes1
answer65
viewsQ: How to use indices of two arrays to form a third array?
Basically what I want to do is C[i][j] = B[A[i][j]][i]. In the case A and B are 2 arrays 5x5. A formula é C[i,j] = B[A[i][j]][i] that is, C is the value of B[X][i], where X is the value of A[i][j].…
-
1
votes1
answer6608
viewsQ: Add column to a dataframe based on the classification made on another dataframe
Greetings! I have two dataframes. Both have columns that determine intervals, with maximum and minimum numbers. In each dataframe the classification of each range is done in one way. I wanted to…