We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d5dc40 commit c8ce73fCopy full SHA for c8ce73f
docs/src/tutorials/prob-interface.md
@@ -20,7 +20,7 @@ end
20
nothing # hide
21
```
22
23
-We generate some data using `μ = 0` and `σ = 1`:
+We generate some data using `μ = 0`:
24
25
```@example probinterface
26
Random.seed!(1776)
@@ -35,7 +35,7 @@ Conditioning takes a variable and fixes its value as known.
35
We do this by passing a model and a collection of conditioned variables to [`|`](@ref) or its alias [`condition`](@ref):
36
37
38
-model = gdemo(length(dataset)) | (x=dataset, μ=0, σ=1)
+model = gdemo(length(dataset)) | (x=dataset, μ=0)
39
40
41
0 commit comments