Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Simple Linear Regresion by Hilary #138

Closed
wants to merge 58 commits into from
Closed
Changes from 4 commits
Commits
Show all changes
58 commits
Select commit Hold shift + click to select a range
d8a9e64
Update student.ipynb
clydeochieng Apr 27, 2024
edf85ba
Update student.ipynb
clydeochieng Apr 27, 2024
9a91482
Update README.md
clydeochieng Apr 27, 2024
44945a8
Update student.ipynb
clydeochieng Apr 27, 2024
cc69bf6
Update README.md
clydeochieng Apr 27, 2024
69d9b53
Update student.ipynb
clydeochieng Apr 27, 2024
47f9a23
Update student.ipynb
clydeochieng Apr 28, 2024
f790467
Update student.ipynb
clydeochieng Apr 28, 2024
d0245ea
Update student.ipynb
clydeochieng Apr 28, 2024
a6a8120
Update student.ipynb
clydeochieng Apr 28, 2024
5d27220
Update student.ipynb
clydeochieng Apr 29, 2024
5617545
Update student.ipynb
clydeochieng Apr 30, 2024
ce7d81d
Update student.ipynb
clydeochieng Apr 30, 2024
26261b7
Update student.ipynb
clydeochieng Apr 30, 2024
6c8c8b7
Update student.ipynb
clydeochieng Apr 30, 2024
5927602
Merge branch 'main' into Clyde
clydeochieng Apr 30, 2024
c70e37b
Merge pull request #3 from clydeochieng/Clyde
clydeochieng Apr 30, 2024
faab87e
Update student.ipynb
clydeochieng Apr 30, 2024
42bea00
Update student.ipynb
clydeochieng Apr 30, 2024
872b835
Update student.ipynb
clydeochieng Apr 30, 2024
d068fa1
Update student.ipynb
clydeochieng Apr 30, 2024
18077fa
Update student.ipynb
clydeochieng Apr 30, 2024
457ad7c
Update student.ipynb
clydeochieng Apr 30, 2024
e409f03
Update student.ipynb
clydeochieng Apr 30, 2024
9824144
Update student.ipynb
clydeochieng Apr 30, 2024
b05f711
Update student.ipynb
clydeochieng Apr 30, 2024
990054e
Update student.ipynb
clydeochieng May 1, 2024
57e844e
Update student.ipynb
clydeochieng May 1, 2024
455095c
Merge branch 'main' into Clyde
clydeochieng May 1, 2024
406ad55
Merge pull request #5 from clydeochieng/Clyde
clydeochieng May 1, 2024
aa1c14e
Update student.ipynb
clydeochieng May 1, 2024
cbb5de1
Update student.ipynb
clydeochieng May 1, 2024
9035926
Update student.ipynb
clydeochieng May 1, 2024
da626e5
Update student.ipynb
clydeochieng May 1, 2024
48e9997
Update student.ipynb
clydeochieng May 1, 2024
571eda3
Update student.ipynb
clydeochieng May 1, 2024
0edfa11
Update student.ipynb
clydeochieng May 1, 2024
9d60525
Update student.ipynb
clydeochieng May 1, 2024
14adaad
Update student.ipynb
clydeochieng May 1, 2024
4275e4e
Update student.ipynb
clydeochieng May 1, 2024
11616b1
Update student.ipynb
clydeochieng May 1, 2024
7d271f1
Update student.ipynb
clydeochieng May 1, 2024
100b237
Update student.ipynb
clydeochieng May 1, 2024
2353438
Update student.ipynb
clydeochieng May 1, 2024
1f4df67
Merge branch 'main' into Clyde
clydeochieng May 1, 2024
2886960
Merge pull request #6 from clydeochieng/Clyde
clydeochieng May 1, 2024
045ce61
Update student.ipynb
clydeochieng May 1, 2024
6565f7f
Update student.ipynb
clydeochieng May 1, 2024
89189c4
Update student.ipynb
clydeochieng May 1, 2024
637a010
Merge branch 'main' into Clyde
clydeochieng May 1, 2024
0225a1e
Merge pull request #7 from clydeochieng/Clyde
clydeochieng May 1, 2024
d3f256b
Update student.ipynb
clydeochieng May 1, 2024
192c53b
added libraries
clydeochieng May 1, 2024
febd3bf
added eda
Keter22 May 1, 2024
dde3c61
Merge pull request #8 from clydeochieng/Kiprotich
clydeochieng May 1, 2024
4a8e311
create functions for regression
May 1, 2024
2f65aa7
create model results
May 1, 2024
514e95c
simple linear regression done
May 1, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 26 additions & 1 deletion student.ipynb
Original file line number Diff line number Diff line change
@@ -91,11 +91,36 @@
"source": [
"## Data Loading\n",
"\n"

]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Data Loading\n",
"\n",
"#### Import Necessary Libraries\n"


"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"import matplotlib.pyplot as plt\n",
"%matplotlib inline\n",
"import numpy as np\n",
"import pandas as pd\n",
"import scipy.stats as stats\n",
"import seaborn as sns\n",
"import statsmodels.api as sm"
]
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 2,


"metadata": {},
"outputs": [],
"source": [