Идея состоит в том, чтобы создать новую серию для даты начала и окончания с датами по столбцам даты и времени, использовать numpy.minimum
и numpy.maximum
, вычесть, преобразовать таймдельты в Series.dt.total_seconds
и кратно 1000
:
s = (df['first_ts'].dt.strftime('%Y-%m-%d ') +
df['start_hour'].astype(str) + ':' +
df['start_minute'].astype(str))
e = (df['last_ts'].dt.strftime('%Y-%m-%d ') +
df['end_hour'].astype(str) + ':' +
df['end_minute'].astype(str))
s = pd.to_datetime(s, format='%Y-%m-%d %H:%M')
e = pd.to_datetime(e, format='%Y-%m-%d %H:%M')
df['inter'] = ((np.minimum(e, df['last_ts']) -
np.maximum(s, df['first_ts'])).dt.total_seconds() * 1000)
print (df)
first_ts last_ts start_hour start_minute \
0 2020-01-25 07:30:25.435 2020-01-25 07:30:25.718 7 0
1 2020-01-25 07:25:00.000 2020-01-25 07:25:00.000 7 0
end_hour end_minute inter
0 8 0 283.0
1 8 0 0.0
Другая идея - использовать только np.minumum
:
df['inter'] = (np.minimum(df['last_ts'] - df['first_ts'], e - s).dt.total_seconds() * 1000)
print (df)
first_ts last_ts start_hour start_minute \
0 2020-01-25 07:30:25.435 2020-01-25 07:30:25.718 7 0
1 2020-01-25 07:25:00.000 2020-01-25 07:25:00.000 7 0
end_hour end_minute inter
0 8 0 283.0
1 8 0 0.0