File size: 282 Bytes
714e7c4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #################
Nested page plots
#################
Plot 1 does not use context:
.. plot::
plt.plot(range(10))
plt.title('FIRST NESTED 1')
a = 10
Plot 2 doesn't use context either; has length 6:
.. plot::
plt.plot(range(6))
plt.title('FIRST NESTED 2')
|