Skip to content

Instantly share code, notes, and snippets.

View tuf22191's full-sized avatar

Muhammad Ayub tuf22191

  • Philadelphia, PA
View GitHub Profile
@tuf22191
tuf22191 / knn_5_1_2018
Created May 3, 2018 01:49
K Nearest Neighbors Using Pandas
{
"cells": [
{
"cell_type": "code",
"execution_count": 133,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
@tuf22191
tuf22191 / Linear Regression 5 3 2018
Created May 4, 2018 03:55
Linear Regression: Looking at World's Billionaire Population as a function of time
{
"cells": [
{
"cell_type": "code",
"execution_count": 2,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
@tuf22191
tuf22191 / Linear Programming Solver 5 10 2018
Created May 17, 2018 23:31
Linear Programming Simplex Method!
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"In this tutorial we are going to build our very own practical linear programming solver using the Simplex Method. We are going to do the standard MAXIMIZATION (not minimization) problem discussed in the video above (here is a link just in case: https://www.youtube.com/watch?v=XK26I9eoSl8&t=300s) . Another great article to understand linear programming some more is here https://www.analyticsvidhya.com/blog/2017/02/lintroductory-guide-on-linear-programming-explained-in-simple-english/. as well."
]
},
{
{
"cells": [
{
"cell_type": "code",
"execution_count": 15,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [