equal
deleted
inserted
replaced
|
1 #+LaTeX_CLASS: beamer |
|
2 #+LaTeX_CLASS_OPTIONS: [presentation] |
|
3 #+BEAMER_FRAME_LEVEL: 1 |
|
4 |
|
5 #+BEAMER_HEADER_EXTRA: \usetheme{Warsaw}\useoutertheme{infolines}\usecolortheme{default}\setbeamercovered{transparent} |
|
6 #+COLUMNS: %45ITEM %10BEAMER_env(Env) %10BEAMER_envargs(Env Args) %4BEAMER_col(Col) %8BEAMER_extra(Extra) |
|
7 #+PROPERTY: BEAMER_col_ALL 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1.0 :ETC |
|
8 #+OPTIONS: H:5 num:t toc:nil \n:nil @:t ::t |:t ^:t -:t f:t *:t <:t |
|
9 |
|
10 #+TITLE: Statistics |
|
11 #+AUTHOR: FOSSEE |
|
12 #+DATE: 2010-09-14 Tue |
|
13 #+EMAIL: info@fossee.in |
|
14 |
|
15 # \author[FOSSEE] {FOSSEE} |
|
16 |
|
17 # \institute[IIT Bombay] {Department of Aerospace Engineering\\IIT Bombay} |
|
18 # \date{} |
|
19 |
|
20 * Tutorial Plan |
|
21 ** Doing simple statistical operations in Python |
|
22 ** Using loadtxt to solve statistics problem |
|
23 |
|
24 * Summary |
|
25 ** seq=[1,5,6,8,1,3,4,5] |
|
26 ** sum(seq) |
|
27 ** mean(seq) |
|
28 ** median(seq) |
|
29 ** std(seq) |
|
30 |
|
31 * Summary |
|
32 |
|
33 ** loadtxt |