summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatti Picus <matti.picus@gmail.com>2021-05-31 22:59:29 +0300
committerGitHub <noreply@github.com>2021-05-31 22:59:29 +0300
commit6790873334b143117f4e8d1f515def8c7fdeb9fb (patch)
treed4e94d67d63c4406cf8d1b63e6cf1133a4a804c0
parent9c0809f7799c8b0297786c2df59cba622a7a9dab (diff)
parentcab3e392e2ee05b82d40d80f315e13577a7a41bc (diff)
downloadnumpy-6790873334b143117f4e8d1f515def8c7fdeb9fb.tar.gz
Merge pull request #19115 from Mukulikaa/misc-fixits
DOC: Misc fixes to `absolute_beginners.html`
-rw-r--r--doc/source/user/absolute_beginners.rst11
1 files changed, 4 insertions, 7 deletions
diff --git a/doc/source/user/absolute_beginners.rst b/doc/source/user/absolute_beginners.rst
index d97b92617..499e9ec5c 100644
--- a/doc/source/user/absolute_beginners.rst
+++ b/doc/source/user/absolute_beginners.rst
@@ -6,7 +6,8 @@ NumPy: the absolute basics for beginners
.. currentmodule:: numpy
Welcome to the absolute beginner's guide to NumPy! If you have comments or
-suggestions, please don’t hesitate to reach out!
+suggestions, please don’t hesitate to `reach out
+<https://numpy.org/community/>`_!
Welcome to NumPy!
@@ -37,8 +38,7 @@ Installing NumPy
To install NumPy, we strongly recommend using a scientific Python distribution.
If you're looking for the full instructions for installing NumPy on your
-operating system, you can `find all of the details here
-<https://www.scipy.org/install.html>`_.
+operating system, see `Installing NumPy <https://numpy.org/install/>`_.
@@ -56,10 +56,6 @@ thing about getting this distribution is the fact that you don’t need to worry
too much about separately installing NumPy or any of the major packages that
you’ll be using for your data analyses, like pandas, Scikit-Learn, etc.
-You can find all of the installation details in the
-`Installation <https://www.scipy.org/install.html>`_ section
-at `SciPy <https://www.scipy.org>`_.
-
How to import NumPy
-------------------
@@ -89,6 +85,7 @@ you would enter. Everything that doesn't have ``>>>`` in front of it
is **output**, or the results of running your code. This is the style
you see when you run ``python`` on the command line, but if you're using IPython, you might see a different style.
+For more information, see :ref:`documentation_conventions`.
What’s the difference between a Python list and a NumPy array?
--------------------------------------------------------------