Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Matplotlib-Object oriented interface

ax = plt.axes()
ax.plot(x, np.sin(x))
ax.set(xlim=(0, 10), ylim=(-2, 2),
       xlabel='x', ylabel='sin(x)',
       title='A Simple Plot');
Source by jakevdp.github.io #
 
PREVIOUS NEXT
Tagged: #oriented #interface
ADD COMMENT
Topic
Name
7+2 =