|
60 | 60 | " figsize : tuple of 2 floats or None, default: (8, 6)\n",
|
61 | 61 | " The size of the plot in inches. If None, the default matplotlib figure size will be used as this is passed to `matplotlib.pyplot.figure`.\n",
|
62 | 62 | " color : color, default: 'xkcd:sky blue'\n",
|
63 |
| - " The color of the shaded area as a valid <matplotlib color https://matplotlib.org/stable/users/explain/colors/colors.html>_.\n", |
| 63 | + " The color of the shaded area as a valid `matplotlib color <https://matplotlib.org/stable/users/explain/colors/colors.html>`__.\n", |
64 | 64 | " x_label : str, default: 'x'\n",
|
65 | 65 | " The label for the x-axis.\n",
|
66 | 66 | " y_label : str, default: 'f(x; μ,σ)'\n",
|
|
84 | 84 | "\n",
|
85 | 85 | " References\n",
|
86 | 86 | " ----------\n",
|
87 |
| - " Based off of an R function written by Dr. Irene Vrbick for making `shaded normal density curves <https://irene.vrbik.ok.ubc.ca/blog/2021-11-04-shading-under-the-normal-curve/>`_.\n", |
| 87 | + " Based off of an R function written by Dr. Irene Vrbick for making `shaded normal density curves <https://irene.vrbik.ok.ubc.ca/blog/2021-11-04-shading-under-the-normal-curve/>`__.\n", |
88 | 88 | "\n",
|
89 |
| - " The R function by Dr. Irene Vrbick was adapted from `here <http://rstudio-pubs-static.s3.amazonaws.com/78857_86c2403ca9c146ba8fcdcda79c3f4738.html>`_.\n", |
| 89 | + " The R function by Dr. Irene Vrbick was adapted from `here <http://rstudio-pubs-static.s3.amazonaws.com/78857_86c2403ca9c146ba8fcdcda79c3f4738.html>`__.\n", |
90 | 90 | " \"\"\"\n",
|
91 | 91 | " if not isinstance(mean, (float, int)):\n",
|
92 | 92 | " raise TypeError(f\"mean must be a number, not a {mean.__class__.__name__!r}\")\n",
|
|
0 commit comments