Is there a simple way to make a plot with axes that look like those in 
test1.png rather than like those in test.png?  Here is the code that produced 
test.png.  Thanks.

Dave Pine

import numpy as np
import matplotlib.pyplot as plt

t = np.linspace(0., 20., 100)
y = np.sin(t)

fig = plt.figure(1, figsize=(6,3) )
fig.subplots_adjust(bottom=0.2)

ax = fig.add_subplot(1,1,1)
ax.plot(t, y)
ax.set_xlabel('t')
ax.set_ylabel('y')

plt.savefig('test.png')

plt.show()

<<inline: test.png>>

<<inline: test1.png>>

------------------------------------------------------------------------------
Increase Visibility of Your 3D Game App & Earn a Chance To Win $500!
Tap into the largest installed PC base & get more eyes on your game by
optimizing for Intel(R) Graphics Technology. Get started today with the
Intel(R) Software Partner Program. Five $500 cash prizes are up for grabs.
http://p.sf.net/sfu/intelisp-dev2dev
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to