Skip to content

Commit 48cd9d3

Browse files
authored
fix for broken link
1 parent 0943d81 commit 48cd9d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: Chapter2_MorePyMC/Ch2_MorePyMC_PyMC3.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@
246246
"\n",
247247
"`some_variable = pm.DiscreteUniform(\"discrete_uni_var\", 0, 4)`\n",
248248
"\n",
249-
"where 0, 4 are the `DiscreteUniform`-specific lower and upper bound on the random variable. The [PyMC3 docs](http://pymc-devs.github.io/pymc3/api.html) contain the specific parameters for stochastic variables. (Or use `??` if you are using IPython!)\n",
249+
"where 0, 4 are the `DiscreteUniform`-specific lower and upper bound on the random variable. The [PyMC3 docs](https://docs.pymc.io/en/stable/api.html) contain the specific parameters for stochastic variables. (Or use `??` if you are using IPython!)\n",
250250
"\n",
251251
"The `name` attribute is used to retrieve the posterior distribution later in the analysis, so it is best to use a descriptive name. Typically, I use the Python variable's name as the `name`.\n",
252252
"\n",

0 commit comments

Comments
 (0)