summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJovina2011-05-10 02:40:42 -0700
committerJovina2011-05-10 02:40:42 -0700
commitde3f0f226a59cf12d12b6f8bec8af94c1753bd56 (patch)
tree665583effab631239aed85b9f20065ea67b90376
parent08d400a1c6633a517c8a58afa50291ea8f8f91e0 (diff)
downloadst-scripts-de3f0f226a59cf12d12b6f8bec8af94c1753bd56.tar.gz
st-scripts-de3f0f226a59cf12d12b6f8bec8af94c1753bd56.tar.bz2
st-scripts-de3f0f226a59cf12d12b6f8bec8af94c1753bd56.zip
Minor changes to the script 'Saving plots'.
-rw-r--r--saving_plots/script.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/saving_plots/script.rst b/saving_plots/script.rst
index bca9141..9f93d8c 100644
--- a/saving_plots/script.rst
+++ b/saving_plots/script.rst
@@ -229,7 +229,7 @@ This brings us to the end of this tutorial,
let's revise quickly what we have learnt today
1. to save plots using the ``savefig()`` function.
- #. to save the plots in differnt formats like
+ #. to save the plots in different formats like
- pdf
- ps
- png
@@ -252,7 +252,7 @@ Here are some self assessment questions for you to solve
2. ``savefig('sine.png')`` saves the plot in,
- The root directory ``/`` (on GNU/Linux, Unix based systems)
- ``c:\`` (on windows).
+ ``c:\`` (on windows).
- Will result in an error as full path is not supplied.
- The current working directory.
- Predefined directory like ``/documents``.
@@ -269,9 +269,9 @@ Here are some self assessment questions for you to solve
And the answers,
-1.To save a plot,we use the ``savefig()`` function.
+1. To save a plot,we use the ``savefig()`` function.
-2.Whenever we save a file,it gets saved in the current working directory.
+2. Whenever we save a file,it gets saved in the current working directory.
.. L22