Skip to content
Advertisement

Create new column with conditions in Pandas

I have two dataframes which are:

JavaScript
JavaScript

The first dataframe could be created with the Python code:

JavaScript

and the second dataframe:

JavaScript

I want to create a second column in the first dataframe and the value of each Date in the new column will be the value of the first Date in the second dataframe equal to or earlier than the Date in the first dataframe.

So, the output is:

JavaScript

Also, it is my priority not to use any for-loops for the code.

How can I do this?

Advertisement

Answer

pd.merge_asof should suffice for this

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