day1/cheatsheet3.tex
changeset 334 2214b5dba4d4
parent 330 46533051b9d3
child 437 3547b6f299b4
--- a/day1/cheatsheet3.tex	Tue Dec 29 19:02:01 2009 +0530
+++ b/day1/cheatsheet3.tex	Tue Dec 29 19:25:11 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}