other-type-of-plots/script.rst
changeset 288 a3b98b4c371e
parent 261 c7f0069d698a
child 308 0a0a91fb3a0d
--- a/other-type-of-plots/script.rst	Mon Oct 11 12:49:08 2010 +0530
+++ b/other-type-of-plots/script.rst	Mon Oct 11 14:02:36 2010 +0530
@@ -20,7 +20,6 @@
 log plot. We will also see few other plots and also introduce you to
 the matplotlib help.
 
-
 Let us start with scatter plot. 
 
 {{{ switch to the next slide }}}
@@ -55,11 +54,12 @@
 
 {{{ close the file and switch to the terminal }}}
 
-To product the scatter plot first we need to load the data from the
+To produce the scatter plot first we need to load the data from the
 file using ``loadtxt``. We learned in one of the previous sessions,
 and it can be done as ::
 
-    year,profit = loadtxt('/home/fossee/other-plot/company-a-data.txt',dtype=type(int()))
+    year,profit =
+    loadtxt('/home/fossee/other-plot/company-a-data.txt',dtype=type(int()))
 
 Now in-order to generate the scatter graph we will use the function 
 ``scatter()`` 
@@ -100,9 +100,9 @@
 
    pie(profit,labels=year)
 
-Notice that we passed two arguments to the function ``pie()``. The
-first one the values and the next one the set of labels to be used in
-the pie chart.
+Notice that we passed two arguments to the function ``pie()``. First
+one the values and the next one the set of labels to be used in the
+pie chart.
 
 {{{ switch to the next slide which has the problem statement of
 problem to be tried out }}}
@@ -195,14 +195,10 @@
 Help about matplotlib can be obtained from
 matplotlib.sourceforge.net/contents.html
 
-.. #[[Anoop: I am not so sure how to do the rest of it, so I guess we
-   can just browse through the side and tell them few. What is your
-   opinion??]]
 
-Now let us see few plots from
-matplotlib.sourceforge.net/users/screenshots.html
-
-{{{ browse through the site quickly }}}
+More plots can be seen at
+matplotlib.sourceforge.net/users/screenshots.html and also at
+matplotlib.sourceforge.net/gallery.html
 
 {{{ switch to recap slide }}}