8000 fix doc typo by lodagro · Pull Request #967 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

fix doc typo #967

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

Closed
wants to merge 1 commit into from
Closed
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
4 changes: 2 additions & 2 deletions doc/users/recipes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ Transparent, fancy legends
==========================

Sometimes you know what your data looks like before you plot it 6962 , and
mak know for instance that there won't be much data in the upper right
may know for instance that there won't be much data in the upper right
hand corner. Then you can safely create a legend that doesn't overlay
your data::

Expand All @@ -316,7 +316,7 @@ your data::
Other times you don't know where your data is, and loc='best' will try
and place the legend::

ax.legend(loc='upper right')
ax.legend(loc='best')

but still, your legend may overlap your data, and in these cases it's
nice to make the legend frame transparent.
Expand Down
0