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

Python Pandas - แสดงค่าของพารามิเตอร์หยุดของ RangeIndex


ในการแสดงค่าของพารามิเตอร์หยุดของ RangeIndex ให้ใช้ index.stop ทรัพย์สินในหมีแพนด้า

ขั้นแรก นำเข้าไลบรารีที่จำเป็น -

import pandas as pd

RangeIndex เป็นกรณีพิเศษที่ช่วยประหยัดหน่วยความจำของ Int64Index ซึ่งจำกัดการแสดงช่วงแบบโมโนโทนิก สร้างดัชนีช่วงด้วยการเริ่ม หยุด และขั้นตอน ชื่อเป็นชื่อที่จะเก็บไว้ในดัชนี

index = pd.RangeIndex(start=5, stop=20, step=2, name="data")

แสดง RangeIndex -

print("RangeIndex...\n",index)

แสดงค่าพารามิเตอร์หยุด -

print("\nRangeIndex stop value...\n",index.stop)

ตัวอย่าง

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

import pandas as pd

# RangeIndex is a memory-saving special case of Int64Index limited to representing monotonic ranges.
# Using RangeIndex may in some instances improve computing speed.
# Create a range index with start, stop and step
# The name is the name to be stored in the index.
index = pd.RangeIndex(start=10, stop=30, step=2, name="data")

# Display the RangeIndex
print("RangeIndex...\n",index)

# Display the stop parameter value
print("\nRangeIndex stop value...\n",index.stop)

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

RangeIndex...
RangeIndex(start=10, stop=30, step=2,name='data')

RangeIndex stop value...
30