Update DistSampleSet.md

This commit is contained in:
Ozzie Gooen 2022-07-21 14:59:36 -07:00 committed by GitHub
parent 3165e1e499
commit 57782aa2a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,25 +12,25 @@ All regular distribution function work on sample set distributions. In addition,
### fromDist ### fromDist
``` ```
Sampleset.fromDist: (list<number>) => sampleSet SampleSet.fromDist: (list<number>) => sampleSet
``` ```
### fromList ### fromList
``` ```
Sampleset.fromList: (list<number>) => sampleSet SampleSet.fromList: (list<number>) => sampleSet
``` ```
### fromFn ### fromFn
``` ```
Sampleset.fromFn: ((float) => number) => sampleSet SampleSet.fromFn: ((float) => number) => sampleSet
``` ```
### toList ### toList
``` ```
Sampleset.toList: (sampleSet) => list<number> SampleSet.toList: (sampleSet) => list<number>
``` ```
Gets the internal samples of a sampleSet distribution. This is separate from the sampleN() function, which would shuffle the samples. toList() maintains order and length. Gets the internal samples of a sampleSet distribution. This is separate from the sampleN() function, which would shuffle the samples. toList() maintains order and length.
@ -44,19 +44,19 @@ toList(toSampleSet(normal(5,2)))
### map ### map
``` ```
Sampleset.map: (sampleSet, (number => number)) => sampleSet SampleSet.map: (sampleSet, (number => number)) => sampleSet
``` ```
### map2 ### map2
``` ```
Sampleset.map2: (sampleSet, sampleSet, ((number, number) => number)) => sampleSet SampleSet.map2: (sampleSet, sampleSet, ((number, number) => number)) => sampleSet
``` ```
### map3 ### map3
``` ```
Sampleset.map3: (sampleSet, sampleSet, sampleSet, ((number, number, number) => number)) => sampleSet SampleSet.map3: (sampleSet, sampleSet, sampleSet, ((number, number, number) => number)) => sampleSet
``` ```
### mapN ### mapN