Minor fix for PR
This commit is contained in:
parent
6f77b12618
commit
1b56662483
|
@ -11,13 +11,12 @@ Below are some specific examples to watch for. We'll work on improving these ove
|
||||||
|
|
||||||
## Mixtures of distributions with very different means
|
## Mixtures of distributions with very different means
|
||||||
|
|
||||||
If you take the pointwise mixture of two distributions with very different means, then the value of that gets fairly warped.
|
If you take the pointwise mixture of two distributions with very different means, then the value of that gets fairly warped.
|
||||||
|
|
||||||
In the following case, the mean of the mixture should be equal to the sum of the means of the parts. These are shown as the first two displayed variables. These variables diverge as the underlying distributions change.
|
In the following case, the mean of the mixture should be equal to the sum of the means of the parts. These are shown as the first two displayed variables. These variables diverge as the underlying distributions change.
|
||||||
|
|
||||||
<SquiggleEditor
|
<SquiggleEditor
|
||||||
initialSquiggleString={
|
initialSquiggleString={`dist1 = {value: normal(1,1), weight: 1}
|
||||||
`dist1 = {value: normal(1,1), weight: 1}
|
|
||||||
dist2 = {value: normal(100000000000,1), weight: 1}
|
dist2 = {value: normal(100000000000,1), weight: 1}
|
||||||
totalWeight = dist1.weight + dist2.weight
|
totalWeight = dist1.weight + dist2.weight
|
||||||
distMixture = mixture(dist1.value, dist2.value, [dist1.weight, dist2.weight])
|
distMixture = mixture(dist1.value, dist2.value, [dist1.weight, dist2.weight])
|
||||||
|
@ -30,10 +29,8 @@ separateMeansCombined = (mean(dist1.value) * (dist1.weight) + mean(dist2.value)
|
||||||
|
|
||||||
The means of sample set distributions can vary dramatically, especially as the numbers get high.
|
The means of sample set distributions can vary dramatically, especially as the numbers get high.
|
||||||
|
|
||||||
|
|
||||||
<SquiggleEditor
|
<SquiggleEditor
|
||||||
initialSquiggleString={
|
initialSquiggleString={`symbolicDist = 5 to 50333333
|
||||||
`symbolicDist = 5 to 50333333
|
sampleSetDist = toSampleSet(symbolicDist)
|
||||||
symbolicSetDist = toSampleSet(symbolicDist)
|
[mean(symbolicDist), mean(sampleSetDist), symbolicDist, sampleSetDist]`}
|
||||||
[mean(symbolicDist), mean(symbolicSetDist), symbolicDist, symbolicSetDist]`}
|
/>
|
||||||
/>
|
|
Loading…
Reference in New Issue
Block a user