-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
Added descriptions for line bars and markers examples #10796
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
Conversation
""" | ||
import matplotlib.pyplot as plt | ||
from matplotlib import pyplot as plt |
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.
Why did you change this? The previous way is the way its done almost everywhere in the codebase.
@@ -3,8 +3,11 @@ | |||
Scatter Symbol | |||
============== | |||
|
|||
Scatter plot with symbols. | |||
In this example clovers are used. |
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.
Combine to "Scatter plot with clover symbols"
@@ -3,6 +3,8 @@ | |||
Scatter Masked | |||
============== | |||
|
|||
Add mask line in plot. |
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.
Too enigmatic: "mask some data points, and add a line demarking masked regions"
@@ -3,6 +3,9 @@ | |||
Scatter Hist | |||
============ | |||
|
|||
Creates histogram from scatter plot. | |||
And adds them to the sides of the plot. |
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.
remove first period and capitalization.
@@ -3,6 +3,9 @@ | |||
Scatter Custom Symbol | |||
===================== | |||
|
|||
Custom symbol in scatter plot. | |||
This example is creating an ellipse |
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.
Creating a custom ellipse symbol in scatter plot.
@@ -3,7 +3,8 @@ | |||
Scatter Masked | |||
============== | |||
|
|||
Add mask line in plot. | |||
Mask some data points and add a line demarking | |||
masked regions. |
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.
This is short enough to fit on a single line.
PR Summary
From issue #8921
Added some descriptions for the following:
examples/lines_bars_and_markers/scatter_custom_symbol.py
examples/lines_bars_and_markers/scatter_hist.py
examples/lines_bars_and_markers/scatter_masked.py
examples/lines_bars_and_markers/scatter_star_poly.py
examples/lines_bars_and_markers/scatter_symbol.py
PR Checklist