diff options
author | Mukulika <mukulikapahari@gmail.com> | 2021-05-27 20:51:25 +0530 |
---|---|---|
committer | Mukulika <mukulikapahari@gmail.com> | 2021-05-27 20:51:25 +0530 |
commit | b2ea9c4413a8781538b9a1723146f1bc20d65691 (patch) | |
tree | 0055f624dbb1fbbf30c783ba2f5c6c62d820b033 | |
parent | 89da72353f5e282a36a8e9ad9012400dbe452ced (diff) | |
download | numpy-b2ea9c4413a8781538b9a1723146f1bc20d65691.tar.gz |
DOC: Misc fixes to absolute_beginners.html
1. Added mailing list link
2. Changed SciPy install link to NumPy
3. Removed repetition of install link
4. Added link to doc_conventions.html
-rw-r--r-- | doc/source/user/absolute_beginners.rst | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/doc/source/user/absolute_beginners.rst b/doc/source/user/absolute_beginners.rst index d97b92617..95d2f513c 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://mail.python.org/mailman/listinfo/numpy-discussion>`_! 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,8 @@ 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 `Documentation conventions +<https://numpy.org/devdocs/doc_conventions.html>`_. What’s the difference between a Python list and a NumPy array? -------------------------------------------------------------- |