8000 DOC: add quickstart section to the gridspec tutorial by phobson · Pull Request #8512 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

DOC: add quickstart section to the gridspec tutorial #8512

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 3 commits into from
Jan 19, 2018
Merged
Changes from 1 commit
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
Prev Previous commit
small line wrap change to re-trigger tests...
  • Loading branch information
jklymak authored Jan 19, 2018
commit e015f37f7c3bbaec5a531f888677dda777a2eef5
6 changes: 2 additions & 4 deletions tutorials/intermediate/gridspec.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,9 @@

############################################################################
# Other option is to use the ``width_ratios`` and ``height_ratios``
# parameters.
# These keyword arguments are lists of numbers.
# parameters. These keyword arguments are lists of numbers.
# Note that absolute values are meaningless, only their relative ratios
# matter.
# That means that ``width_ratios=[2, 4, 8]`` is equivalent to
# matter. That means that ``width_ratios=[2, 4, 8]`` is equivalent to
# ``width_ratios=[1, 2, 4]`` within equally wide figures.
# For the sake of demonstration, we'll blindly create the axes within
# ``for`` loops since we won't need them later.
Expand Down
0