.. _howto-document: A Guide to NumPy/SciPy Documentation ==================================== User documentation ******************* NumPy text documents should follow the `Google developer documentation style guide `_. Docstrings ********** When using `Sphinx `__ in combination with the numpy conventions, you should use the ``numpydoc`` extension so that your docstrings will be handled correctly. For example, Sphinx will extract the ``Parameters`` section from your docstring and convert it into a field list. Using ``numpydoc`` will also avoid the reStructuredText errors produced by plain Sphinx when it encounters numpy docstring conventions like section headers (e.g. ``-------------``) that sphinx does not expect to find in docstrings. Some features described in this document require a recent version of ``numpydoc``. For example, the **Yields** section was added in ``numpydoc`` 0.6. It is available from: * `numpydoc on PyPI `_ * `numpydoc on GitHub `_ Note that for documentation within numpy, it is not necessary to do ``import numpy as np`` at the beginning of an example. However, some sub-modules, such as ``fft``, are not imported by default, and you have to include them explicitly:: import numpy.fft after which you may use it:: np.fft.fft2(...) Please use the numpydoc `formatting standard`_ as shown in their example_ .. _`formatting standard`: https://numpydoc.readthedocs.io/en/latest/format.html .. _example: https://numpydoc.readthedocs.io/en/latest/example.html