Changes to slides on plotting data
authorAmit Sethi
Tue, 09 Nov 2010 17:37:03 +0530
changeset 429 bb6bab81e9f2
parent 428 0385c3157fd1
child 430 7b2275daab60
Changes to slides on plotting data
plotting-data/script.rst
plotting-data/slides.org
plotting-data/slides.tex
--- a/plotting-data/script.rst	Tue Nov 09 17:15:49 2010 +0530
+++ b/plotting-data/script.rst	Tue Nov 09 17:37:03 2010 +0530
@@ -167,13 +167,13 @@
 
 In this tutorial we have learnt : 
 
-1. How to declare a sequence of number , specifically the kind of sequence we learned was a list.
+1. How to declare a sequence of numbers.
 
-2. Plotting experimental data extending our knowledge from mathematical functions. 
+2. Plotting experimental data.
 
 3. The various options available for plotting dots instead of lines.
 
-4. Plotting experimental data such that we can also represent error. We did this using the errorbar() function.
+4. Plotting experimental data such that we can also represent error. 
 
 
  {{{ Show the "sponsored by FOSSEE" slide }}}
--- a/plotting-data/slides.org	Tue Nov 09 17:15:49 2010 +0530
+++ b/plotting-data/slides.org	Tue Nov 09 17:37:03 2010 +0530
@@ -75,12 +75,14 @@
  
 * Plotting Error bar 
   
-  : In[]: errorbar(L,tsquare,xerr=delta_L, yerr=delta_T,
-  :                fmt='b.')
+  : In[]: errorbar(L,tsquare,xerr=delta_L,
+  :                yerr=delta_T,fmt='b.')
+                  
 
 * Summary 
  : L = [0.1, 0.2, 0.3, 0.4, 0.5,                                             |
  :      0.6, 0.7, 0.8, 0.9]  
  : plot(x,y,'o')
  : plot(x,y,'.')
- : errorbar(L,tsquare,xerr=delta_L, yerr=delta_T, fmt='b.')    
+ : errorbar(L,tsquare,xerr=delta_L, 
+ :          yerr=delta_T, fmt='b.')    
--- a/plotting-data/slides.tex	Tue Nov 09 17:15:49 2010 +0530
+++ b/plotting-data/slides.tex	Tue Nov 09 17:37:03 2010 +0530
@@ -1,4 +1,4 @@
-% Created 2010-11-09 Tue 15:09
+% Created 2010-11-09 Tue 17:34
 \documentclass[presentation]{beamer}
 \usepackage[latin1]{inputenc}
 \usepackage[T1]{fontenc}
@@ -121,9 +121,11 @@
 
   
 \begin{verbatim}
-   In[]: errorbar(L,tsquare,xerr=delta_L, yerr=delta_T,
-                  fmt='b.')
+   In[]: errorbar(L,tsquare,xerr=delta_L,
+                  yerr=delta_T,fmt='b.')
 \end{verbatim}
+
+                  
 \end{frame}
 \begin{frame}[fragile]
 \frametitle{Summary}
@@ -134,7 +136,8 @@
        0.6, 0.7, 0.8, 0.9]  
   plot(x,y,'o')
   plot(x,y,'.')
-  errorbar(L,tsquare,xerr=delta_L, yerr=delta_T, fmt='b.')    
+  errorbar(L,tsquare,xerr=delta_L, 
+           yerr=delta_T, fmt='b.')    
 \end{verbatim}
 \end{frame}