Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Python by (47.6k points)

Is there a convenient way to calculate percentiles for a sequence or single-dimensional numpy array?

I am looking for something similar to Excel's percentile function.

I looked in NumPy's statistics reference, and couldn't find this. All I could find is the median (50th percentile), but not something more specific.

1 Answer

0 votes
by (106k points)

To calculate percentile with python you might be interested in the SciPy Stats package. It has the percentile function you're after and many other statistical goodies.

percentile() is available in numpy too.

import numpy as np 

a = np.array([1,2,3,4,5]) 

p = np.percentile(a, 50) 

print p 

3.0

Related questions

0 votes
1 answer
0 votes
1 answer
0 votes
1 answer

Browse Categories

...