diff options
author | Santosh G. Vattam | 2010-01-05 15:23:02 +0530 |
---|---|---|
committer | Santosh G. Vattam | 2010-01-05 15:23:02 +0530 |
commit | 40143d0f21438479e204f8c415698fe7c9ac36fe (patch) | |
tree | 01ab9ea0019ca45828493ce373737f38240e9279 /day1/cheatsheet3.tex | |
parent | e60b5c2290e99fb20d141be90ed5655335a1e8e9 (diff) | |
parent | 0b19439dc11ce0c1b09f82eec22e773cca815e11 (diff) | |
download | workshops-40143d0f21438479e204f8c415698fe7c9ac36fe.tar.gz workshops-40143d0f21438479e204f8c415698fe7c9ac36fe.tar.bz2 workshops-40143d0f21438479e204f8c415698fe7c9ac36fe.zip |
Branches merged.
Diffstat (limited to 'day1/cheatsheet3.tex')
-rwxr-xr-x | day1/cheatsheet3.tex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/day1/cheatsheet3.tex b/day1/cheatsheet3.tex index db50de3..244cb86 100755 --- a/day1/cheatsheet3.tex +++ b/day1/cheatsheet3.tex @@ -69,7 +69,7 @@ Drawing Pie Charts \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 @@ In []: a + b #Sum; Element-wise \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} |