• SciKit - Simple Linear Regression

    Newark Liberty International Airport (EWR) wanted to predict the arrival delay of an incoming flight based on the departure delay. 50 recent flights were randomly selected, and the arrival and departure delays (in minutes) were recorded.Predict the arrival delay for a flight that departed 9 minutes late, and assign variable yHat with the prediction.

  • Least Squares QQ Plot

    The code fits a simple linear regression model object using the crab data. Residual plots are created using the fitted model.

  • Import Warnings & 3D Graph Model

    Demonstrates ability to work with Import Warning and Graphs in Jupyter Notebooks with Python

  • Lists

    Demonstrates the ability to use Python to create lists, sorts lists, and get values from lists

  • Lists of Lists

    Demonstrates ability to use Python lists to create other lists and manipulate data from the source list or the created lists.

  • For Loops

    Demonstrates ability to run regular and nested For Loops using Python

  • Read File

    Demonstrates the ability to use Python to open files, read the data, and store the data as a usable variable.