Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
4answers
6k views

How do I calculate percentiles with python/numpy?

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 ...
8
votes
3answers
305 views

Finding 99% coverage in Matlab

i have a matrix in matlab and i need to find the 99% value for each column. That means that value such that 99% of the population has larger value than this. Is there a function in matlab for this?
7
votes
3answers
1k views

Fast algorithm for repeated calculation of percentile?

In an algorithm I have to calculate the 75th percentile of a data set whenever I add a value. Right now I am doing this: Get value x Insert x in an already sorted array at the back swap x down until ...
6
votes
3answers
127 views

How can I return the numerical boxplot data of all results using 1 mySQL query?

[tbl_votes] - id <!-- unique id of the vote) --> - item_id <!-- vote belongs to item <id> --> - vote <!-- number 1-10 --> Of course we can fix this by getting: the smallest ...
6
votes
6answers
1k views

Percentiles of Live Data Capture

I am looking for an algorithm that determines percentiles for live data capture. For example, consider the development of a server application. The server might have response times as follows: 17 ms ...
6
votes
5answers
3k views

Calculating percentile rank in MySQL

I have a very big table of measurement data in MySQL and I need to compute the percentile rank for each and every one of these values. Oracle appears to have a function called percent_rank but I can't ...
5
votes
0answers
157 views

Python-Matplotlib boxplot. How to show percentiles 0,10,25,50,75,90 and 100?

I would like to plot an EPSgram (like link below). How could I do the program with python? The boxplot function only plots quartiles (0,25,50,75,100). So, how can I add two more boxes? Thank you in ...
5
votes
1answer
563 views

How to find Nth percentile with SQLite?

I'll like to find Nth percentile. for example: table: htwt; columns: name, gender, height, weight result: | gender | 90% height | 90% weight | | male | 190 | 90 | | female | ...
4
votes
1answer
94 views

Percentile rank calculation

I'm attempting to calculate the percentile rank of a score using the python statlib module. The percentileofscore function is supposed to return a value between 0 and 100, however it regularly ...
4
votes
1answer
737 views

Python: Matplotlib - probability plot for several data set

I have several data sets (distribution) as follows: set1 = [1,2,3,4,5] set2 = [3,4,5,6,7] set3 = [1,3,4,5,8] How do I plot a scatter plot with the data sets above with the y-axis being the ...
2
votes
2answers
53 views

within group sorts in mysql

I have a panel data set: that is, times, ids, and values. I would like to do a ranking based on value for each date. I can achieve the sort very simply by running: select * from tbl order by date, ...
2
votes
2answers
104 views

Python SciPy Stats percentilofscore

Consider the following Python code: In [1]: import numpy as np In [2]: import scipy.stats as stats In [3]: ar = np.array([0.8389, 0.5176, 0.1867, 0.1953, 0.4153, 0.6036, 0.2497, 0.5188, 0.4723, ...
2
votes
3answers
203 views

Percentile calculation

I want to mimic the Excel equivalent PERCENTILE function in C# (or in some pseudo code). How can I do that? The function should take two arguments where the first is a list of values and the second is ...
2
votes
2answers
155 views

How do I get a percentile from a list in CSharp?

I'm creating a program where I would like to get the percentile of score x out of a list(List results). I know that the formula is [(A + (0.5) B) / n] * 100 where 'A' = # of scores lower than score ...
2
votes
10answers
2k views

Fast Algorithm for computing percentiles to remove outliers

I have a program that needs to repeatedly compute the approximate percentile (order statistic) of a dataset in order to remove outliers before further processing. I'm currently doing so by sorting ...
2
votes
3answers
411 views

Select nth percentile from MySQL

I have a simple table of data, and I'd like to select the row that's at about the 40th percentile from the query. I can do this right now by first querying to find the number of rows and then running ...
1
vote
1answer
141 views

How to implment a weighted percentile with MySQL

I have a large data set which includes the prices a particular product is sold at across stores. I need to found the lowest and highest price at which 80% of sales occurred. for example with the ...
1
vote
3answers
276 views

Java Apache Commons getPercentile() different result that MS Excel percentile

I have an algorithm that calculates the percentile(85) with Apache Commons of a series of values (12 values), for a later evaluation with a threshold to make a decision. The result is similar to the ...
1
vote
2answers
221 views

“Running” Percentile for each row in a dataframe

I have a dataframe like the one below, which I have present only one row of it: HSI.Close.org HSI.Close HSI.Close.1 HSI.Close.2 HSI.Close.3 1987-03-17 2629.3 2669.6 2721.2 ...
1
vote
0answers
145 views

How to calculate Percentiles from Perecentiles of lower granularity data?

I have a lot of time series Data. I store the X percentile of every 5 minutes along with the count (number of points). What would be the best way to calculate the percentile of the entire hour using ...
0
votes
2answers
68 views

Crash (program not responding) when median evaluates to zero (VBA)

I have a problem with Excel 2010 crashing (Windows XP says Excel is "not responding") when I use VBA to calculate the median of an array, in cases where the median function evaluates to zero. ...
0
votes
3answers
116 views

How to bin ordered data by percentile for each id in R dataframe [r]

I have dataframe that contains 70-80 rows of ordered response time (rt) data for each of 228 people each with a unique id# (everyone doesn't have the same amount of rows). I want to bin each person's ...
0
votes
1answer
154 views

calculate percentile for each entry in the data list

//I have a list of students List<Student> Students { lond StudentId; double Marks; int Rank; double Percentile; } I am supplied with Id and Marks, and need ...
0
votes
1answer
278 views

Apache Commons Math 2.2 Percentile bug?

I am not 100% sure if this is a bug or I am not doing something right but if you give Percentile a large amount of data that is the consistent of the same value (see code below) the evaluate method ...
0
votes
0answers
575 views

Calculating percentiles in Excel with “buckets” data instead of the data list itself

I have a bunch of data in Excel that I need to get certain percentile information from. The problem is that instead of having the data set made up of each value, I instead have info on the number of ...
0
votes
2answers
771 views

Calculating Percentiles (Ruby)

My code is based on the methods described here and here. def fraction?(number) number - number.truncate end def percentile(param_array, percentage) another_array = param_array.to_a.sort r = ...