-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
linking front thumbnails, updating screenshots + pyplot API page #8581
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
Changes from 1 commit
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
0a58484
linking front thumbnails and updating screenshots
choldgraf edf2cf8
adding pyplot API context
choldgraf aa88fae
categorical variable example
choldgraf a46410e
addressing comments
choldgraf 166a431
ableist language
choldgraf 7e5bee9
addressing comments
choldgraf cf76980
Update categorical_variables.py
choldgraf File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
ableist language
- Loading branch information
commit 166a4310cb3ff76ed247dd7a718684c9ee9675bc
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,10 +8,11 @@ | |
|
||
.. _matplotlibscreenshots: | ||
|
||
Simple Plot | ||
=========== | ||
Line Plot | ||
========= | ||
|
||
Here's a very basic :func:`~matplotlib.pyplot.plot` with text labels: | ||
Here's now to create a line plot with text labels using | ||
:func:`~matplotlib.pyplot.plot`. | ||
|
||
.. figure:: ../../gallery/pylab_examples/images/sphx_glr_simple_plot_001.png | ||
:target: ../../gallery/pylab_examples/simple_plot.html | ||
|
@@ -56,7 +57,7 @@ | |
Path demo | ||
========= | ||
|
||
You can add arbitrary paths in matplotlib using the | ||
8000 You can add other paths in matplotlib using the | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Matplotlib There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Also needs to be arbitrary cause the arbitrary is in reference to the shape of the part (line, circle, curve) |
||
:mod:`matplotlib.path` module: | ||
|
||
.. figure:: ../../gallery/shapes_and_collections/images/sphx_glr_path_patch_001.png | ||
|
@@ -131,8 +132,8 @@ | |
Bar charts | ||
========== | ||
|
||
Bar charts are simple to create using the :func:`~matplotlib.pyplot.bar` | ||
command, which includes customizations such as error bars: | ||
Use the :func:`~matplotlib.pyplot.bar` command to make bar charts, which | ||
includes customizations such as error bars: | ||
|
||
.. figure:: ../../gallery/pylab_examples/images/sphx_glr_barchart_demo_001.png | ||
:target: ../../gallery/pylab_examples/barchart_demo.html | ||
|
@@ -141,7 +142,7 @@ | |
|
||
Barchart Demo | ||
|
||
It's also simple to create stacked bars | ||
You can also create stacked bars | ||
(`bar_stacked.py <../../gallery/pylab_examples/bar_stacked.html>`_), | ||
or horizontal bar charts | ||
(`barh.py <../../gallery/lines_bars_and_markers/barh.html>`_). | ||
|
@@ -152,7 +153,7 @@ | |
Pie charts | ||
========== | ||
|
||
The :func:`~matplotlib.pyplot.pie` command allows you to easily create pie | ||
The :func:`~matplotlib.pyplot.pie` command allows you to create pie | ||
charts. Optional features include auto-labeling the percentage of area, | ||
exploding one or more wedges from the center of the pie, and a shadow effect. | ||
Take a close look at the attached code, which generates this figure in just | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here's how?