Skip to content

Commit 16bee91

Browse files
authored
Fix last remaining PyMC3 occurrences & broken link (#6133)
1 parent 4ea8dde commit 16bee91

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Getting started
3939
If you already know about Bayesian statistics:
4040
----------------------------------------------
4141

42-
- `API quickstart guide <https://docs.pymc.io/en/stable/pymc-examples/examples/pymc3_howto/api_quickstart.html>`__
42+
- `API quickstart guide <https://www.pymc.io/projects/examples/en/latest/howto/api_quickstart.html>`__
4343
- The `PyMC tutorial <https://docs.pymc.io/en/latest/learn/core_notebooks/pymc_overview.html>`__
4444
- `PyMC examples <https://www.pymc.io/projects/examples/en/latest/gallery.html>`__ and the `API reference <https://docs.pymc.io/en/stable/api.html>`__
4545

docs/source/_templates/donate.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{% else %}
44
<div class="tocsection supportbutton">
55
{% endif %}
6-
<a href="https://numfocus.org/donate-to-pymc3">
6+
<a href="https://numfocus.org/donate-to-pymc">
77
<i class="far fa-heart"></i> {{ _("Support PyMC") }}
88
</a>
99
</div>

docs/source/learn/core_notebooks/GLM_linear.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"\n",
1414
"Over the past few decades, some great Bayesian software packages have been created including [JAGS](http://mcmc-jags.sourceforge.net/), [BUGS](http://www.mrc-bsu.cam.ac.uk/bugs/), and [Stan](http://mc-stan.org/), however they are written for statisticians who know very well what model they want to build. \n",
1515
"\n",
16-
"Unfortunately, [\"the vast majority of statistical analysis is not performed by statisticians\"](http://simplystatistics.org/2013/06/14/the-vast-majority-of-statistical-analysis-is-not-performed-by-statisticians/) -- so what we really need are tools for *scientists* and not for statisticians. PyMC3 makes it easy to construct statistical models for the application at hand, independent of how the various fitting algorithms are implemented.\n",
16+
"Unfortunately, [\"the vast majority of statistical analysis is not performed by statisticians\"](http://simplystatistics.org/2013/06/14/the-vast-majority-of-statistical-analysis-is-not-performed-by-statisticians/) -- so what we really need are tools for *scientists* and not for statisticians. PyMC makes it easy to construct statistical models for the application at hand, independent of how the various fitting algorithms are implemented.\n",
1717
"\n",
1818
"## Linear Regression\n",
1919
"\n",

docs/source/learn/core_notebooks/posterior_predictive.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"name": "stdout",
2929
"output_type": "stream",
3030
"text": [
31-
"Runing on PyMC3 v4.0.0\n"
31+
"Runing on PyMC v4.0.0\n"
3232
]
3333
}
3434
],
@@ -42,7 +42,7 @@
4242
"from scipy.special import expit as logistic\n",
4343
"\n",
4444
"\n",
45-
"print(f\"Runing on PyMC3 v{pm.__version__}\")"
45+
"print(f\"Runing on PyMC v{pm.__version__}\")"
4646
]
4747
},
4848
{

pymc/tests/distributions/test_continuous.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -773,7 +773,7 @@ def test_moyal_logp(self):
773773

774774
@pytest.mark.skipif(
775775
condition=(aesara.config.floatX == "float32"),
776-
reason="Pymc3 underflows earlier than scipy on float32",
776+
reason="PyMC underflows earlier than scipy on float32",
777777
)
778778
def test_moyal_logcdf(self):
779779
check_logcdf(

0 commit comments

Comments
 (0)