sampling

Basic sampling functionality for Haskell.
Log | Files | Refs | README | LICENSE

commit de53372591ea9eb7afd61383b4b0264b818cd6fc
parent f109487169671be83f101aaaeacce0ed94119480
Author: Jared Tobin <jared@jtobin.ca>
Date:   Tue,  9 Feb 2016 21:54:07 +1300

Update README. [ci skip]

Diffstat:
MREADME.md | 7+++++++
1 file changed, 7 insertions(+), 0 deletions(-)

diff --git a/README.md b/README.md @@ -41,6 +41,13 @@ Sample five elements from a Map, without replacement: > sampleIO 5 (Map.fromList (zip [1..1000] (scanl1 (/) [1..]))) Just [0.0,1.0126536951759521e-203,2.9893108271424046e-50,0.0,0.0] +## Development + +On the todo list: + +* Performance improvements +* A *psample* function to go with *presample* + ## Etc. PRs and issues welcome.