|
|
@@ -0,0 +1,29 @@
|
|
|
+{
|
|
|
+ "cells": [
|
|
|
+ {
|
|
|
+ "cell_type": "code",
|
|
|
+ "execution_count": null,
|
|
|
+ "metadata": {},
|
|
|
+ "outputs": [],
|
|
|
+ "source": [
|
|
|
+ "import pandas as pd\n",
|
|
|
+ "import numpy as np\n",
|
|
|
+ "from sklearn import preprocessing\n",
|
|
|
+ "import matplotlib.pyplot as plt \n",
|
|
|
+ "plt.rc(\"font\", size=14)\n",
|
|
|
+ "from sklearn.linear_model import LogisticRegression\n",
|
|
|
+ "from sklearn.cross_validation import train_test_split\n",
|
|
|
+ "import seaborn as sns\n",
|
|
|
+ "sns.set(style=\"white\")\n",
|
|
|
+ "sns.set(style=\"whitegrid\", color_codes=True)"
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ "metadata": {
|
|
|
+ "language_info": {
|
|
|
+ "name": "python"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "nbformat": 4,
|
|
|
+ "nbformat_minor": 2
|
|
|
+}
|