Skip to content
Advertisement

Search for column values in another column and assign a value from the next column from the row found to another column

I am working with Pandas and am trying to populate a column with the values in another column, where another column contains the same value as in a specific column.

Example:

JavaScript

I want to search for each value in StringToCheck inside the CheckStringHere column, and assign the value from the AssociatedValue1 on the row found to the FromNumber column but on the row where the value in StringToCheck is.

I have tried

JavaScript

As you see, the values have been added in FromNumber column, but on the row where the values from StringToCheck were found in CheckStringHere, I need to have

JavaScript

Next, if it is possible to get the values from AssociatedValue2 to ToNumber column simultaneously, it would be a real treat.

P.S.
I am out of ideas what is wrong with this question, I researched and tried a lot of solutions, explained my approach and what did not work. Downvoting questions like this is definitely wrong.

Advertisement

Answer

You can try creating a dictionary from columns ['CheckStringHere','AssociatedValue1'] and replace values from StringToCheck column:

JavaScript

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement