@@ -578,7 +578,6 @@ that the bug reports will be a conversation. If you do not want to
578
578
register with github, please email bug reports to the `mailing list
579
579
580
580
581
-
582
581
The easiest way to submit patches to Matplotlib is through pull
583
582
requests on github. Please see the :ref: `developers-guide-index ` for
584
583
the details.
@@ -599,7 +598,7 @@ corners. This is where you come in.
599
598
There is a good chance you know more about Matplotlib usage in some
600
599
areas, the stuff you do every day, than many of the core developers
601
600
who wrote most of the documentation. Just pulled your hair out
602
- compiling Matplotlib for windows ? Write a FAQ or a section for the
601
+ compiling Matplotlib for Windows ? Write a FAQ or a section for the
603
602
:ref: `installing-faq ` page. Are you a digital signal processing wizard?
604
603
Write a tutorial on the signal analysis plotting functions like
605
604
:func: `~matplotlib.pyplot.xcorr `, :func: `~matplotlib.pyplot.psd ` and
@@ -637,7 +636,7 @@ or look at the open issues on github.
637
636
Matplotlib in a web application server
638
637
======================================
639
638
640
- Many users report initial problems trying to use maptlotlib in web
639
+ Many users report initial problems trying to use Matplotlib in web
641
640
application servers, because by default Matplotlib ships configured to
642
641
work with a graphical user interface which may require an X11
643
642
connection. Since many barebones application servers do not have X11
@@ -657,14 +656,14 @@ Agg is to call::
657
656
matplotlib.use('Agg')
658
657
import matplotlib.pyplot as plt
659
658
660
- For more on configuring your backend, see
661
- :ref: `what-is-a-backend `.
659
+ For more on configuring your backend, see :ref: `what-is-a-backend `.
662
660
663
661
Alternatively, you can avoid pylab/pyplot altogether, which will give
664
662
you a little more control, by calling the API directly as shown in
665
663
:doc: `/gallery/user_interfaces/canvasagg `.
666
664
667
- You can either generate hardcopy on the filesystem by calling savefig::
665
+ You can either generate hardcopy on the filesystem by calling
666
+ `.Figure.savefig() `::
668
667
669
668
# do this before importing pylab or pyplot
670
669
import matplotlib
@@ -692,21 +691,6 @@ Pillow for further processing::
692
691
im = Image.open(imgdata)
693
692
694
693
695
- Matplotlib with apache
696
- ----------------------
697
-
698
- TODO; see :ref: `how-to-contribute-docs `.
699
-
700
- Matplotlib with django
701
- ----------------------
702
-
703
- TODO; see :ref: `how-to-contribute-docs `.
704
-
705
- Matplotlib with zope
706
- --------------------
707
-
708
- TODO; see :ref: `how-to-contribute-docs `.
709
-
710
694
.. _howto-click-maps :
711
695
712
696
Clickable images for HTML
0 commit comments