In statistics, a percentile (or centile) is the value of a variable below which a certain percent of observations fall.

learn more… | top users | synonyms

0
votes
0answers
24 views

Fastest way to find 5%ile from 2D numpy array?

I know that there is numpy.percentile(myArray,5), but I understand that behind the scenes this will first do a complete sort of the array, which is inefficient if I only need the smallest 5% of values ...
0
votes
2answers
73 views

How can I calculate percentile in java without using any other library

I am trying to calculate 95th Percentile from the data sets which I have populated in my below ConcurrentHashMap. I am interested in finding out how many calls came back in 95th percentile of time ...
0
votes
0answers
21 views

MDX Query percentile 25th, 50th and 75th

I have a question and I haven't been able to find the answer (neither in this forum nor other) I am looking for: I need to calculate the 25th Percentile, the median (the 50th percentile) and the ...
2
votes
1answer
69 views

AttributeError: 'module' object has no attribute 'percentile'

I use this function to calculate percentile from here: import numpy as np a = [12, 3, 45, 0, 45, 47, 109, 1, 0, 3] np.percentile(a, 25) But I get this error : AttributeError: 'module' object has ...
-1
votes
1answer
80 views

Top 10 Percentile by salary of results

I have a in-memory List of Job objects, were the Job object has a propery called Salary. How do I use LINQ or C# to filter this list to only contain the list of jobs with salaries in the top 10 or ...
9
votes
0answers
84 views

How to monitor 95th percentile web performance? [closed]

I want to monitor some performance percentiles (95th, 99th, etc) of a web application. Here's a blogpost about the percentile metric http://blog.catchpoint.com/2010/09/02/web_performance_metrics_best/ ...
-2
votes
1answer
114 views

How to calculate 95 percentile in Java using the datasets in Map

I am trying to calculate 95% percentile from my datasets in Java. My datasets will have something like this- I will be having a ConcurrentHashMap that will have key value pair like this- Key = 30 ...
0
votes
1answer
451 views

How to calculate 95th percentile in Excel 2010 [duplicate]

I am trying to calculate how many calls came back in 95 percentile of time. Below is my Result Set. I am working with Excel 2010 Milliseconds Number 0 1702 1 15036 2 ...
0
votes
1answer
37 views

How to figure out that 95 pecentile of time calls came back within certain milliseconds

I am working on a project in which I am supposed to do profiling on our REST Service. And after that figure it out how much is the 90 percentile or 95 percentile of our service. Meaning how much time ...
-1
votes
1answer
50 views

SQL rank percentile

I've made an SQL query which rank pages by how many times they have been viewed. For instance, ╔══════╦═══════╗ ║ PAGE ║ VIEWS ║ ╠══════╬═══════╣ ║ J ║ 100 ║ ║ Q ║ 77 ║ ║ 3 ║ 55 ║ ║ ...
0
votes
1answer
103 views

Plot error bars (percentile)

I'm quite new to python and I need some help. I would like to plot errorbars equivalent to 1sigma standard deviations on my plot as the 16th and 84th percentile values of the distributions. I tried ...
0
votes
2answers
126 views

Find daily percentile for large data set of irregular data

I have a very large data set (> 1 million rows) with percentiles that need to be calculated for all of the same day (e.g., all Jan 1, all Jan 2, ..., all Dec 31). There are many rows of the same ...
1
vote
2answers
213 views

Fast percentile in C++

My program calculates a Monte Carlo simulation for the value-at-risk metric. To simplify as much as possible, I have: 1/ simulated daily cashflows 2/ to get a sample of a possible 1-year cashflow, ...
0
votes
0answers
46 views

Conditionally perform percentile()?

Let's say I have data that looks like this: City Number Alabama 10 Washington 11 Alabama 5 Alaska 15 Alabama 200 Washington 1 I know I can take the percentile of the ...
0
votes
3answers
90 views

MySQL find top x% across a given time period

I fear this could get quite complicated quite quickly, but I'm wondering what the best method is of showing the latest 'activity' ordered by 'popularity' - which is measures in either 'likes' or ...
1
vote
3answers
203 views

Using awk to get the percentile of lines in a file

I a having a sorted file with numeric values like foo 2.3 bar 2.6 baz 4.7 and would like to have a one-liner which puts the percentile of a line into the last column, like foo 2.3 0.3333 bar 2.6 ...
0
votes
1answer
399 views

nth percentile calculations in postgresql

I've been surprisingly unable to find an nth percentile function for postgresql. I am using this via mondrian olap tool so i just need an aggregate function which returns a 95th percentile. I did ...
3
votes
1answer
409 views

PostgreSQL equivalent of Oracle's PERCENTILE_CONT function

Has anyone found a PostgreSQL equivalent of Oracle's PERCENTILE_CONT function? I searched, and could not find one, so I wrote my own. Here is the solution that I hope helps you out. The company I ...
6
votes
2answers
219 views

Data structure for efficient percentile lookups?

Suppose that you have a large collection of key/value pairs, where the value is some arbitrary real number. You're interested in creating a data structure supporting the following operations: ...
1
vote
0answers
93 views

Setting pixel value to its percentile in a neighbourhood

