Skip to content

Instantly share code, notes, and snippets.

View drmingle's full-sized avatar

Damian Mingle drmingle

View GitHub Profile
title author date
Arithmetic Essentials
Damian Mingle
05/05/2018

Assign values to variables

a = 11
title author date
Transpose A Vector Or A Matrix
Damian Mingle
05/08/2018

Preliminaries

import numpy as np
title author date
Create a Sparse Matrix
Damian Mingle
06/07/2018

Preliminaries

# Bring in libraries
title author date
Convert Pandas Categorical Data For SciKit-Learn
Damian Mingle
06/08/2018

Preliminaries

# Bring in libraries
title author date
Detecting Outliers
Damian Mingle
06/10/2018

Preliminaries

# Load libraries
title author date
Applying Functions To List Items
Damian Mingle
05/05/2018

Create a list of philosophers

philosopherNames = ['Aristotle', 'Plato', 'Socrates', 'Rene Descartes', 'Albert Camus']
@drmingle
drmingle / Drop Columns and Rows in Pandas.ipynb
Created December 16, 2018 11:49
Learn how to drop columns and rows in a pandas dataframe
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Error in user YAML: (<unknown>): did not find expected key while parsing a block mapping at line 1 column 1
---
title: "Perceptron In SciKit-Learn
author: "Damian Mingle"
date: 04/30/2018
---

The perceptron is a supervised learning algorithm which uses a set of function to learn from inputs to determine if they belong to some class or not. It was one of the earliest machine learning techniques used and still is at the center of many modern neural networks.

Preliminaries