Fixed some slides
authorrivermaker@RivermakerMBP.local
Tue, 27 Oct 2009 12:30:24 +0530
changeset 183 b34c3a22d726
parent 182 56ea84dfe38e
child 184 9efa777af2e2
child 188 15f29c7fd925
Fixed some slides
day1/session2.tex
--- a/day1/session2.tex	Tue Oct 27 12:13:38 2009 +0530
+++ b/day1/session2.tex	Tue Oct 27 12:30:24 2009 +0530
@@ -73,7 +73,7 @@
 
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 % Title page
-\title[Plotting using Python]{Plotting experimental data\\}
+\title[Plotting using Python]{Python for Science and Egg. Plotting experimental data}
 
 \author[FOSSEE] {FOSSEE}
 
@@ -126,16 +126,17 @@
 \begin{frame}
 \frametitle{Why we didn't close the IPython??}
 \begin{itemize}
-  \item Because all the command history is lost
-  \item We can go back, edit, and re-execute our commands
+  \item IPython provides a convenient feature
+  \item To go back, edit, and re-run commands
+  \item But when you close, this is lost
 \end{itemize}
 \end{frame}
 
 \begin{frame}
 \frametitle{But its impractical..}
 \begin{itemize}
-  \item Because we can't always keep running the IPython shell for days
-  \item And lets admit it, its a pain to go back and edit
+  \item We can't keep running the IPython shell for days
+  \item And its a pain to go back and edit
 \end{itemize}
 And the solution is..\\
 \begin{center}
@@ -143,12 +144,12 @@
 \end{center}
 \end{frame}
 
-\section{Creating and running scripts}
+\section{Scripts}
 \begin{frame}[fragile]
 \frametitle{Python Scripts}
 \begin{itemize}
-\item Let us now put all the commands used in the review problem into a file. 
-\item The following commands of IPython help us do this. 
+\item Put all commands used in review problem into a file. 
+\item use hist command of IPython.
 \end{itemize}
 \begin{lstlisting}
   In []: %hist
@@ -169,8 +170,8 @@
 \end{frame}
 
 \begin{frame}[fragile]
-\frametitle{How often do we plot analytical functions?}
-Let us look at a small example:
+  \frametitle{Why would I plot f(x)?}
+How often do we plot analytical functions?\\We plot experimental data more.
 \begin{lstlisting}
 In []: x = [0, 1, 2, 3]
 
@@ -184,7 +185,7 @@
 \begin{frame}[fragile]
 \frametitle{Plotting points}
 \begin{itemize}
-\item What if we want to plot points!
+\item What if we want to plot the points!
 \end{itemize}
 \begin{lstlisting}
   In []: clf()
@@ -210,7 +211,7 @@
 
 \section{Lists}
 \begin{frame}[fragile]
-  \frametitle{How to create?}
+  \frametitle{How to create the data?}
 What are \typ{x} and \typ{y} here??\\
 \begin{center}
 \alert{\typ{lists!!}}
@@ -286,15 +287,9 @@
 \end{lstlisting}
 \end{frame}
 
-\begin{frame}{New Concepts}
-  \begin{itemize}
-    \item lists
-    \item \typ{for}
-  \end{itemize}
-\end{frame}
 
 \begin{frame}[fragile]
-\frametitle{\texttt{for}}
+\frametitle{More of \texttt{for}}
 Used to iterate over lists\\ Let us look at another example.
 \begin{lstlisting}
 In []: lst = [1,2,3,4,5,6]