Để trả về đối tượng Giai đoạn dưới dạng dấu thời gian với tần suất hàng tháng, hãy sử dụng period.to_timestamp () và đặt tham số freq là ‘ T '.
Đầu tiên, hãy nhập các thư viện được yêu cầu -
import pandas as pd
Con gấu trúc.Period đại diện cho một khoảng thời gian. Tạo đối tượng Dấu chấm
period = pd.Period(freq="S", year = 2021, month = 11, day = 26, hour = 11, minute = 45, second = 55)
Hiển thị đối tượng Dấu chấm
print("Period...\n", period)
Trả về biểu diễn Dấu thời gian của đối tượng Giai đoạn. Chúng tôi đã đặt tần suất bằng cách sử dụng tham số "freq". Tần suất được đặt là 'T' tức là nhỏ nhất
print("\nPeriod to Timestamp with minutely frequency...\n", period.to_timestamp(freq='T'))
Ví dụ
Sau đây là mã
import pandas as pd # The pandas.Period represents a period of time # Creating a Period object period = pd.Period(freq="S", year = 2021, month = 11, day = 26, hour = 11, minute = 45, second = 55) # display the Period object print("Period...\n", period) # Return the Timestamp representation of the Period object # We have set the frequency using the "freq" parameter # The frequency is set as 'T' i.e. monthly print("\nPeriod to Timestamp with minutely frequency...\n", period.to_timestamp(freq='T'))
Đầu ra
Điều này sẽ tạo ra mã sau
Period... 2021-11-26 11:45:55 Period to Timestamp with minutely frequency... 2021-11-26 11:45:00