Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 15a769c

Browse files
committed
Small header comment fixes
1 parent 6a18d9c commit 15a769c

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

examples/units/artist_tests.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
66
Test unit support with each of the Matplotlib primitive artist types.
77
8-
The axis handles unit conversions and the artists keep a pointer to
9-
their axis parent, so you must initialize the artists with the axis instance
10-
if you want to use them with unit data, or else they will not
11-
know how to convert the units to scalars.
8+
The axis handles unit conversions and the artists keep a pointer to their axis
9+
parent. You must initialize the artists with the axis instance if you want to
10+
use them with unit data, or else they will not know how to convert the units
11+
to scalars.
1212
"""
1313
import random
1414
import matplotlib.lines as lines

examples/units/bar_demo2.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,11 @@
33
Bar demo with units
44
===================
55
6-
A plot using a variety of centimetre vs inches conversions. This example shows
7-
how default unit introspection works (ax1), how various keywords can
8-
be used to set the x and y units to override the defaults (ax2, ax3,
9-
ax4) and how one can set the xlimits using scalars (ax3, current units
10-
assumed) or units (conversions applied to get the numbers to current
11-
units).
6+
A plot using a variety of centimetre and inch conversions. This example shows
7+
how default unit introspection works (ax1), how various keywords can be used to
8+
set the x and y units to override the defaults (ax2, ax3, ax4) and how one can
9+
set the xlimits using scalars (ax3, current units assumed) or units
10+
(conversions applied to get the numbers to current units).
1211
1312
"""
1413
import numpy as np

0 commit comments

Comments
 (0)