]> git.friedersdorff.com Git - max/plotting_with_matplotlib.git/commitdiff
fix: Fix typo sow -> show
authorMaximilian Friedersdorff <max@friedersdorff.com>
Wed, 30 Jan 2019 22:20:06 +0000 (22:20 +0000)
committerMaximilian Friedersdorff <max@friedersdorff.com>
Wed, 30 Jan 2019 22:20:06 +0000 (22:20 +0000)
slides.rst

index 97eca223066488d9c5dacf70a260797a6f12948d..79c4685e3b5297ce84f14f204d14a4069a5d57e3 100644 (file)
@@ -115,7 +115,7 @@ Subplots
 Saving Plots
 ------------
 
-So far I've just displayed plots with ``plt.sow()``.  You can actually save 
+So far I've just displayed plots with ``plt.show()``.  You can actually save 
 the plots from that interface manually, but when scripting, it's convenient
 to do so automatically:
 
@@ -124,8 +124,7 @@ to do so automatically:
    >>> # Some plotting has previously occured
    >>> plt.savefig('eggs.pdf', dpi=300, transparent=False)
 
-The output format is interpreted from the file extension.
-
+The output format is interpreted from the file extension.  
 The keyword arguments are optional here.  Other options exist.
 
 Error Bars