8000 Remove references to scipy cookbook. by anntzer · Pull Request #15979 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Remove references to scipy cookbook. #15979

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
Dec 19, 2019
Merged
Show file tree
Hide file tree
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
9 changes: 3 additions & 6 deletions doc/users/event_handling.rst
Original file line number Diff line number Diff line change
Expand Up @@ -241,15 +241,12 @@ Here is the solution::
plt.show()


**Extra credit**: use the animation blit techniques discussed in the
`animations recipe
<https://scipy-cookbook.readthedocs.io/items/Matplotlib_Animations.html>`_ to
make the animated drawing faster and smoother.
**Extra credit**: Use blitting to make the animated drawing faster and
smoother.

Extra credit solution::

# draggable rectangle with the animation blit techniques; see
# http://www.scipy.org/Cookbook/Matplotlib/Animations
# Draggable rectangle with blitting.
import numpy as np
import matplotlib.pyplot as plt

Expand Down
3 changes: 1 addition & 2 deletions matplotlibrc.template
Original file line number Diff line number Diff line change
Expand Up @@ -276,9 +276,8 @@
## ***************************************************************************
## * LaTeX *
## ***************************************************************************
## See following links for more information on LaTex properties:
## For more information on LaTex properties, see
## https://matplotlib.org/tutorials/text/usetex.html
## https://scipy-cookbook.readthedocs.io/items/idx_matplotlib_typesetting.html
#text.usetex : False ## use latex for all text handling. The following fonts
## are supported through the usual rc parameter settings:
## new century schoolbook, bookman, times, palatino,
Expand Down
0