8000 Made corrections for pr · matplotlib/matplotlib@d8bb79f · GitHub
[go: up one dir, main page]

Skip to content

Commit d8bb79f

Browse files
committed
Made corrections for pr
1 parent d6ae63e commit d8bb79f

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

examples/lines_bars_and_markers/scatter_custom_symbol.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
Scatter Custom Symbol
44
=====================
55
6-
Custom symbol in scatter plot.
7-
This example is creating an ellipse
6+
Creating a custom ellipse symbol in scatter plot.
87
98
"""
109
import matplotlib.pyplot as plt

examples/lines_bars_and_markers/scatter_hist.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
Scatter Hist
44
============
55
6-
Creates histogram from scatter plot.
7-
And adds them to the sides of the plot.
6+
Creates histogram from scatter plot
7+
and adds them to the sides of the plot.
88
99
"""
1010
import numpy as np

examples/lines_bars_and_markers/scatter_masked.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
Scatter Masked
44
==============
55
6-
Add mask line in plot.
6+
Mask some data points and add a line demarking
7+
masked regions.
78
89
"""
910
import matplotlib.pyplot as plt

examples/lines_bars_and_markers/scatter_symbol.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,10 @@
33
Scatter Symbol
44
==============
55
6-
Scatter plot with symbols.
7-
In this example clovers are used.
6+
Scatter plot with clover symbols.
87
98
"""
10-
from matplotlib import pyplot as plt
9+
import matplotlib.pyplot as plt
1110
import numpy as np
1211
import matplotlib
1312

0 commit comments

Comments
 (0)
0