Skip to content

Commit 8d93e4f

Browse files
committed
included stats2
1 parent da1d214 commit 8d93e4f

File tree

3 files changed

+280
-166
lines changed

3 files changed

+280
-166
lines changed

biostatistics/Stats2.pdf

812 KB
Binary file not shown.

biostatistics/Untitled.ipynb

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"id": "4a26232c",
6+
"metadata": {},
7+
"source": [
8+
"# Descriptive statistics"
9+
]
10+
},
11+
{
12+
"cell_type": "code",
13+
"execution_count": 1,
14+
"id": "21cf78a6",
15+
"metadata": {},
16+
"outputs": [],
17+
"source": [
18+
"import numpy as np\n",
19+
"import seaborn as sns\n",
20+
"import scipy.stats as st\n",
21+
"import matplotlib.pyplot as plt\n",
22+
"import matplotlib.mlab as mlab\n",
23+
"import pandas as pd\n",
24+
"import statsmodels.api as sm\n",
25+
"import statistics\n",
26+
"import os \n",
27+
"from scipy.stats import norm"
28+
]
29+
},
30+
{
31+
"cell_type": "markdown",
32+
"id": "ffb951eb",
33+
"metadata": {},
34+
"source": [
35+
"## Probability data, binomial distribution"
36+
]
37+
},
38+
{
39+
"cell_type": "code",
40+
"execution_count": null,
41+
"id": "543de0c2",
42+
"metadata": {},
43+
"outputs": [],
44+
"source": []
45+
}
46+
],
47+
"metadata": {
48+
"kernelspec": {
49+
"display_name": "Python 3",
50+
"language": "python",
51+
"name": "python3"
52+
},
53+
"language_info": {
54+
"codemirror_mode": {
55+
"name": "ipython",
56+
"version": 3
57+
},
58+
"file_extension": ".py",
59+
"mimetype": "text/x-python",
60+
"name": "python",
61+
"nbconvert_exporter": "python",
62+
"pygments_lexer": "ipython3",
63+
"version": "3.9.5"
64+
}
65+
},
66+
"nbformat": 4,
67+
"nbformat_minor": 5
68+
}

0 commit comments

Comments
 (0)