I have the following column in a dataframe, I would like to add a column to the end of this dataframe, where the column has the business days from today (6/24) to the previous day.
Bday() function does not seem to have this capability.
Date
2019-6-21
2019-6-20
2019-6-14
I am looking for a result that looks like following:
Date         Business days
2019-6-21      1
2019-6-20      2
2019-6-14      6
Is there an easy way to do this, other than doing individual manipulations or using datetime library
 
    