sampling

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

commit e64d76a38bbd2e4e98f3669cc649b8b16f1b9bfe
parent c9af9b798002ba4ee50917a2f546eb30d449731a
Author: Jared Tobin <jared@jtobin.ca>
Date:   Fri, 19 Feb 2016 22:59:33 +1300

Fix README typo.

Diffstat:
MREADME.md | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md @@ -38,7 +38,7 @@ Sample ten elements from a list, without replacement: Sample five elements from a Map, with replacement: > import qualified Data.Map.Strict as Map - > sampleIO 5 (Map.fromList [(1, "apple"), (2, "orange"), (3, "pear")]) + > resampleIO 5 (Map.fromList [(1, "apple"), (2, "orange"), (3, "pear")]) ["apple", "apple", "pear", "orange", "pear"] ## Development