Git Product home page Git Product logo

ds-skills2-simple-linear-regression-lab's Introduction

Simple Linear Regression - Lab

Introduction

Regression analysis forms the basis of machine learning experiments. Understanding regression will help you to get the foundations of most machine learing algorithms. Ever wondered what's at the heart of an artificial neural network processing unstructured data like music and graphics? It can be linear regression!

Objectives

You will be able to:

  • Calculate the slope of a line using standard slope formula
  • Calculate the y-intercept using the slope value
  • Draw a regression line based on calculated slope and intercept
  • Predict the label of a previously unseen data element

Let's get started

A first step towards understanding regression is getting a clear idea about "linear" regression and basic linear algebra.

The calculation for the best-fit line's slope, m is calculated as :

As in our previous lesson, let's break down the formula into its parts. First we shall import the required libraries and define some data points to work with. We shall first create some toy data as numpy arrays. Let's do this for you to give you a head start.

# import necessary libraries

import numpy as np
import matplotlib.pyplot as plt
from matplotlib import style
style.use('ggplot')

# Initialize vectors X and Y with given values and create a scatter plot
X = np.array([1,2,3,4,5,6,8,8,9,10], dtype=np.float64)
Y = np.array([7,7,8,9,9,10,10,11,11,12], dtype=np.float64)

Show a scatter plot between X and Y and comment on the output

# Scatter plot

png

# Your observations about relationship in X and Y 



#

In a data analysis context, we can think of these points as two vectors:

  • vector X: the features of our model
  • vector Y: the labels for given features

Write a function calc_slope()

Write a function calc_clope() that takes in x and y vectors and calculates the slope using the formula shown above.

# Write the function to calculate slope as: 
# (mean(x) * mean(y) – mean(x*y)) / ( mean (x)^2 – mean( x^2))
def calc_slope(xs,ys):
    
    pass

calc_slope(X,Y)

# 0.5393518518518512

Great, so we have our slope. Next we calculate the intercept.

As a reminder, the calculation for the best-fit line's y-intercept is:

Write a function best_fit()

Write a function best_fit() that takes in X and Y, calculates the slope using above above and intercept using the formula. The function should return slope and intercept values.

# use the slope function with intercept formula to return calculate slop and intercept from data points

def best_fit(xs,ys):
    
    pass

# Uncomment below to test your function

#m, b = best_fit(X,Y)
# m,b

# (0.5393518518518512, 6.379629629629633)

We now have a working model with m and b as model parameters. We can create a line for the data points using the calculated slope and intercept:

  • Recall that y=mx+b. We can now use slope and intercept values along with X data points (features) to calculate the Y data points (labels) of the regression line.

Write a function reg_line()

Write a function reg_line() that takes in slope, intercept and X vector and calculates the regression line using Y= mX+b for each point in X.

def reg_line (m, b, xs):
    
    pass

# Uncomment below
#regression_line = reg_line(m,b,X)

Plot the (x,y) data points and draw the calculated regression line for visual inspection

# Plot data and regression line

png

So there we have it, our least squares regression line. This is the best fit line and does describe the data pretty well (still not perfect though).

Describe your Model Mathematically and in words

# Your answer here

Predicting label for new data

So, how might you go about actually making a prediction based on this model you just made?

Now that we have a working model with m and b as model parameters. We can fill in a value of x with these parameters to identify a corresponding value of y according to our model. Recall the formula

Let's try to find a y prediction for a new value of x = 7 and unknown y, and plot the new prediction with existing data

x_new = 7
y_predicted = None
y_predicted

# 10.155092592592592

Plot the prediction with actual data and regression line

# Plot as above and show the predicted value

png

We now know how to create our own models, which is great, but we're stilling missing something integral: how accurate is our model? This is the topic for discussion in the next lab.

Summary

In this lesson, we learnt how we can draw a best fit line for given data labels and features, by first calculating the slope and intercept. The calculated regression line was then used to predict the label (y-value) of a previously unseen feature (x-value). The lesson uses a simple set of data points for demonstration. Students should be able to plug in other datasets and practice with predictions for accuracy.

ds-skills2-simple-linear-regression-lab's People

Contributors

mathymitchell avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Forkers

doyarzunv

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.