You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+11
Original file line number
Diff line number
Diff line change
@@ -71,3 +71,14 @@ The main libraries used in this analysis were:</br>
71
71
[Plotly](https://plotly.com/python/), it's Python graphing library, makes interactive, publication-quality graphs.</br>
72
72
[Matplotlib](https://matplotlib.org/) is a comprehensive library for creating static, animated, and interactive visualisations in Python.</br>
73
73
[SciPy](https://docs.scipy.org/doc/scipy/index.html) is an open-source software for mathematics, science, and engineering (for calculating the t-statistic and the p-value).</br>
74
+
75
+
## 10_Predict_House_Prices
76
+
In this project, we will use data from the UCI ML housing dataset, https://archive.ics.uci.edu/ml/machine-learning-databases/housing/. This data set includes 14 characteristics describing the housing market in the Boston area in the 1970s.
77
+
We will analyse the data, and based on that, we will build a multivariable regression model to predict house prices in this area. We will divide the data set into two categories: one that will be used to train or find the parameters for our multivariable linear regression, and the other that will be used for testing.
78
+
The price will be the target value, and the rest of the characteristics (13 in total, like CRIM (crime rate), RM (number of rooms), and NOX (pollution)) will be used as factors to determine the price.
79
+
The features will be analysed and checked to see if they are sufficient for predicting house prices.
80
+
The main libraries used in this analysis were:</br>
81
+
[Seaborn](https://seaborn.pydata.org/index.html), which is based on Matplotlib for generating different kinds of charts.</br>
82
+
[Plotly](https://plotly.com/python/), it's Python graphing library, makes interactive, publication-quality graphs.</br>
83
+
[Matplotlib](https://matplotlib.org/) is a comprehensive library for creating static, animated, and interactive visualisations in Python.</br>
84
+
[SciPy](https://docs.scipy.org/doc/scipy/index.html) is an open-source software for mathematics, science, and engineering (for calculating the t-statistic and the p-value).</br>
0 commit comments