otp.Second#
- Second(n)#
onetick.py object representing Second datetime offset. Can be added to or subtracted from:
otp.datetime
objectsSource
columns of datetime type
- Parameters
n (int, otp.Column) – offset integer value or column of otp.Source
Examples
Add to or subtract from otp.datetime object:
>>> otp.datetime(2012, 12, 12, 12) + otp.Second(1) 2012-12-12 12:00:01 >>> otp.datetime(2012, 12, 12, 12) - otp.Second(1) 2012-12-12 11:59:59
Use offset in columns:
>>> t = otp.Tick(A=1) >>> t['T'] = otp.datetime(2012, 12, 12, 12) >>> t['T'] += otp.Second(t['A']) >>> otp.run(t) Time T A 0 2003-12-01 2012-12-12 12:00:01 1