Browse Source

Update with new project.

master
Josh Mudge 5 years ago
parent
commit
db350ff59b
  1. 16
      Codecademy.md
  2. 395
      Codecadmey Projects/Reggie's+Linear+Regression/.ipynb_checkpoints/Reggie_Linear_Regression_Skeleton-checkpoint.ipynb
  3. 395
      Codecadmey Projects/Reggie's+Linear+Regression/Reggie_Linear_Regression_Skeleton.ipynb
  4. 420
      Codecadmey Projects/Reggie's+Linear+Regression/Reggie_Linear_Regression_Solution.ipynb
  5. BIN
      Codecadmey Projects/Reggie's+Linear+Regression/__MACOSX/._Reggie_Linear_Regression_Skeleton.ipynb
  6. BIN
      Codecadmey Projects/Reggie's+Linear+Regression/__MACOSX/._Reggie_Linear_Regression_Solution.ipynb

16
Codecademy.md

@ -300,6 +300,13 @@ You can manipulate lists with list comprehensions as well:
fahrenheit = [celsius * (9 / 5) + 32 for celsius in celsius]
```
### Print every other element
```
odd = [odd for odd in lst if lst.index(odd) % 2 == 1]
return odd
```
### Print manipulated numbers in for loop
```
single_digits = range(10)
@ -345,6 +352,15 @@ You can get a range of numbers using `range()`
It will give you all numbers under the number you input. For example, `range(8)` would give you 0-7, `range(1, 8)` would give you 1-7, and `range(1, 8, 2)` would give you 1,3,5,7 (2 is the interval and needs no padding) Use `print(list(var))` when printing.
### Ranges and list manipulation
You can combine `range()` with list manipulation like this:
```
for index in range(1, len(lst), 2):
new_list.append(lst[index])
```
## length
Grab length with `len(list)`

395
Codecadmey Projects/Reggie's+Linear+Regression/.ipynb_checkpoints/Reggie_Linear_Regression_Skeleton-checkpoint.ipynb

