Skip to content

Instantly share code, notes, and snippets.

View decisionstats's full-sized avatar

Ajay Ohri decisionstats

  • Decisionstats.com
  • Internet
View GitHub Profile
{
"cells": [
{
"cell_type": "code",
"execution_count": 53,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Welcome to the mostly complete pandas cheatsheet of fast data manipulation methods!\n",
"Apart from aspiring to be an extensive glossary of your go-to book for fastest methods in Pandas, this is also a gentle introduction to Jupyter notebooks."
]
},
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"https://s3.amazonaws.com/quandl-static-content/Documents/Quandl+-+Pandas,+SciPy,+NumPy+Cheat+Sheet.pdf\n",
"Quandl Cheat Sheet"
]
},
{
"cells": [
{
"cell_type": "code",
"execution_count": 48,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
@decisionstats
decisionstats / Anscombe Dataset
Created July 6, 2016 23:04
Anscombe Dataset to show importance of data visualization
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Importing Packages"
]
},
{
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"- Import Package \n",
"We import the pandas package with the alias pd\n",
"- Import Data\n",
"We import the Boston Dataset from \n",
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Numerical Operations"
]
},
{