ค่าสเกลาร์หรือค่าคงที่ถูกกำหนดเพียงครั้งเดียว และจะมีการทำซ้ำในแถว/รายการทั้งหมดของโครงสร้างข้อมูลชุดข้อมูล ต่อไปนี้เป็นตัวอย่าง −
ตัวอย่าง
import pandas as pd my_index = ['ab', 'mn' ,'gh','kl'] my_series = pd.Series(7, index = my_index) print("This is series data structure created using scalar values and specifying index values") print(my_series)
ผลลัพธ์
This is series data structure created using scalar values and specifying index values ab 7 mn 7 gh 7 kl 7 dtype: int64
คำอธิบาย
- นำเข้าไลบรารีที่จำเป็น และให้นามแฝงเพื่อให้ใช้งานได้ง่าย
- รายการค่าดัชนีถูกสร้างขึ้น
- ค่าคงที่ถูกส่งไปยังฟังก์ชัน 'Series' ที่มีอยู่ในไลบรารี 'pandas'
- นอกจากนี้ รายการดัชนีก็จะถูกส่งต่อด้วย
- จากนั้นจะแสดงบนคอนโซล
หากค่าดัชนีไม่ได้รับการปรับแต่ง ค่าเริ่มต้นที่เริ่มต้นจาก 0 จะถูกนำไปใช้ เนื่องจากระบุค่าคงที่เพียงค่าเดียว จึงจะมีรายการเดียวในโครงสร้างข้อมูลชุดข้อมูล ได้แสดงไว้ด้านล่าง -
ตัวอย่าง
import pandas as pd my_series = pd.Series(7) print("This is series data structure created using scalar values and default index values") print(my_series)
ผลลัพธ์
This is series data structure created using scalar values and default index values 0 7 dtype: int64
คำอธิบาย
-
ไลบรารีที่จำเป็นจะถูกนำเข้าและให้นามแฝงเพื่อให้ใช้งานได้ง่าย
-
ค่าคงที่ถูกส่งไปยังฟังก์ชัน 'Series' ที่มีอยู่ในไลบรารี 'pandas'
-
จากนั้นจะแสดงบนคอนโซล