For spatial analysis purposes, I am trying to set up a filter that would, for a pixel in a given neighbourhood, give the percentile of this pixel in its neighbourhood (defined by a structuring ...
2
votes
1answer
185 views

Percentile calculation with weighted data

I've been struggling to find a way of calculating percentiles of a vector X given weights W that is continuous in W at zero. That is, as an element of W tends to zero, I would want the result of the ...
0
votes
1answer
293 views

Calculating the 90th percentile in O(n) time [duplicate]

Possible Duplicate: Can you sort n integers in O(n) amortized complexity? I have to write an algorithm which, given an unsorted list of integers, returns "the lowest number in the file ...
0
votes
1answer
75 views

SQL Percercentile Calculation

I have the following query, which even without a ton of data (~3k rows) is still a bit slow to execute, and the logic is a bit over my head - was hoping to get some help optimizing the query or even ...
0
votes
2answers
115 views

MySQL VIEW with column as combined rank of other 3 VIEW columns

Bear with me, I'm SQL.stupid. I've finally learned that one should use views instead of crons when possible. Now, I have a view within a view question. My stack friends have gotten me this far: ...
4
votes
1answer
541 views

Adding Different Percentiles in boxplots in R

I am failry new to R and recently used it to make some Boxplots. I also added the mean and standard deviation in my boxplot. I was wondering if i could add some kind of tick mark or circle in ...
4
votes
3answers
307 views

Can percentiles of a set of data be calculated in a map-reduce manner?

My understanding is to calculate percentiles, the data needs to be sorted. Would this be possible with a huge amount of data spread across multiple servers, without moving it around?
3
votes
3answers
310 views

Map each list value to its corresponding percentile

I'd like to create a function that takes a (sorted) list as its argument and outputs a list containing each element's corresponding percentile. For example, fn([1,2,3,4,17]) returns [0.0, 0.25, 0.50, ...
0
votes
2answers
248 views

Calculate the 85th percentile for yAxis in highcharts

I have a chart with multiple series for which I have a button that resets the yAxis to a specific amount. I would like to set this specific amount to be the 85th percentile of the yAxis values. Is ...
1
vote
2answers
468 views

Find percentile using an array in php

I have a array like this array( 45=>5, 42=>4.9, 48=>5, 41=>4.8, 40=>4.9, 34=>4.9, ..... ) Here index is userid and value is his ...
-1
votes
2answers
176 views

For-loop error and min 2.5% and max 97.5% percentile in R

I have a data set with 41 rows and 21 columns. In DF, each row represents energy data in 15 minute interval of the day (from 10am-8pm). each column represents selected days within a month month. I ...
2
votes
2answers
462 views

matplotlib: disregard outliers when plotting

I'm plotting some data from various tests. Sometimes in a test I happen to have one outlier (say 0.1), while all other values are three orders of magnitude smaller. With matplotlib, I plot against ...
4
votes
2answers
389 views

Definitive way to match Stata weighted xtile function using Python?

For a project, I need to replicate some results that currently exist in Stata output files (.dta) and were computed from an older Stata script. The new version of the project needs to be written in ...
0
votes
0answers
128 views

The 95 percentile value calculated with JRobin can be displayed in the graph as value not as line?

I need to display in a graph created using JRobin the 95 percentile's value. Currently I have something like this: DataProcessor dp = new DataProcessor(startTime,endtime); dp.addDatasource("bytesIn", ...
1
vote
1answer
291 views

query for sql server 2005 for getting the 95th percentile of different groups

I have a table like the dummy table described below Date || Server || Count 1200 || B || 123 1200 || C || 124 1200 || B || 125 1300 || B ...
0
votes
1answer
307 views

Percentile plot with ggplot2 / Bars with y and yend?

I want to make a plot like this given only the percentiles in my data.frame. So a row in my data.frame would be something like that: Name; q0.05; q0.25; q0.45; q0.55; q0.75; q0.95 Italy; 76; 88; ...
1
vote
2answers
461 views

Filling up an output vector with stata loop

When you take centiles of a variable in Stata, for eg. *set directory cd"C:\Etc\Etc Etc\" *open data file use "dataset.dta",clear *get centiles centile var1, ...
1
vote
2answers
273 views

Element-wise median and percentiles of arrays with Numeric Python

I am using Numeric Python. Unfortunately, NumPy is not an option. If I have multiple arrays, such as: a=Numeric.array(([1,2,3],[4,5,6],[7,8,9])) b=Numeric.array(([9,8,7],[6,5,4],[3,2,1])) ...
4
votes
3answers
185 views

Perl PDL - getting the 80% lowest values in a vector

Is there an elegant PDL function which receives a list of values and returns a list of 80% of the original values which are the lowest? For example: If I have a list like so: (9, 4, 1, 2, 7, 8, 3, 5, ...
1
vote
1answer
461 views

How to calculate percentile or ranking of a value in a collection?

I have a collection of about 8,000 test scores in an XML file. Using Linq and C#, what is one of the most efficient ways to calculate the percentile of a particular test score. My emphasis is on ...
4
votes
1answer
1k 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 ...
7
votes
1answer
794 views

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

I would like to plot an EPSgram (see below) using Python and Matplotlib. The boxplot function only plots quartiles (0, 25, 50, 75, 100). So, how can I add two more boxes?
6
votes
3answers
324 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 ...
0
votes
2answers
380 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. ...
2
votes
3answers
180 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
446 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, ...
5
votes
3answers
3k 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 ...
1
vote
3answers
825 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 ...
2
votes
2answers
930 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 ...
0
votes
1answer
563 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 ...
4
votes
1answer
3k 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 ...

1 2