Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

pandas difference between dates

# credit to Stack Overflow user in the source link
import pandas as pd 
# df is your pandas dataframe
# if already datetime64 you don't need to use to_datetime

df['A'] = pd.to_datetime(df['A'])
df['B'] = pd.to_datetime(df['B']) 

df['diff'] =  df['A'] - df['B'] # difference in days
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #pandas #difference #dates
ADD COMMENT
Topic
Name
9+3 =