8000 Fix small error made when rebasing · matplotlib/matplotlib@e1421c6 · GitHub
[go: up one dir, main page]

Skip to content

Commit e1421c6

Browse files
committed
Fix small error made when rebasing
1 parent 0584483 commit e1421c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/api/engineering_formatter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# Create artificial data to plot.
1818
# The x data span over several decades to demonstrate several SI prefixes.
1919
xs = np.logspace(1, 9, 100)
20-
ys = (0.8 + 0.4*np.random.uniform(size=100))*np.log10(xs)**2
20+
ys = (0.8 + 0.4*prng.uniform(size=100))*np.log10(xs)**2
2121

2222
# Figure width is doubled (2*6.4) to display nicely 2 subplots side by side.
2323
fig, (ax0, ax1) = plt.subplots(ncols=2, figsize=(12.8, 4.8))

0 commit comments

Comments
 (0)
0