Skip to content

Commit

Permalink
Merge pull request #4884 from ericmjl/manual_axis.py_mep12
Browse files Browse the repository at this point in the history
mep12 on manual_axis.py
  • Loading branch information
jenshnielsen committed Aug 11, 2015
2 parents 7900ee4 + 21dfdff commit 9e905ce
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions examples/pylab_examples/manual_axis.py
Expand Up @@ -5,11 +5,10 @@
This example should be considered deprecated and is left just for demo
purposes for folks wanting to make a pseudo-axis
"""

import numpy as np
from pylab import figure, show
import matplotlib.pyplot as plt
import matplotlib.lines as lines


Expand Down Expand Up @@ -47,7 +46,7 @@ def make_yaxis(ax, xloc=0, offset=0.05, **props):
props = dict(color='black', linewidth=2, markeredgewidth=2)
x = np.arange(200.)
y = np.sin(2*np.pi*x/200.) + np.random.rand(200) - 0.5
fig = figure(facecolor='white')
fig = plt.figure(facecolor='white')
ax = fig.add_subplot(111, frame_on=False)
ax.axison = False
ax.plot(x, y, 'd', markersize=8, markerfacecolor='blue')
Expand All @@ -56,4 +55,4 @@ def make_yaxis(ax, xloc=0, offset=0.05, **props):
make_xaxis(ax, 0, offset=0.1, **props)
make_yaxis(ax, 0, offset=5, **props)

show()
plt.show()

0 comments on commit 9e905ce

Please sign in to comment.