@ -0,0 +1,395 @@
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Project: Linear Regression\n",
"\n",
"Reggie is a mad scientist who has been hired by the local fast food joint to build their newest ball pit in the play area. As such, he is working on researching the bounciness of different balls so as to optimize the pit. He is running an experiment to bounce different sizes of bouncy balls, and then fitting lines to the data points he records. He has heard of linear regression, but needs your help to implement a version of linear regression in Python.\n",
"\n",
"_Linear Regression_ is when you have a group of points on a graph, and you find a line that approximately resembles that group of points. A good Linear Regression algorithm minimizes the _error_, or the distance from each point to the line. A line with the least error is the line that fits the data the best. We call this a line of _best fit_.\n",
"\n",
"We will use loops, lists, and arithmetic to create a function that will find a line of best fit when given a set of data.\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Part 1: Calculating Error"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"\n",
"The line we will end up with will have a formula that looks like:\n",
"```\n",
"y = m*x + b\n",
"```\n",
"`m` is the slope of the line and `b` is the intercept, where the line crosses the y-axis.\n",
"\n",
"Fill in the function called `get_y()` that takes in `m`, `b`, and `x`. It should return what the `y` value would be for that `x` on that line!\n"
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"True\n",
"True\n"
]
}
],
"source": [
"def get_y(m, b, x):\n",
" y = m*x + b\n",
" return y\n",
"\n",
"print(get_y(1, 0, 7) == 7)\n",
"print(get_y(5, 10, 3) == 25)\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"\n",
"Reggie wants to try a bunch of different `m` values and `b` values and see which line produces the least error. To calculate error between a point and a line, he wants a function called `calculate_error()`, which will take in `m`, `b`, and an [x, y] point called `point` and return the distance between the line and the point.\n",
"\n",
"To find the distance:\n",
"1. Get the x-value from the point and store it in a variable called `x_point`\n",
"2. Get the y-value from the point and store it in a variable called `y_point`\n",
"3. Use `get_y()` to get the y-value that `x_point` would be on the line\n",
"4. Find the difference between the y from `get_y` and `y_point`\n",
"5. Return the absolute value of the distance (you can use the built-in function `abs()` to do this)\n",
"\n",
"The distance represents the error between the line `y = m*x + b` and the `point` given.\n"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [],
"source": [
"#Write your calculate_error() function here\n",
"\n",
"def calculate_error(m, b, point):\n",
" x_point = point[0]\n",
" y_point = point[1]\n",
" \n",
" y2 = get_y(m, b, x_point)\n",
" \n",
" y_diff = y_point - y2\n",
" y_diff = abs(y_diff)\n",
" return y_diff\n",
" "
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Let's test this function!"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"0\n",
"1\n",
"1\n",
"5\n"
]
}
],
"source": [
"#this is a line that looks like y = x, so (3, 3) should lie on it. thus, error should be 0:\n",
"print(calculate_error(1, 0, (3, 3)))\n",
"#the point (3, 4) should be 1 unit away from the line y = x:\n",
"print(calculate_error(1, 0, (3, 4)))\n",
"#the point (3, 3) should be 1 unit away from the line y = x - 1:\n",
"print(calculate_error(1, -1, (3, 3)))\n",
"#the point (3, 3) should be 5 units away from the line y = -x + 1:\n",
"print(calculate_error(-1, 1, (3, 3)))"
]
},
{
"cell_type": "markdown",
"metadata": {
"collapsed": true
},
"source": [
"Great! Reggie's datasets will be sets of points. For example, he ran an experiment comparing the width of bouncy balls to how high they bounce:\n"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [],
"source": [
"datapoints = [(1, 2), (2, 0), (3, 4), (4, 4), (5, 3)]"
]
},
{
"cell_type": "markdown",
"metadata": {
"collapsed": true
},
"source": [
"The first datapoint, `(1, 2)`, means that his 1cm bouncy ball bounced 2 meters. The 4cm bouncy ball bounced 4 meters.\n",
"\n",
"As we try to fit a line to this data, we will need a function called `calculate_all_error`, which takes `m` and `b` that describe a line, and `points`, a set of data like the example above.\n",
"\n",
"`calculate_all_error` should iterate through each `point` in `points` and calculate the error from that point to the line (using `calculate_error`). It should keep a running total of the error, and then return that total after the loop.\n"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [],
"source": [
"#Write your calculate_all_error function here\n",
"\n",
"def calculate_all_error(m, b, points):\n",
" totalerror = 0\n",
" for point in points:\n",
" totalerror += calculate_error(m, b, point)\n",
" \n",
" return totalerror"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Let's test this function!"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"0\n",
"4\n",
"4\n",
"18\n"
]
}
],
"source": [
"#every point in this dataset lies upon y=x, so the total error should be zero:\n",
"datapoints = [(1, 1), (3, 3), (5, 5), (-1, -1)]\n",
"print(calculate_all_error(1, 0, datapoints))\n",
"\n",
"#every point in this dataset is 1 unit away from y = x + 1, so the total error should be 4:\n",
"datapoints = [(1, 1), (3, 3), (5, 5), (-1, -1)]\n",
"print(calculate_all_error(1, 1, datapoints))\n",
"\n",
"#every point in this dataset is 1 unit away from y = x - 1, so the total error should be 4:\n",
"datapoints = [(1, 1), (3, 3), (5, 5), (-1, -1)]\n",
"print(calculate_all_error(1, -1, datapoints))\n",
"\n",
"\n",
"#the points in this dataset are 1, 5, 9, and 3 units away from y = -x + 1, respectively, so total error should be\n",
"# 1 + 5 + 9 + 3 = 18\n",
"datapoints = [(1, 1), (3, 3), (5, 5), (-1, -1)]\n",
"print(calculate_all_error(-1, 1, datapoints))"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Great! It looks like we now have a function that can take in a line and Reggie's data and return how much error that line produces when we try to fit it to the data.\n",
"\n",
"Our next step is to find the `m` and `b` that minimizes this error, and thus fits the data best!\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Part 2: Try a bunch of slopes and intercepts!\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"The way Reggie wants to find a line of best fit is by trial and error. He wants to try a bunch of different slopes (`m` values) and a bunch of different intercepts (`b` values) and see which one produces the smallest error value for his dataset.\n",
"\n",
"Using a list comprehension, let's create a list of possible `m` values to try. Make the list `possible_ms` that goes from -10 to 10 inclusive, in increments of 0.1.\n",
"\n",
"Hint (to view this hint, either double-click this cell or highlight the following white space): <font color=\"white\">you can go through the values in range(-100, 100) and multiply each one by 0.1</font>\n",
"\n"
]
},
{
"cell_type": "code",
"execution_count": 13,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"possible_ms = #your list comprehension here "
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Now, let's make a list of `possible_bs` to check that would be the values from -20 to 20 inclusive, in steps of 0.1:"
]
},
{
"cell_type": "code",
"execution_count": 14,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"possible_bs = #your list comprehension here"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"We are going to find the smallest error. First, we will make every possible `y = m*x + b` line by pairing all of the possible `m`s with all of the possible `b`s. Then, we will see which `y = m*x + b` line produces the smallest total error with the set of data stored in `datapoint`.\n",
"\n",
"First, create the variables that we will be optimizing:\n",
"* `smallest_error` &mdash; this should start at infinity (`float(\"inf\")`) so that any error we get at first will be smaller than our value of `smallest_error`\n",
"* `best_m` &mdash; we can start this at `0`\n",
"* `best_b` &mdash; we can start this at `0`\n",
"\n",
"We want to:\n",
"* Iterate through each element `m` in `possible_ms`\n",
"* For every `m` value, take every `b` value in `possible_bs`\n",
"* If the value returned from `calculate_all_error` on this `m` value, this `b` value, and `datapoints` is less than our current `smallest_error`,\n",
"* Set `best_m` and `best_b` to be these values, and set `smallest_error` to this error.\n",
"\n",
"By the end of these nested loops, the `smallest_error` should hold the smallest error we have found, and `best_m` and `best_b` should be the values that produced that smallest error value.\n",
"\n",
"Print out `best_m`, `best_b` and `smallest_error` after the loops.\n",
"\n"
]
},
{
"cell_type": "code",
"execution_count": 15,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"0.30000000000000004 1.7000000000000002 4.999999999999999\n"
]
}
],
"source": []
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Part 3: What does our model predict?\n",
"\n",
"Now we have seen that for this set of observations on the bouncy balls, the line that fits the data best has an `m` of 0.3 and a `b` of 1.7:\n",
"\n",
"```\n",
"y = 0.3x + 1.7\n",
"```\n",
"\n",
"This line produced a total error of 5.\n",
"\n",
"Using this `m` and this `b`, what does your line predict the bounce height of a ball with a width of 6 to be?\n",
"In other words, what is the output of `get_y()` when we call it with:\n",
"* m = 0.3\n",
"* b = 1.7\n",
"* x = 6"
]
},
{
"cell_type": "code",
"execution_count": 16,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"3.5"
]
},
"execution_count": 16,
"metadata": {},
"output_type": "execute_result"
}
],
"source": []
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Our model predicts that the 6cm ball will bounce 3.5m.\n",
"\n",
"Now, Reggie can use this model to predict the bounce of all kinds of sizes of balls he may choose to include in the ball pit!"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.1"
}
},
"nbformat": 4,
"nbformat_minor": 2
}

