Skip to content

Commit

Permalink
initial import
Browse files Browse the repository at this point in the history
add docs, type annotations, etc. for initial release
  • Loading branch information
ericgj committed Aug 2, 2017
0 parents commit 14373e0
Show file tree
Hide file tree
Showing 5 changed files with 568 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -0,0 +1 @@
elm-stuff
9 changes: 9 additions & 0 deletions Readme.md
@@ -0,0 +1,9 @@
# elm-quantiles

Calculate quantiles, using various rounding/interpolation functions (or
providing your own).

Closely follows the "Estimating quantiles from a sample" section of the
[wikipedia page][wikipedia].

[wikipedia]: https://en.wikipedia.org/wiki/Quantile
16 changes: 16 additions & 0 deletions elm-package.json
@@ -0,0 +1,16 @@
{
"version": "1.0.0",
"summary": "Calculate quantiles, using various interpolation functions (or your own).",
"repository": "https://github.com/ericgj/elm-quantiles.git",
"license": "BSD3",
"source-directories": [
"src"
],
"exposed-modules": [
"Quantiles"
],
"dependencies": {
"elm-lang/core": "5.1.1 <= v < 6.0.0"
},
"elm-version": "0.18.0 <= v < 0.19.0"
}

0 comments on commit 14373e0

Please sign in to comment.