पर्सेंटाइल एक शब्द है जिसका उपयोग आंकड़ों में यह व्यक्त करने के लिए किया जाता है कि एक ही सेट में एक स्कोर की तुलना अन्य स्कोर से कैसे की जाती है। इस कार्यक्रम में, हमें पंडों की श्रृंखला का nवां प्रतिशतक खोजना होगा।
एल्गोरिदम
Step 1: Define a Pandas series. Step 2: Input percentile value. Step 3: Calculate the percentile. Step 4: Print the percentile.
उदाहरण कोड
import pandas as pd series = pd.Series([10,20,30,40,50]) print("Series:\n", series) n = int(input("Enter the percentile you want to calculate: ")) n = n/100 percentile = series.quantile(n) print("The {} percentile of the given series is: {}".format(n*100, percentile))
आउटपुट
Series: 0 10 1 20 2 30 3 40 4 50 dtype: int64 Enter the percentile you want to calculate: 50 The 50.0 percentile of the given series is: 30.0
स्पष्टीकरण
पंडों की लाइब्रेरी में क्वांटाइल फ़ंक्शन केवल 0 और 1 के बीच के मान को पैरामीटर के रूप में लेता है। इसलिए, क्वांटाइल फ़ंक्शन को पास करने से पहले हमें पर्सेंटाइल वैल्यू को 100 से विभाजित करना होगा।