-
Notifications
You must be signed in to change notification settings - Fork 154
Add PERCENTILE and QUARTILE function families #1650
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Changes from 8 commits
2f39767
dbce049
6be8729
224d845
ae79bbe
c016771
70473ae
aca67fc
17a65e5
6910f2c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -435,9 +435,15 @@ Total number of functions: **{{ $page.functionsCount }}** | |
| | NORMSINV | Returns value of inverse normal distribution. | NORMSINV(P) | | ||
| | PEARSON | Returns the correlation coefficient between two data sets. | PEARSON(Data1, Data2) | | ||
| | PHI | Returns probability densitity of normal distribution. | PHI(X) | | ||
| | PERCENTILE | Returns the k-th percentile of values in a range. | PERCENTILE(Data, K) | | ||
| | PERCENTILE.EXC | Returns the k-th percentile of values in a range, exclusive of 0 and 1. | PERCENTILE.EXC(Data, K) | | ||
| | PERCENTILE.INC | Returns the k-th percentile of values in a range, inclusive of 0 and 1. | PERCENTILE.INC(Data, K) | | ||
| | POISSON | Returns density of Poisson distribution. | POISSON(X, Mean, Mode) | | ||
| | POISSON.DIST | Returns density of Poisson distribution. | POISSON.DIST(X, Mean, Mode) | | ||
| | POISSONDIST | Returns density of Poisson distribution. | POISSONDIST(X, Mean, Mode) | | ||
| | QUARTILE | Returns the quartile of a data set. | QUARTILE(Data, Quart) | | ||
|
||
| | QUARTILE.EXC | Returns the quartile of a data set, based on exclusive percentile values. | QUARTILE.EXC(Data, Quart) | | ||
| | QUARTILE.INC | Returns the quartile of a data set, based on inclusive percentile values. | QUARTILE.INC(Data, Quart) | | ||
| | RSQ | Returns the squared correlation coefficient between two data sets. | RSQ(Data1, Data2) | | ||
| | SKEW | Returns skeweness of a sample. | SKEW(Number1, Number2, ...NumberN) | | ||
| | SKEW.P | Returns skeweness of a population. | SKEW.P(Number1, Number2, ...NumberN) | | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If this works the same as PERCENTILE.INC, it should have the same description
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed in commit 17a65e5. PERCENTILE now has the same description as PERCENTILE.INC: "inclusive of 0 and 1".