Skip to content

Commit d049722

Browse files
committed
Added confidence interval notebook
1 parent 30b1981 commit d049722

29 files changed

+4436
-30
lines changed

.DS_Store

0 Bytes
Binary file not shown.

Statistics/.DS_Store

2 KB
Binary file not shown.
8 KB
Binary file not shown.

Statistics/confidence_interval/.ipynb_checkpoints/confidence_Interval-checkpoint.ipynb

Lines changed: 2723 additions & 0 deletions
Large diffs are not rendered by default.

Statistics/confidence_interval/.ipynb_checkpoints/confidence_interval_good-checkpoint.ipynb

Lines changed: 1536 additions & 0 deletions
Large diffs are not rendered by default.

Statistics/confidence_Interval.ipynb renamed to Statistics/confidence_interval/confidence_Interval.ipynb

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -2644,36 +2644,6 @@
26442644
"result_0_1, _ = quad(normalProbabilityDensity, 0, 1, limit = 1000)"
26452645
]
26462646
},
2647-
{
2648-
"cell_type": "markdown",
2649-
"metadata": {},
2650-
"source": [
2651-
"## Now lets look at Box Plots"
2652-
]
2653-
},
2654-
{
2655-
"cell_type": "markdown",
2656-
"metadata": {},
2657-
"source": []
2658-
},
2659-
{
2660-
"cell_type": "code",
2661-
"execution_count": null,
2662-
"metadata": {
2663-
"collapsed": true
2664-
},
2665-
"outputs": [],
2666-
"source": []
2667-
},
2668-
{
2669-
"cell_type": "code",
2670-
"execution_count": null,
2671-
"metadata": {
2672-
"collapsed": true
2673-
},
2674-
"outputs": [],
2675-
"source": []
2676-
},
26772647
{
26782648
"cell_type": "markdown",
26792649
"metadata": {},

Statistics/confidence_interval_good.ipynb renamed to Statistics/confidence_interval/confidence_interval_good.ipynb

Lines changed: 177 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,182 @@
11
{
22
"cells": [
3+
{
4+
"cell_type": "code",
5+
"execution_count": 1,
6+
"metadata": {
7+
"collapsed": true
8+
},
9+
"outputs": [],
10+
"source": [
11+
"# Import all libraries for the rest of the blog post\n",
12+
"from scipy.integrate import quad\n",
13+
"import numpy as np\n",
14+
"import matplotlib.pyplot as plt\n",
15+
"%matplotlib inline"
16+
]
17+
},
18+
{
19+
"cell_type": "code",
20+
"execution_count": null,
21+
"metadata": {
22+
"collapsed": true
23+
},
24+
"outputs": [],
25+
"source": []
26+
},
27+
{
28+
"cell_type": "code",
29+
"execution_count": null,
30+
"metadata": {
31+
"collapsed": true
32+
},
33+
"outputs": [],
34+
"source": []
35+
},
36+
{
37+
"cell_type": "code",
38+
"execution_count": null,
39+
"metadata": {
40+
"collapsed": true
41+
},
42+
"outputs": [],
43+
"source": []
44+
},
45+
{
46+
"cell_type": "code",
47+
"execution_count": null,
48+
"metadata": {
49+
"collapsed": true
50+
},
51+
"outputs": [],
52+
"source": []
53+
},
54+
{
55+
"cell_type": "code",
56+
"execution_count": null,
57+
"metadata": {
58+
"collapsed": true
59+
},
60+
"outputs": [],
61+
"source": []
62+
},
63+
{
64+
"cell_type": "code",
65+
"execution_count": null,
66+
"metadata": {
67+
"collapsed": true
68+
},
69+
"outputs": [],
70+
"source": []
71+
},
72+
{
73+
"cell_type": "code",
74+
"execution_count": null,
75+
"metadata": {
76+
"collapsed": true
77+
},
78+
"outputs": [],
79+
"source": []
80+
},
81+
{
82+
"cell_type": "code",
83+
"execution_count": null,
84+
"metadata": {
85+
"collapsed": true
86+
},
87+
"outputs": [],
88+
"source": []
89+
},
90+
{
91+
"cell_type": "code",
92+
"execution_count": null,
93+
"metadata": {
94+
"collapsed": true
95+
},
96+
"outputs": [],
97+
"source": []
98+
},
99+
{
100+
"cell_type": "code",
101+
"execution_count": null,
102+
"metadata": {
103+
"collapsed": true
104+
},
105+
"outputs": [],
106+
"source": []
107+
},
108+
{
109+
"cell_type": "code",
110+
"execution_count": null,
111+
"metadata": {
112+
"collapsed": true
113+
},
114+
"outputs": [],
115+
"source": []
116+
},
117+
{
118+
"cell_type": "code",
119+
"execution_count": null,
120+
"metadata": {
121+
"collapsed": true
122+
},
123+
"outputs": [],
124+
"source": []
125+
},
126+
{
127+
"cell_type": "code",
128+
"execution_count": null,
129+
"metadata": {
130+
"collapsed": true
131+
},
132+
"outputs": [],
133+
"source": []
134+
},
135+
{
136+
"cell_type": "code",
137+
"execution_count": null,
138+
"metadata": {
139+
"collapsed": true
140+
},
141+
"outputs": [],
142+
"source": []
143+
},
144+
{
145+
"cell_type": "code",
146+
"execution_count": null,
147+
"metadata": {
148+
"collapsed": true
149+
},
150+
"outputs": [],
151+
"source": []
152+
},
153+
{
154+
"cell_type": "code",
155+
"execution_count": null,
156+
"metadata": {
157+
"collapsed": true
158+
},
159+
"outputs": [],
160+
"source": []
161+
},
162+
{
163+
"cell_type": "code",
164+
"execution_count": null,
165+
"metadata": {
166+
"collapsed": true
167+
},
168+
"outputs": [],
169+
"source": []
170+
},
171+
{
172+
"cell_type": "code",
173+
"execution_count": null,
174+
"metadata": {
175+
"collapsed": true
176+
},
177+
"outputs": [],
178+
"source": []
179+
},
3180
{
4181
"cell_type": "markdown",
5182
"metadata": {},
6 KB
Binary file not shown.
210 KB
Loading
208 KB
Loading

0 commit comments

Comments
 (0)