pandas.PeriodIndex.start_time#

propertyPeriodIndex.start_time[source] #

Get the Timestamp for the start of the period.

Returns:
Timestamp

See also

Period.end_time

Return the end Timestamp.

Period.dayofyear

Return the day of year.

Period.daysinmonth

Return the days in that month.

Period.dayofweek

Return the day of the week.

Examples

>>> period = pd.Period('2012年1月1日', freq='D')
>>> period
Period('2012年01月01日', 'D')
>>> period.start_time
Timestamp('2012年01月01日 00:00:00')
>>> period.end_time
Timestamp('2012年01月01日 23:59:59.999999999')