395
Codecadmey Projects/Reggie's+Linear+Regression/Reggie_Linear_Regression_Skeleton.ipynb

@ -0,0 +1,395 @@
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Project: Linear Regression\n",
"\n",
"Reggie is a mad scientist who has been hired by the local fast food joint to build their newest ball pit in the play area. As such, he is working on researching the bounciness of different balls so as to optimize the pit. He is running an experiment to bounce different sizes of bouncy balls, and then fitting lines to the data points he records. He has heard of linear regression, but needs your help to implement a version of linear regression in Python.\n",
"\n",
"_Linear Regression_ is when you have a group of points on a graph, and you find a line that approximately resembles that group of points. A good Linear Regression algorithm minimizes the _error_, or the distance from each point to the line. A line with the least error is the line that fits the data the best. We call this a line of _best fit_.\n",
"\n",
"We will use loops, lists, and arithmetic to create a function that will find a line of best fit when given a set of data.\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Part 1: Calculating Error"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"\n",
"The line we will end up with will have a formula that looks like:\n",
"```\n",
"y = m*x + b\n",
"```\n",
"`m` is the slope of the line and `b` is the intercept, where the line crosses the y-axis.\n",
"\n",
"Fill in the function called `get_y()` that takes in `m`, `b`, and `x`. It should return what the `y` value would be for that `x` on that line!\n"
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"True\n",
"True\n"
]
}
],
"source": [
"def get_y(m, b, x):\n",
" y = m*x + b\n",
" return y\n",
"\n",
"print(get_y(1, 0, 7) == 7)\n",
"print(get_y(5, 10, 3) == 25)\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"\n",
"Reggie wants to try a bunch of different `m` values and `b` values and see which line produces the least error. To calculate error between a point and a line, he wants a function called `calculate_error()`, which will take in `m`, `b`, and an [x, y] point called `point` and return the distance between the line and the point.\n",
"\n",
"To find the distance:\n",
"1. Get the x-value from the point and store it in a variable called `x_point`\n",
"2. Get the y-value from the point and store it in a variable called `y_point`\n",
"3. Use `get_y()` to get the y-value that `x_point` would be on the line\n",
"4. Find the difference between the y from `get_y` and `y_point`\n",
"5. Return the absolute value of the distance (you can use the built-in function `abs()` to do this)\n",
"\n",
"The distance represents the error between the line `y = m*x + b` and the `point` given.\n"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [],
"source": [
"#Write your calculate_error() function here\n",
"\n",
"def calculate_error(m, b, point):\n",
" x_point = point[0]\n",
" y_point = point[1]\n",
" \n",
" y2 = get_y(m, b, x_point)\n",
" \n",
" y_diff = y_point - y2\n",
" y_diff = abs(y_diff)\n",
" return y_diff\n",
" "
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Let's test this function!"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"0\n",
"1\n",
"1\n",
"5\n"
]
}
],
"source": [
"#this is a line that looks like y = x, so (3, 3) should lie on it. thus, error should be 0:\n",
"print(calculate_error(1, 0, (3, 3)))\n",
"#the point (3, 4) should be 1 unit away from the line y = x:\n",
"print(calculate_error(1, 0, (3, 4)))\n",
"#the point (3, 3) should be 1 unit away from the line y = x - 1:\n",
"print(calculate_error(1, -1, (3, 3)))\n",
"#the point (3, 3) should be 5 units away from the line y = -x + 1:\n",
"print(calculate_error(-1, 1, (3, 3)))"
]
},
{
"cell_type": "markdown",
"metadata": {
"collapsed": true
},
"source": [
"Great! Reggie's datasets will be sets of points. For example, he ran an experiment comparing the width of bouncy balls to how high they bounce:\n"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [],
"source": [
"datapoints = [(1, 2), (2, 0), (3, 4), (4, 4), (5, 3)]"
]
},
{
"cell_type": "markdown",
"metadata": {
"collapsed": true
},
"source": [
"The first datapoint, `(1, 2)`, means that his 1cm bouncy ball bounced 2 meters. The 4cm bouncy ball bounced 4 meters.\n",
"\n",
"As we try to fit a line to this data, we will need a function called `calculate_all_error`, which takes `m` and `b` that describe a line, and `points`, a set of data like the example above.\n",
"\n",
"`calculate_all_error` should iterate through each `point` in `points` and calculate the error from that point to the line (using `calculate_error`). It should keep a running total of the error, and then return that total after the loop.\n"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [],
"source": [
"#Write your calculate_all_error function here\n",
"\n",
"def calculate_all_error(m, b, points):\n",
" totalerror = 0\n",
" for point in points:\n",
" totalerror += calculate_error(m, b, point)\n",
" \n",
" return totalerror"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Let's test this function!"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"0\n",
"4\n",
"4\n",
"18\n"
]
}
],
"source": [
"#every point in this dataset lies upon y=x, so the total error should be zero:\n",
"datapoints = [(1, 1), (3, 3), (5, 5), (-1, -1)]\n",
"print(calculate_all_error(1, 0, datapoints))\n",
"\n",
"#every point in this dataset is 1 unit away from y = x + 1, so the total error should be 4:\n",
"datapoints = [(1, 1), (3, 3), (5, 5), (-1, -1)]\n",
"print(calculate_all_error(1, 1, datapoints))\n",
"\n",
"#every point in this dataset is 1 unit away from y = x - 1, so the total error should be 4:\n",
"datapoints = [(1, 1), (3, 3), (5, 5), (-1, -1)]\n",
"print(calculate_all_error(1, -1, datapoints))\n",
"\n",
"\n",
"#the points in this dataset are 1, 5, 9, and 3 units away from y = -x + 1, respectively, so total error should be\n",
"# 1 + 5 + 9 + 3 = 18\n",
"datapoints = [(1, 1), (3, 3), (5, 5), (-1, -1)]\n",
"print(calculate_all_error(-1, 1, datapoints))"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Great! It looks like we now have a function that can take in a line and Reggie's data and return how much error that line produces when we try to fit it to the data.\n",
"\n",
"Our next step is to find the `m` and `b` that minimizes this error, and thus fits the data best!\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Part 2: Try a bunch of slopes and intercepts!\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"The way Reggie wants to find a line of best fit is by trial and error. He wants to try a bunch of different slopes (`m` values) and a bunch of different intercepts (`b` values) and see which one produces the smallest error value for his dataset.\n",
"\n",
"Using a list comprehension, let's create a list of possible `m` values to try. Make the list `possible_ms` that goes from -10 to 10 inclusive, in increments of 0.1.\n",
"\n",
"Hint (to view this hint, either double-click this cell or highlight the following white space): <font color=\"white\">you can go through the values in range(-100, 100) and multiply each one by 0.1</font>\n",
"\n"
]
},
{
"cell_type": "code",
"execution_count": 13,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"possible_ms = #your list comprehension here "
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Now, let's make a list of `possible_bs` to check that would be the values from -20 to 20 inclusive, in steps of 0.1:"
]
},
{
"cell_type": "code",
"execution_count": 14,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"possible_bs = #your list comprehension here"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"We are going to find the smallest error. First, we will make every possible `y = m*x + b` line by pairing all of the possible `m`s with all of the possible `b`s. Then, we will see which `y = m*x + b` line produces the smallest total error with the set of data stored in `datapoint`.\n",
"\n",
"First, create the variables that we will be optimizing:\n",
"* `smallest_error` &mdash; this should start at infinity (`float(\"inf\")`) so that any error we get at first will be smaller than our value of `smallest_error`\n",
"* `best_m` &mdash; we can start this at `0`\n",
"* `best_b` &mdash; we can start this at `0`\n",
"\n",
"We want to:\n",
"* Iterate through each element `m` in `possible_ms`\n",
"* For every `m` value, take every `b` value in `possible_bs`\n",
"* If the value returned from `calculate_all_error` on this `m` value, this `b` value, and `datapoints` is less than our current `smallest_error`,\n",
"* Set `best_m` and `best_b` to be these values, and set `smallest_error` to this error.\n",
"\n",
"By the end of these nested loops, the `smallest_error` should hold the smallest error we have found, and `best_m` and `best_b` should be the values that produced that smallest error value.\n",
"\n",
"Print out `best_m`, `best_b` and `smallest_error` after the loops.\n",
"\n"
]
},
{
"cell_type": "code",
"execution_count": 15,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"0.30000000000000004 1.7000000000000002 4.999999999999999\n"
]
}
],
"source": []
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Part 3: What does our model predict?\n",
"\n",
"Now we have seen that for this set of observations on the bouncy balls, the line that fits the data best has an `m` of 0.3 and a `b` of 1.7:\n",
"\n",
"```\n",
"y = 0.3x + 1.7\n",
"```\n",
"\n",
"This line produced a total error of 5.\n",
"\n",
"Using this `m` and this `b`, what does your line predict the bounce height of a ball with a width of 6 to be?\n",
"In other words, what is the output of `get_y()` when we call it with:\n",
"* m = 0.3\n",
"* b = 1.7\n",
"* x = 6"
]
},
{
"cell_type": "code",
"execution_count": 16,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"3.5"
]
},
"execution_count": 16,
"metadata": {},
"output_type": "execute_result"
}
],
"source": []
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Our model predicts that the 6cm ball will bounce 3.5m.\n",
"\n",
"Now, Reggie can use this model to predict the bounce of all kinds of sizes of balls he may choose to include in the ball pit!"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.1"
}
},
"nbformat": 4,
"nbformat_minor": 2
}

