Skip to content

Commit f76ee2d

Browse files
authored
Update README.md
1 parent c8424a6 commit f76ee2d

File tree

1 file changed

+44
-1
lines changed

1 file changed

+44
-1
lines changed

README.md

+44-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,44 @@
1-
# Multiple-Linear-Regression-with-Python
1+
# Multiple-Linear-Regression-with-Python
2+
3+
4+
5+
## Objectives
6+
7+
After completing this lab you will be able to:
8+
9+
* Use scikit-learn to implement Multiple Linear Regression
10+
* Create a model, train it, test it and use the model
11+
12+
13+
<h1>Table of contents</h1>
14+
15+
<div class="alert alert-block alert-info" style="margin-top: 20px">
16+
<ol>
17+
<li><a href="https://#understanding-data">Understanding the Data</a></li>
18+
<li><a href="https://#reading_data">Reading the Data in</a></li>
19+
<li><a href="https://#multiple_regression_model">Multiple Regression Model</a></li>
20+
<li><a href="https://#prediction">Prediction</a></li>
21+
<li><a href="https://#practice">Practice</a></li>
22+
</ol>
23+
</div>
24+
<br>
25+
<hr>
26+
27+
<h2 id="understanding_data">Understanding the Data</h2>
28+
29+
### `FuelConsumption.csv`:
30+
31+
We have downloaded a fuel consumption dataset, **`FuelConsumption.csv`**, which contains model-specific fuel consumption ratings and estimated carbon dioxide emissions for new light-duty vehicles for retail sale in Canada. [Dataset source](http://open.canada.ca/data/en/dataset/98f1a129-f628-4ce4-b24d-6f16bf24dd64?utm_medium=Exinfluencer&utm_source=Exinfluencer&utm_content=000026UJ&utm_term=10006555&utm_id=NA-SkillsNetwork-Channel-SkillsNetworkCoursesIBMDeveloperSkillsNetworkML0101ENSkillsNetwork20718538-2022-01-01)
32+
33+
* **MODELYEAR** e.g. 2014
34+
* **MAKE** e.g. Acura
35+
* **MODEL** e.g. ILX
36+
* **VEHICLE CLASS** e.g. SUV
37+
* **ENGINE SIZE** e.g. 4.7
38+
* **CYLINDERS** e.g 6
39+
* **TRANSMISSION** e.g. A6
40+
* **FUELTYPE** e.g. z
41+
* **FUEL CONSUMPTION in CITY(L/100 km)** e.g. 9.9
42+
* **FUEL CONSUMPTION in HWY (L/100 km)** e.g. 8.9
43+
* **FUEL CONSUMPTION COMB (L/100 km)** e.g. 9.2
44+
* **CO2 EMISSIONS (g/km)** e.g. 182 --> low --> 0

0 commit comments

Comments
 (0)