Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

Python Pandas - รับขอบซ้ายสำหรับช่วงเวลา


เพื่อให้ได้ขอบด้านซ้ายสำหรับช่วงเวลา ให้ใช้คุณสมบัติ interval.left ขั้นแรก นำเข้าไลบรารีที่จำเป็น -

import pandas as pd

ใช้การประทับเวลาเป็นขอบเขตเพื่อสร้างช่วงเวลา ตั้งค่าช่วงปิดโดยใช้พารามิเตอร์ "ปิด" ที่มีค่า "ซ้าย" รับขอบซ้ายสำหรับช่วงเวลา

interval = pd.Interval(pd.Timestamp('2020-01-01 00:00:00'), pd.Timestamp('2021-01-01 00:00:00'), closed='left')

แสดงช่วงเวลา

print("Interval...\n",interval)

ชิดซ้าย

print("\nThe left bound for the Interval...\n",interval.left)

ตัวอย่าง

ต่อไปนี้เป็นรหัส

import pandas as pd

# Use Timestamps as the bounds to create a time interval
# Closed interval set using the "closed" parameter with value "left"
# Get the left bound for the interval
interval = pd.Interval(pd.Timestamp('2020-01-01 00:00:00'), pd.Timestamp('2021-01-01 00:00:00'), closed='left')

# display the interval
print("Interval...\n",interval)

# display the interval length
print("\nInterval length...\n",interval.length)

# the left bound
print("\nThe left bound for the Interval...\n",interval.left)

ผลลัพธ์

ซึ่งจะได้รหัสดังต่อไปนี้

Interval...
[2020-01-01, 2021-01-01)

Interval length...
366 days 00:00:00

The left bound for the Interval...
2020-01-01 00:00:00