420
Codecadmey Projects/Reggie's+Linear+Regression/Reggie_Linear_Regression_Solution.ipynb

@ -0,0 +1,420 @@
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Project: Linear Regression\n",
"\n",
"Reggie is a mad scientist who has been hired by the local fast food joint to build their newest ball pit in the play area. As such, he is working on researching the bounciness of different balls so as to optimize the pit. He is running an experiment to bounce different sizes of bouncy balls, and then fitting lines to the data points he records. He has heard of linear regression, but needs your help to implement a version of linear regression in Python.\n",
"\n",
"_Linear Regression_ is when you have a group of points on a graph, and you find a line that approximately resembles that group of points. A good Linear Regression algorithm minimizes the _error_, or the distance from each point to the line. A line with the least error is the line that fits the data the best. We call this a line of _best fit_.\n",
"\n",
"We will use loops, lists, and arithmetic to create a function that will find a line of best fit when given a set of data.\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Part 1: Calculating Error"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"\n",
"The line we will end up with will have a formula that looks like:\n",
"```\n",
"y = m*x + b\n",
"```\n",
"`m` is the slope of the line and `b` is the intercept, where the line crosses the y-axis.\n",
"\n",
"Create a function called `get_y()` that takes in `m`, `b`, and `x` and returns what the `y` value would be for that `x` on that line!\n"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"True"
]
},
"execution_count": 2,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"def get_y(m, b, x):\n",
" y = m*x + b\n",
" return y\n",
"\n",
"get_y(1, 0, 7) == 7\n",
"get_y(5, 10, 3) == 25\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"\n",
"Reggie wants to try a bunch of different `m` values and `b` values and see which line produces the least error. To calculate error between a point and a line, he wants a function called `calculate_error()`, which will take in `m`, `b`, and an [x, y] point called `point` and return the distance between the line and the point.\n",
"\n",
"To find the distance:\n",
"1. Get the x-value from the point and store it in a variable called `x_point`\n",
"2. Get the y-value from the point and store it in a variable called `y_point`\n",
"3. Use `get_y()` to get the y-value that `x_point` would be on the line\n",
"4. Find the difference between the y from `get_y` and `y_point`\n",
"5. Return the absolute value of the distance (you can use the built-in function `abs()` to do this)\n",
"\n",
"The distance represents the error between the line `y = m*x + b` and the `point` given.\n"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"def calculate_error(m, b, point):\n",
" x_point, y_point = point\n",
" y = m*x_point + b\n",
" distance = abs(y - y_point)\n",
" return distance\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Let's test this function!"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"0\n",
"1\n",
"1\n",
"5\n"
]
}
],
"source": [
"#this is a line that looks like y = x, so (3, 3) should lie on it. thus, error should be 0:\n",
"print(calculate_error(1, 0, (3, 3)))\n",
"#the point (3, 4) should be 1 unit away from the line y = x:\n",
"print(calculate_error(1, 0, (3, 4)))\n",
"#the point (3, 3) should be 1 unit away from the line y = x - 1:\n",
"print(calculate_error(1, -1, (3, 3)))\n",
"#the point (3, 3) should be 5 units away from the line y = -x + 1:\n",
"print(calculate_error(-1, 1, (3, 3)))"
]
},
{
"cell_type": "markdown",
"metadata": {
"collapsed": true
},
"source": [
"Great! Reggie's datasets will be sets of points. For example, he ran an experiment comparing the width of bouncy balls to how high they bounce:\n"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"datapoints = [(1, 2), (2, 0), (3, 4), (4, 4), (5, 3)]"
]
},
{
"cell_type": "markdown",
"metadata": {
"collapsed": true
},
"source": [
"The first datapoint, `(1, 2)`, means that his 1cm bouncy ball bounced 2 meters. The 4cm bouncy ball bounced 4 meters.\n",
"\n",
"As we try to fit a line to this data, we will need a function called `calculate_all_error`, which takes `m` and `b` that describe a line, and `points`, a set of data like the example above.\n",
"\n",
"`calculate_all_error` should iterate through each `point` in `points` and calculate the error from that point to the line (using `calculate_error`). It should keep a running total of the error, and then return that total after the loop.\n"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"def calculate_all_error(m, b, points):\n",
" total_error = 0\n",
" for point in datapoints:\n",
" point_error = calculate_error(m, b, point)\n",
" total_error += point_error\n",
" return total_error"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Let's test this function!"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"0\n",
"4\n",
"4\n",
"18\n"
]
}
],
"source": [
"#every point in this dataset lies upon y=x, so the total error should be zero:\n",
"datapoints = [(1, 1), (3, 3), (5, 5), (-1, -1)]\n",
"print(calculate_all_error(1, 0, datapoints))\n",
"\n",
"#every point in this dataset is 1 unit away from y = x + 1, so the total error should be 4:\n",
"datapoints = [(1, 1), (3, 3), (5, 5), (-1, -1)]\n",
"print(calculate_all_error(1, 1, datapoints))\n",
"\n",
"#every point in this dataset is 1 unit away from y = x - 1, so the total error should be 4:\n",
"datapoints = [(1, 1), (3, 3), (5, 5), (-1, -1)]\n",
"print(calculate_all_error(1, -1, datapoints))\n",
"\n",
"\n",
"#the points in this dataset are 1, 5, 9, and 3 units away from y = -x + 1, respectively, so total error should be\n",
"# 1 + 5 + 9 + 3 = 18\n",
"datapoints = [(1, 1), (3, 3), (5, 5), (-1, -1)]\n",
"print(calculate_all_error(-1, 1, datapoints))"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Great! It looks like we now have a function that can take in a line and Reggie's data and return how much error that line produces when we try to fit it to the data.\n",
"\n",
"Our next step is to find the `m` and `b` that minimizes this error, and thus fits the data best!\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Part 2: Try a bunch of slopes and intercepts!"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"The way Reggie wants to find a line of best fit is by trial and error. He wants to try a bunch of different slopes (`m` values) and a bunch of different intercepts (`b` values) and see which one produces the smallest error value for his dataset.\n",
"\n",
"Using a list comprehension, let's create a list of possible `m` values to try. Make the list `possible_ms` that goes from -10 to 10 inclusive, in increments of 0.1.\n",
"\n",
"Hint (to view this hint, either double-click this cell or highlight the following white space): <font color=\"white\">you can go through the values in range(-100, 100) and multiply each one by 0.1</font>\n",
"\n"
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"possible_ms = [m * 0.1 for m in range(-100, 101)]"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Now, let's make a list of `possible_bs` to check that would be the values from -20 to 20 inclusive, in steps of 0.1:"
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"possible_bs = [b * 0.1 for b in range(-200, 201)]"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"We are going to find the smallest error. First, we will make every possible `y = m*x + b` line by pairing all of the possible `m`s with all of the possible `b`s. Then, we will see which `y = m*x + b` line produces the smallest total error with the set of data stored in `datapoint`.\n",
"\n",
"First, create the variables that we will be optimizing:\n",
"* `smallest_error` &mdash; this should start at infinity (`float(\"inf\")`) so that any error we get at first will be smaller than our value of `smallest_error`\n",
"* `best_m` &mdash; we can start this at `0`\n",
"* `best_b` &mdash; we can start this at `0`\n",
"\n",
"We want to:\n",
"* Iterate through each element `m` in `possible_ms`\n",
"* For every `m` value, take every `b` value in `possible_bs`\n",
"* If the value returned from `calculate_all_error` on this `m` value, this `b` value, and `datapoints` is less than our current `smallest_error`,\n",
"* Set `best_m` and `best_b` to be these values, and set `smallest_error` to this error.\n",
"\n",
"By the end of these nested loops, the `smallest_error` should hold the smallest error we have found, and `best_m` and `best_b` should be the values that produced that smallest error value.\n",
"\n",
"Print out `best_m`, `best_b` and `smallest_error` after the loops.\n",
"\n"
]
},
{
"cell_type": "code",
"execution_count": 12,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"0.30000000000000004 1.7000000000000002 4.999999999999999\n"
]
}
],
"source": [
"datapoints = [(1, 2), (2, 0), (3, 4), (4, 4), (5, 3)]\n",
"smallest_error = float(\"inf\")\n",
"best_m = 0\n",
"best_b = 0\n",
"\n",
"for m in possible_ms:\n",
" for b in possible_bs:\n",
" \t error = calculate_all_error(m, b, datapoints)\n",
" \t if error < smallest_error:\n",
" \t\t best_m = m\n",
" \t\t best_b = b\n",
" \t\t smallest_error = error\n",
" \t \n",
"print(best_m, best_b, smallest_error)\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Part 3: What does our model predict?\n",
"\n",
"Now we have seen that for this set of observations on the bouncy balls, the line that fits the data best has an `m` of 0.3 and a `b` of 1.7:\n",
"\n",
"```\n",
"y = 0.3x + 1.7\n",
"```\n",
"\n",
"This line produced a total error of 5.\n",
"\n",
"Using this `m` and this `b`, what does your line predict the bounce height of a ball with a width of 6 to be?\n",
"In other words, what is the output of `get_y()` when we call it with:\n",
"* m = 0.3\n",
"* b = 1.7\n",
"* x = 6"
]
},
{
"cell_type": "code",
"execution_count": 13,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"3.5"
]
},
"execution_count": 13,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"get_y(0.3, 1.7, 6)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Our model predicts that the 6cm ball will bounce 3.5m.\n",
"\n",
"Now, Reggie can use this model to predict the bounce of all kinds of sizes of balls he may choose to include in the ball pit!"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.1"
}
},
"nbformat": 4,
"nbformat_minor": 2
}

BIN
Codecadmey Projects/Reggie's+Linear+Regression/__MACOSX/._Reggie_Linear_Regression_Skeleton.ipynb

Binary file not shown.

BIN
Codecadmey Projects/Reggie's+Linear+Regression/__MACOSX/._Reggie_Linear_Regression_Solution.ipynb

Binary file not shown.
Loading…
Cancel
Save