কম্পিউটার

Python Pandas - ডান দিকে একটি ইন্টারভাল বন্ধ আছে কিনা তা পরীক্ষা করুন


বাম দিকে একটি ইন্টারভাল বন্ধ আছে কিনা তা পরীক্ষা করতে, interval.closed_right ব্যবহার করুন সম্পত্তি প্রথমে, প্রয়োজনীয় লাইব্রেরিগুলি আমদানি করুন -

import pandas as pd

"ডান" মান সহ "বন্ধ" প্যারামিটার ব্যবহার করে ব্যবধান সেট করা হয়, যেমন [0, 5) 0

interval = pd.Interval(left=0, right=20, closed='right')

ব্যবধান প্রদর্শন করুন

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

ব্যবধানটি ডানদিকে বন্ধ আছে কিনা তা পরীক্ষা করুন

print("\nChecking whether the Interval is closed on the right...\n", interval.closed_right)

উদাহরণ

নিম্নলিখিত কোড

import pandas as pd

# Interval set using the "closed" parameter with value "right"
# i.e. [0, 5) is described by 0 < x <= 5 when closed='right'
interval = pd.Interval(left=0, right=20, closed='right')

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

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

# check whether the interval is closed on the right-side
print("\nChecking whether the Interval is closed on the right...\n", interval.closed_right)

# check for the existence of an element in an Interval
# This shows that closed = right contain only the right-most endpoint
print("\nThe left-most element exists in the Interval? = \n",0 in interval)
print("\nThe right-most element exists in the Interval? = \n",20 in interval)

আউটপুট

এটি নিম্নলিখিত কোড তৈরি করবে

Interval...
(0, 20]

Interval length...
20

Checking whether the Interval is closed on the right...
True


  1. Python Pandas - পান্ডাস সূচক ইন্টারভাল অবজেক্ট ধারণ করে কিনা তা পরীক্ষা করুন

  2. Python Pandas - IntervalArray-এর মধ্যে বিরতিগুলি বাম-পাশে, ডান-পাশে, উভয় বা উভয়ই বন্ধ আছে কিনা তা পরীক্ষা করুন

  3. Python Pandas - একটি সূচী হিসাবে IntervalArray-এ প্রতিটি ব্যবধানের ডান প্রান্তের পয়েন্ট ফেরত দিন

  4. Python Pandas - ব্যবধানের জন্য সঠিক আবদ্ধ পান