8000 Minor updates to the FAQ. by anntzer · Pull Request #12452 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Minor updates to the FAQ. #12452

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 8, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 5 additions & 21 deletions doc/faq/howto_faq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,6 @@ that the bug reports will be a conversation. If you do not want to
register with github, please email bug reports to the `mailing list
<matplotlib-devel@python.org>`_.


The easiest way to submit patches to Matplotlib is through pull
requests on github. Please see the :ref:`developers-guide-index` for
the details.
Expand All @@ -599,7 +598,7 @@ corners. This is where you come in.
There is a good chance you know more about Matplotlib usage in some
areas, the stuff you do every day, than many of the core developers
who wrote most of the documentation. Just pulled your hair out
compiling Matplotlib for windows? Write a FAQ or a section for the
compiling Matplotlib for Windows? Write a FAQ or a section for the
:ref:`installing-faq` page. Are you a digital signal processing wizard?
Write a tutorial on the signal analysis plotting functions like
:func:`~matplotlib.pyplot.xcorr`, :func:`~matplotlib.pyplot.psd` and
Expand Down Expand Up @@ -637,7 +636,7 @@ or look at the open issues on github.
Matplotlib in a web application server
======================================

Many users report initial problems trying to use maptlotlib in web
Many users report initial problems trying to use Matplotlib in web
application servers, because by default Matplotlib ships configured to
work with a graphical user interface which may require an X11
connection. Since many barebones application servers do not have X11
Expand All @@ -657,14 +656,14 @@ Agg is to call::
matplotlib.use('Agg')
import matplotlib.pyplot as plt

For more on configuring your backend, see
:ref:`what-is-a-backend`.
For more on configuring your backend, see :ref:`what-is-a-backend`.

Alternatively, you can avoid pylab/pyplot altogether, which will give
you a little more control, by calling the API directly as shown in
:doc:`/gallery/user_interfaces/canvasagg`.

You can either generate hardcopy on the filesystem by calling savefig::
You can either generate hardcopy on the filesystem by calling
`.Figure.savefig()`::

# do this before importing pylab or pyplot
7D8C import matplotlib
Expand Down Expand Up @@ -692,21 +691,6 @@ Pillow for further processing::
im = Image.open(imgdata)


Matplotlib with apache
----------------------

TODO; see :ref:`how-to-contribute-docs`.

Matplotlib with django
----------------------

TODO; see :ref:`how-to-contribute-docs`.

Matplotlib with zope
--------------------

TODO; see :ref:`how-to-contribute-docs`.

.. _howto-click-maps:

Clickable images for HTML
Expand Down
0