day1/cheatsheet3.tex
changeset 330 46533051b9d3
parent 295 39d7c4e14585
child 437 3547b6f299b4
--- a/day1/cheatsheet3.tex	Tue Dec 08 13:06:14 2009 +0530
+++ b/day1/cheatsheet3.tex	Tue Dec 22 14:10:37 2009 +0530
@@ -69,7 +69,7 @@
 \begin{lstlisting}
 In []: pie(science.values(), labels=science.keys())
 \end{lstlisting}
-Numpy Arrays
+Arrays
 \begin{lstlisting}
 In []: a = array([1, 2, 3]) #Creating
 In []: b = array([4, 5, 6])
@@ -77,7 +77,7 @@
 \end{lstlisting}
 Numpy statistical operations 
 \begin{lstlisting}
-In []: mean(math_scores)
+In []: mean(math_scores) 
 In []: median(math_scores)
 In []: std(math_scores)
 \end{lstlisting}