Skip to content

Commit

Permalink
Fix overly escaped Markdown link
Browse files Browse the repository at this point in the history
At some point, would be nice to linkify this, but not critical for now.
  • Loading branch information
dmcc committed Apr 26, 2024
1 parent c91b003 commit 888934a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/_tutorial/plots.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"The above figure has quite a bit more resolution along both the theta and radii as we modified the ``bins`` and ``segments`` parameters. You can define ``bins`` to be any array-like structure so long as they’re numeric. ``pollutionroseplot`` will always add ``inf`` (infinity) at the end if you didn’t include it so that there is always a catch-all bin for values higher than the max specified. You can manually define this list to be whatever resolution or chunkiness you’d like, or, you can create an evenly-spaced array using `NumPy <https://numpy.org/>`_: ``np.linspace(0, 100, 10)``.\n",
"The above figure has quite a bit more resolution along both the theta and radii as we modified the ``bins`` and ``segments`` parameters. You can define ``bins`` to be any array-like structure so long as they’re numeric. ``pollutionroseplot`` will always add ``inf`` (infinity) at the end if you didn’t include it so that there is always a catch-all bin for values higher than the max specified. You can manually define this list to be whatever resolution or chunkiness you’d like, or, you can create an evenly-spaced array using NumPy: ``np.linspace(0, 100, 10)``.\n",
"\n",
"The `segments` parameter is a bit different - you define an integer number of segments to divide the 360 degrees into and the code will automatically handle it.\n",
"\n",
Expand Down
3 changes: 1 addition & 2 deletions docs/tutorial/plots.rst
Original file line number Diff line number Diff line change
Expand Up @@ -380,8 +380,7 @@ numeric. ``pollutionroseplot`` will always add ``inf`` (infinity) at the
end if you didn’t include it so that there is always a catch-all bin for
values higher than the max specified. You can manually define this list
to be whatever resolution or chunkiness you’d like, or, you can create
an evenly-spaced array using ``NumPy <https://numpy.org/>``\ \_:
``np.linspace(0, 100, 10)``.
an evenly-spaced array using NumPy: ``np.linspace(0, 100, 10)``.

The ``segments`` parameter is a bit different - you define an integer
number of segments to divide the 360 degrees into and the code will
Expand Down

0 comments on commit 888934a

Please sign in to comment.