Skip to content

Instantly share code, notes, and snippets.

@bruceoutdoors
Created May 8, 2021 13:56
Show Gist options
  • Save bruceoutdoors/d52fe8f1365a5f32a0c5218a276c7d6f to your computer and use it in GitHub Desktop.
Save bruceoutdoors/d52fe8f1365a5f32a0c5218a276c7d6f to your computer and use it in GitHub Desktop.
Scikit-Learn Tutorial | Machine Learning With Scikit-Learn | Sklearn | Python Tutorial | Simplilearn (https://youtu.be/0Lt9w-BxKFQ)
Display the source blob
Display the rendered blob
Raw
{
"metadata": {
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.8.6"
},
"orig_nbformat": 2,
"kernelspec": {
"name": "python386jvsc74a57bd04cd7ab41f5fca4b9b44701077e38c5ffd31fe66a6cab21e0214b68d958d0e462",
"display_name": "Python 3.8.6 64-bit"
},
"metadata": {
"interpreter": {
"hash": "4cd7ab41f5fca4b9b44701077e38c5ffd31fe66a6cab21e0214b68d958d0e462"
}
}
},
"nbformat": 4,
"nbformat_minor": 2,
"cells": [
{
"source": [
"# Scikit-Learn Tutorial | Machine Learning With Scikit-Learn | Sklearn | Python Tutorial | Simplilearn\n",
"\n",
"https://youtu.be/0Lt9w-BxKFQ"
],
"cell_type": "markdown",
"metadata": {}
},
{
"cell_type": "code",
"execution_count": 28,
"metadata": {},
"outputs": [],
"source": [
"# Importing required packages:\n",
"import pandas as pd\n",
"import seaborn as sns\n",
"import matplotlib.pyplot as plt\n",
"from sklearn.ensemble import RandomForestClassifier\n",
"from sklearn.svm import SVC\n",
"from sklearn import svm\n",
"from sklearn.neural_network import MLPClassifier\n",
"# from sklearn.linear_model import SGDClassifier\n",
"from sklearn.metrics import confusion_matrix, classification_report\n",
"from sklearn.preprocessing import StandardScaler, LabelEncoder\n",
"from sklearn.model_selection import train_test_split\n",
"from sklearn.metrics import accuracy_score\n",
"\n",
"%matplotlib inline"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [],
"source": [
"# Loading dataset\n",
"wine = pd.read_csv('https://archive.ics.uci.edu/ml/machine-learning-databases/wine-quality/winequality-red.csv', sep=';')"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [
{
"output_type": "execute_result",
"data": {
"text/plain": [
" fixed acidity volatile acidity citric acid residual sugar chlorides \\\n",
"0 7.4 0.70 0.00 1.9 0.076 \n",
"1 7.8 0.88 0.00 2.6 0.098 \n",
"2 7.8 0.76 0.04 2.3 0.092 \n",
"3 11.2 0.28 0.56 1.9 0.075 \n",
"4 7.4 0.70 0.00 1.9 0.076 \n",
"\n",
" free sulfur dioxide total sulfur dioxide density pH sulphates \\\n",
"0 11.0 34.0 0.9978 3.51 0.56 \n",
"1 25.0 67.0 0.9968 3.20 0.68 \n",
"2 15.0 54.0 0.9970 3.26 0.65 \n",
"3 17.0 60.0 0.9980 3.16 0.58 \n",
"4 11.0 34.0 0.9978 3.51 0.56 \n",
"\n",
" alcohol quality \n",
"0 9.4 5 \n",
"1 9.8 5 \n",
"2 9.8 5 \n",
"3 9.8 6 \n",
"4 9.4 5 "
],
"text/html": "<div>\n<style scoped>\n .dataframe tbody tr th:only-of-type {\n vertical-align: middle;\n }\n\n .dataframe tbody tr th {\n vertical-align: top;\n }\n\n .dataframe thead th {\n text-align: right;\n }\n</style>\n<table border=\"1\" class=\"dataframe\">\n <thead>\n <tr style=\"text-align: right;\">\n <th></th>\n <th>fixed acidity</th>\n <th>volatile acidity</th>\n <th>citric acid</th>\n <th>residual sugar</th>\n <th>chlorides</th>\n <th>free sulfur dioxide</th>\n <th>total sulfur dioxide</th>\n <th>density</th>\n <th>pH</th>\n <th>sulphates</th>\n <th>alcohol</th>\n <th>quality</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <th>0</th>\n <td>7.4</td>\n <td>0.70</td>\n <td>0.00</td>\n <td>1.9</td>\n <td>0.076</td>\n <td>11.0</td>\n <td>34.0</td>\n <td>0.9978</td>\n <td>3.51</td>\n <td>0.56</td>\n <td>9.4</td>\n <td>5</td>\n </tr>\n <tr>\n <th>1</th>\n <td>7.8</td>\n <td>0.88</td>\n <td>0.00</td>\n <td>2.6</td>\n <td>0.098</td>\n <td>25.0</td>\n <td>67.0</td>\n <td>0.9968</td>\n <td>3.20</td>\n <td>0.68</td>\n <td>9.8</td>\n <td>5</td>\n </tr>\n <tr>\n <th>2</th>\n <td>7.8</td>\n <td>0.76</td>\n <td>0.04</td>\n <td>2.3</td>\n <td>0.092</td>\n <td>15.0</td>\n <td>54.0</td>\n <td>0.9970</td>\n <td>3.26</td>\n <td>0.65</td>\n <td>9.8</td>\n <td>5</td>\n </tr>\n <tr>\n <th>3</th>\n <td>11.2</td>\n <td>0.28</td>\n <td>0.56</td>\n <td>1.9</td>\n <td>0.075</td>\n <td>17.0</td>\n <td>60.0</td>\n <td>0.9980</td>\n <td>3.16</td>\n <td>0.58</td>\n <td>9.8</td>\n <td>6</td>\n </tr>\n <tr>\n <th>4</th>\n <td>7.4</td>\n <td>0.70</td>\n <td>0.00</td>\n <td>1.9</td>\n <td>0.076</td>\n <td>11.0</td>\n <td>34.0</td>\n <td>0.9978</td>\n <td>3.51</td>\n <td>0.56</td>\n <td>9.4</td>\n <td>5</td>\n </tr>\n </tbody>\n</table>\n</div>"
},
"metadata": {},
"execution_count": 3
}
],
"source": [
"wine.head()"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"<class 'pandas.core.frame.DataFrame'>\nRangeIndex: 1599 entries, 0 to 1598\nData columns (total 12 columns):\n # Column Non-Null Count Dtype \n--- ------ -------------- ----- \n 0 fixed acidity 1599 non-null float64\n 1 volatile acidity 1599 non-null float64\n 2 citric acid 1599 non-null float64\n 3 residual sugar 1599 non-null float64\n 4 chlorides 1599 non-null float64\n 5 free sulfur dioxide 1599 non-null float64\n 6 total sulfur dioxide 1599 non-null float64\n 7 density 1599 non-null float64\n 8 pH 1599 non-null float64\n 9 sulphates 1599 non-null float64\n 10 alcohol 1599 non-null float64\n 11 quality 1599 non-null int64 \ndtypes: float64(11), int64(1)\nmemory usage: 150.0 KB\n"
]
}
],
"source": [
"wine.info()"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [
{
"output_type": "execute_result",
"data": {
"text/plain": [
"fixed acidity 0\n",
"volatile acidity 0\n",
"citric acid 0\n",
"residual sugar 0\n",
"chlorides 0\n",
"free sulfur dioxide 0\n",
"total sulfur dioxide 0\n",
"density 0\n",
"pH 0\n",
"sulphates 0\n",
"alcohol 0\n",
"quality 0\n",
"dtype: int64"
]
},
"metadata": {},
"execution_count": 5
}
],
"source": [
"wine.isnull().sum()"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {},
"outputs": [
{
"output_type": "execute_result",
"data": {
"text/plain": [
"['bad', 'good']\n",
"Categories (2, object): ['bad' < 'good']"
]
},
"metadata": {},
"execution_count": 6
}
],
"source": [
"# Preprocessing Data\n",
"bins = (2, 6.5, 8)\n",
"group_names = ['bad','good']\n",
"wine['quality'] = pd.cut(wine['quality'], bins=bins, labels=group_names)\n",
"wine['quality'].unique()"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {},
"outputs": [],
"source": [
"label_quality = LabelEncoder()"
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {},
"outputs": [],
"source": [
"wine['quality'] = label_quality.fit_transform(wine['quality'])"
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {},
"outputs": [
{
"output_type": "execute_result",
"data": {
"text/plain": [
" fixed acidity volatile acidity citric acid residual sugar chlorides \\\n",
"0 7.4 0.70 0.00 1.9 0.076 \n",
"1 7.8 0.88 0.00 2.6 0.098 \n",
"2 7.8 0.76 0.04 2.3 0.092 \n",
"3 11.2 0.28 0.56 1.9 0.075 \n",
"4 7.4 0.70 0.00 1.9 0.076 \n",
"5 7.4 0.66 0.00 1.8 0.075 \n",
"6 7.9 0.60 0.06 1.6 0.069 \n",
"7 7.3 0.65 0.00 1.2 0.065 \n",
"8 7.8 0.58 0.02 2.0 0.073 \n",
"9 7.5 0.50 0.36 6.1 0.071 \n",
"\n",
" free sulfur dioxide total sulfur dioxide density pH sulphates \\\n",
"0 11.0 34.0 0.9978 3.51 0.56 \n",
"1 25.0 67.0 0.9968 3.20 0.68 \n",
"2 15.0 54.0 0.9970 3.26 0.65 \n",
"3 17.0 60.0 0.9980 3.16 0.58 \n",
"4 11.0 34.0 0.9978 3.51 0.56 \n",
"5 13.0 40.0 0.9978 3.51 0.56 \n",
"6 15.0 59.0 0.9964 3.30 0.46 \n",
"7 15.0 21.0 0.9946 3.39 0.47 \n",
"8 9.0 18.0 0.9968 3.36 0.57 \n",
"9 17.0 102.0 0.9978 3.35 0.80 \n",
"\n",
" alcohol quality \n",
"0 9.4 0 \n",
"1 9.8 0 \n",
"2 9.8 0 \n",
"3 9.8 0 \n",
"4 9.4 0 \n",
"5 9.4 0 \n",
"6 9.4 0 \n",
"7 10.0 1 \n",
"8 9.5 1 \n",
"9 10.5 0 "
],
"text/html": "<div>\n<style scoped>\n .dataframe tbody tr th:only-of-type {\n vertical-align: middle;\n }\n\n .dataframe tbody tr th {\n vertical-align: top;\n }\n\n .dataframe thead th {\n text-align: right;\n }\n</style>\n<table border=\"1\" class=\"dataframe\">\n <thead>\n <tr style=\"text-align: right;\">\n <th></th>\n <th>fixed acidity</th>\n <th>volatile acidity</th>\n <th>citric acid</th>\n <th>residual sugar</th>\n <th>chlorides</th>\n <th>free sulfur dioxide</th>\n <th>total sulfur dioxide</th>\n <th>density</th>\n <th>pH</th>\n <th>sulphates</th>\n <th>alcohol</th>\n <th>quality</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <th>0</th>\n <td>7.4</td>\n <td>0.70</td>\n <td>0.00</td>\n <td>1.9</td>\n <td>0.076</td>\n <td>11.0</td>\n <td>34.0</td>\n <td>0.9978</td>\n <td>3.51</td>\n <td>0.56</td>\n <td>9.4</td>\n <td>0</td>\n </tr>\n <tr>\n <th>1</th>\n <td>7.8</td>\n <td>0.88</td>\n <td>0.00</td>\n <td>2.6</td>\n <td>0.098</td>\n <td>25.0</td>\n <td>67.0</td>\n <td>0.9968</td>\n <td>3.20</td>\n <td>0.68</td>\n <td>9.8</td>\n <td>0</td>\n </tr>\n <tr>\n <th>2</th>\n <td>7.8</td>\n <td>0.76</td>\n <td>0.04</td>\n <td>2.3</td>\n <td>0.092</td>\n <td>15.0</td>\n <td>54.0</td>\n <td>0.9970</td>\n <td>3.26</td>\n <td>0.65</td>\n <td>9.8</td>\n <td>0</td>\n </tr>\n <tr>\n <th>3</th>\n <td>11.2</td>\n <td>0.28</td>\n <td>0.56</td>\n <td>1.9</td>\n <td>0.075</td>\n <td>17.0</td>\n <td>60.0</td>\n <td>0.9980</td>\n <td>3.16</td>\n <td>0.58</td>\n <td>9.8</td>\n <td>0</td>\n </tr>\n <tr>\n <th>4</th>\n <td>7.4</td>\n <td>0.70</td>\n <td>0.00</td>\n <td>1.9</td>\n <td>0.076</td>\n <td>11.0</td>\n <td>34.0</td>\n <td>0.9978</td>\n <td>3.51</td>\n <td>0.56</td>\n <td>9.4</td>\n <td>0</td>\n </tr>\n <tr>\n <th>5</th>\n <td>7.4</td>\n <td>0.66</td>\n <td>0.00</td>\n <td>1.8</td>\n <td>0.075</td>\n <td>13.0</td>\n <td>40.0</td>\n <td>0.9978</td>\n <td>3.51</td>\n <td>0.56</td>\n <td>9.4</td>\n <td>0</td>\n </tr>\n <tr>\n <th>6</th>\n <td>7.9</td>\n <td>0.60</td>\n <td>0.06</td>\n <td>1.6</td>\n <td>0.069</td>\n <td>15.0</td>\n <td>59.0</td>\n <td>0.9964</td>\n <td>3.30</td>\n <td>0.46</td>\n <td>9.4</td>\n <td>0</td>\n </tr>\n <tr>\n <th>7</th>\n <td>7.3</td>\n <td>0.65</td>\n <td>0.00</td>\n <td>1.2</td>\n <td>0.065</td>\n <td>15.0</td>\n <td>21.0</td>\n <td>0.9946</td>\n <td>3.39</td>\n <td>0.47</td>\n <td>10.0</td>\n <td>1</td>\n </tr>\n <tr>\n <th>8</th>\n <td>7.8</td>\n <td>0.58</td>\n <td>0.02</td>\n <td>2.0</td>\n <td>0.073</td>\n <td>9.0</td>\n <td>18.0</td>\n <td>0.9968</td>\n <td>3.36</td>\n <td>0.57</td>\n <td>9.5</td>\n <td>1</td>\n </tr>\n <tr>\n <th>9</th>\n <td>7.5</td>\n <td>0.50</td>\n <td>0.36</td>\n <td>6.1</td>\n <td>0.071</td>\n <td>17.0</td>\n <td>102.0</td>\n <td>0.9978</td>\n <td>3.35</td>\n <td>0.80</td>\n <td>10.5</td>\n <td>0</td>\n </tr>\n </tbody>\n</table>\n</div>"
},
"metadata": {},
"execution_count": 9
}
],
"source": [
"wine.head(10)"
]
},
{
"cell_type": "code",
"execution_count": 10,
"metadata": {},
"outputs": [
{
"output_type": "execute_result",
"data": {
"text/plain": [
"0 1382\n",
"1 217\n",
"Name: quality, dtype: int64"
]
},
"metadata": {},
"execution_count": 10
}
],
"source": [
"wine['quality'].value_counts()"
]
},
{
"cell_type": "code",
"execution_count": 11,
"metadata": {},
"outputs": [
{
"output_type": "execute_result",
"data": {
"text/plain": [
"<seaborn.axisgrid.FacetGrid at 0x7fcf25f97ee0>"
]
},
"metadata": {},
"execution_count": 11
},
{
"output_type": "display_data",
"data": {
"text/plain": "<Figure size 360x360 with 1 Axes>",
"image/svg+xml": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\n \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n<!-- Created with matplotlib (https://matplotlib.org/) -->\n<svg height=\"352.15625pt\" version=\"1.1\" viewBox=\"0 0 352.440625 352.15625\" width=\"352.440625pt\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n <metadata>\n <rdf:RDF xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n <cc:Work>\n <dc:type rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\"/>\n <dc:date>2021-05-08T21:32:37.591569</dc:date>\n <dc:format>image/svg+xml</dc:format>\n <dc:creator>\n <cc:Agent>\n <dc:title>Matplotlib v3.3.4, https://matplotlib.org/</dc:title>\n </cc:Agent>\n </dc:creator>\n </cc:Work>\n </rdf:RDF>\n </metadata>\n <defs>\n <style type=\"text/css\">*{stroke-linecap:butt;stroke-linejoin:round;}</style>\n </defs>\n <g id=\"figure_1\">\n <g id=\"patch_1\">\n <path d=\"M 0 352.15625 \nL 352.440625 352.15625 \nL 352.440625 0 \nL 0 0 \nz\n\" style=\"fill:none;\"/>\n </g>\n <g id=\"axes_1\">\n <g id=\"patch_2\">\n <path d=\"M 46.965625 314.6 \nL 345.240625 314.6 \nL 345.240625 7.2 \nL 46.965625 7.2 \nz\n\" style=\"fill:#ffffff;\"/>\n </g>\n <g id=\"patch_3\">\n <path clip-path=\"url(#p88f9115f16)\" d=\"M 60.52358 314.6 \nL 68.997301 314.6 \nL 68.997301 310.457143 \nL 60.52358 310.457143 \nz\n\" style=\"fill:#1f77b4;fill-opacity:0.75;stroke:#000000;stroke-linejoin:miter;stroke-width:0.873828;\"/>\n </g>\n <g id=\"patch_4\">\n <path clip-path=\"url(#p88f9115f16)\" d=\"M 68.997301 314.6 \nL 77.471023 314.6 \nL 77.471023 286.980952 \nL 68.997301 286.980952 \nz\n\" style=\"fill:#1f77b4;fill-opacity:0.75;stroke:#000000;stroke-linejoin:miter;stroke-width:0.873828;\"/>\n </g>\n <g id=\"patch_5\">\n <path clip-path=\"url(#p88f9115f16)\" d=\"M 77.471023 314.6 \nL 85.944744 314.6 \nL 85.944744 286.980952 \nL 77.471023 286.980952 \nz\n\" style=\"fill:#1f77b4;fill-opacity:0.75;stroke:#000000;stroke-linejoin:miter;stroke-width:0.873828;\"/>\n </g>\n <g id=\"patch_6\">\n <path clip-path=\"url(#p88f9115f16)\" d=\"M 85.944744 314.6 \nL 94.418466 314.6 \nL 94.418466 275.933333 \nL 85.944744 275.933333 \nz\n\" style=\"fill:#1f77b4;fill-opacity:0.75;stroke:#000000;stroke-linejoin:miter;stroke-width:0.873828;\"/>\n </g>\n <g id=\"patch_7\">\n <path clip-path=\"url(#p88f9115f16)\" d=\"M 94.418466 314.6 \nL 102.892188 314.6 \nL 102.892188 245.552381 \nL 94.418466 245.552381 \nz\n\" style=\"fill:#1f77b4;fill-opacity:0.75;stroke:#000000;stroke-linejoin:miter;stroke-width:0.873828;\"/>\n </g>\n <g id=\"patch_8\">\n <path clip-path=\"url(#p88f9115f16)\" d=\"M 102.892188 314.6 \nL 111.365909 314.6 \nL 111.365909 166.838095 \nL 102.892188 166.838095 \nz\n\" style=\"fill:#1f77b4;fill-opacity:0.75;stroke:#000000;stroke-linejoin:miter;stroke-width:0.873828;\"/>\n </g>\n <g id=\"patch_9\">\n <path clip-path=\"url(#p88f9115f16)\" d=\"M 111.365909 314.6 \nL 119.839631 314.6 \nL 119.839631 129.552381 \nL 111.365909 129.552381 \nz\n\" style=\"fill:#1f77b4;fill-opacity:0.75;stroke:#000000;stroke-linejoin:miter;stroke-width:0.873828;\"/>\n </g>\n <g id=\"patch_10\">\n <path clip-path=\"url(#p88f9115f16)\" d=\"M 119.839631 314.6 \nL 128.313352 314.6 \nL 128.313352 21.838095 \nL 119.839631 21.838095 \nz\n\" style=\"fill:#1f77b4;fill-opacity:0.75;stroke:#000000;stroke-linejoin:miter;stroke-width:0.873828;\"/>\n </g>\n <g id=\"patch_11\">\n <path clip-path=\"url(#p88f9115f16)\" d=\"M 128.313352 314.6 \nL 136.787074 314.6 \nL 136.787074 111.6 \nL 128.313352 111.6 \nz\n\" style=\"fill:#1f77b4;fill-opacity:0.75;stroke:#000000;stroke-linejoin:miter;stroke-width:0.873828;\"/>\n </g>\n <g id=\"patch_12\">\n <path clip-path=\"url(#p88f9115f16)\" d=\"M 136.787074 314.6 \nL 145.260795 314.6 \nL 145.260795 89.504762 \nL 136.787074 89.504762 \nz\n\" style=\"fill:#1f77b4;fill-opacity:0.75;stroke:#000000;stroke-linejoin:miter;stroke-width:0.873828;\"/>\n </g>\n <g id=\"patch_13\">\n <path clip-path=\"url(#p88f9115f16)\" d=\"M 145.260795 314.6 \nL 153.734517 314.6 \nL 153.734517 161.314286 \nL 145.260795 161.314286 \nz\n\" style=\"fill:#1f77b4;fill-opacity:0.75;stroke:#000000;stroke-linejoin:miter;stroke-width:0.873828;\"/>\n </g>\n <g id=\"patch_14\">\n <path clip-path=\"url(#p88f9115f16)\" d=\"M 153.734517 314.6 \nL 162.208239 314.6 \nL 162.208239 170.980952 \nL 153.734517 170.980952 \nz\n\" style=\"fill:#1f77b4;fill-opacity:0.75;stroke:#000000;stroke-linejoin:miter;stroke-width:0.873828;\"/>\n </g>\n <g id=\"patch_15\">\n <path clip-path=\"url(#p88f9115f16)\" d=\"M 162.208239 314.6 \nL 170.68196 314.6 \nL 170.68196 193.07619 \nL 162.208239 193.07619 \nz\n\" style=\"fill:#1f77b4;fill-opacity:0.75;stroke:#000000;stroke-linejoin:miter;stroke-width:0.873828;\"/>\n </g>\n <g id=\"patch_16\">\n <path clip-path=\"url(#p88f9115f16)\" d=\"M 170.68196 314.6 \nL 179.155682 314.6 \nL 179.155682 219.314286 \nL 170.68196 219.314286 \nz\n\" style=\"fill:#1f77b4;fill-opacity:0.75;stroke:#000000;stroke-linejoin:miter;stroke-width:0.873828;\"/>\n </g>\n <g id=\"patch_17\">\n <path clip-path=\"url(#p88f9115f16)\" d=\"M 179.155682 314.6 \nL 187.629403 314.6 \nL 187.629403 257.980952 \nL 179.155682 257.980952 \nz\n\" style=\"fill:#1f77b4;fill-opacity:0.75;stroke:#000000;stroke-linejoin:miter;stroke-width:0.873828;\"/>\n </g>\n <g id=\"patch_18\">\n <path clip-path=\"url(#p88f9115f16)\" d=\"M 187.629403 314.6 \nL 196.103125 314.6 \nL 196.103125 206.885714 \nL 187.629403 206.885714 \nz\n\" style=\"fill:#1f77b4;fill-opacity:0.75;stroke:#000000;stroke-linejoin:miter;stroke-width:0.873828;\"/>\n </g>\n <g id=\"patch_19\">\n <path clip-path=\"url(#p88f9115f16)\" d=\"M 196.103125 314.6 \nL 204.576847 314.6 \nL 204.576847 234.504762 \nL 196.103125 234.504762 \nz\n\" style=\"fill:#1f77b4;fill-opacity:0.75;stroke:#000000;stroke-linejoin:miter;stroke-width:0.873828;\"/>\n </g>\n <g id=\"patch_20\">\n <path clip-path=\"url(#p88f9115f16)\" d=\"M 204.576847 314.6 \nL 213.050568 314.6 \nL 213.050568 275.933333 \nL 204.576847 275.933333 \nz\n\" style=\"fill:#1f77b4;fill-opacity:0.75;stroke:#000000;stroke-linejoin:miter;stroke-width:0.873828;\"/>\n </g>\n <g id=\"patch_21\">\n <path clip-path=\"url(#p88f9115f16)\" d=\"M 213.050568 314.6 \nL 221.52429 314.6 \nL 221.52429 281.457143 \nL 213.050568 281.457143 \nz\n\" style=\"fill:#1f77b4;fill-opacity:0.75;stroke:#000000;stroke-linejoin:miter;stroke-width:0.873828;\"/>\n </g>\n <g id=\"patch_22\">\n <path clip-path=\"url(#p88f9115f16)\" d=\"M 221.52429 314.6 \nL 229.998011 314.6 \nL 229.998011 273.171429 \nL 221.52429 273.171429 \nz\n\" style=\"fill:#1f77b4;fill-opacity:0.75;stroke:#000000;stroke-linejoin:miter;stroke-width:0.873828;\"/>\n </g>\n <g id=\"patch_23\">\n <path clip-path=\"url(#p88f9115f16)\" d=\"M 229.998011 314.6 \nL 238.471733 314.6 \nL 238.471733 280.07619 \nL 229.998011 280.07619 \nz\n\" style=\"fill:#1f77b4;fill-opacity:0.75;stroke:#000000;stroke-linejoin:miter;stroke-width:0.873828;\"/>\n </g>\n <g id=\"patch_24\">\n <path clip-path=\"url(#p88f9115f16)\" d=\"M 238.471733 314.6 \nL 246.945455 314.6 \nL 246.945455 300.790476 \nL 238.471733 300.790476 \nz\n\" style=\"fill:#1f77b4;fill-opacity:0.75;stroke:#000000;stroke-linejoin:miter;stroke-width:0.873828;\"/>\n </g>\n <g id=\"patch_25\">\n <path clip-path=\"url(#p88f9115f16)\" d=\"M 246.945455 314.6 \nL 255.419176 314.6 \nL 255.419176 288.361905 \nL 246.945455 288.361905 \nz\n\" style=\"fill:#1f77b4;fill-opacity:0.75;stroke:#000000;stroke-linejoin:miter;stroke-width:0.873828;\"/>\n </g>\n <g id=\"patch_26\">\n <path clip-path=\"url(#p88f9115f16)\" d=\"M 255.419176 314.6 \nL 263.892898 314.6 \nL 263.892898 300.790476 \nL 255.419176 300.790476 \nz\n\" style=\"fill:#1f77b4;fill-opacity:0.75;stroke:#000000;stroke-linejoin:miter;stroke-width:0.873828;\"/>\n </g>\n <g id=\"patch_27\">\n <path clip-path=\"url(#p88f9115f16)\" d=\"M 263.892898 314.6 \nL 272.366619 314.6 \nL 272.366619 304.933333 \nL 263.892898 304.933333 \nz\n\" style=\"fill:#1f77b4;fill-opacity:0.75;stroke:#000000;stroke-linejoin:miter;stroke-width:0.873828;\"/>\n </g>\n <g id=\"patch_28\">\n <path clip-path=\"url(#p88f9115f16)\" d=\"M 272.366619 314.6 \nL 280.840341 314.6 \nL 280.840341 310.457143 \nL 272.366619 310.457143 \nz\n\" style=\"fill:#1f77b4;fill-opacity:0.75;stroke:#000000;stroke-linejoin:miter;stroke-width:0.873828;\"/>\n </g>\n <g id=\"patch_29\">\n <path clip-path=\"url(#p88f9115f16)\" d=\"M 280.840341 314.6 \nL 289.314062 314.6 \nL 289.314062 311.838095 \nL 280.840341 311.838095 \nz\n\" style=\"fill:#1f77b4;fill-opacity:0.75;stroke:#000000;stroke-linejoin:miter;stroke-width:0.873828;\"/>\n </g>\n <g id=\"patch_30\">\n <path clip-path=\"url(#p88f9115f16)\" d=\"M 289.314062 314.6 \nL 297.787784 314.6 \nL 297.787784 313.219048 \nL 289.314062 313.219048 \nz\n\" style=\"fill:#1f77b4;fill-opacity:0.75;stroke:#000000;stroke-linejoin:miter;stroke-width:0.873828;\"/>\n </g>\n <g id=\"patch_31\">\n <path clip-path=\"url(#p88f9115f16)\" d=\"M 297.787784 314.6 \nL 306.261506 314.6 \nL 306.261506 314.6 \nL 297.787784 314.6 \nz\n\" style=\"fill:#1f77b4;fill-opacity:0.75;stroke:#000000;stroke-linejoin:miter;stroke-width:0.873828;\"/>\n </g>\n <g id=\"patch_32\">\n <path clip-path=\"url(#p88f9115f16)\" d=\"M 306.261506 314.6 \nL 314.735227 314.6 \nL 314.735227 311.838095 \nL 306.261506 311.838095 \nz\n\" style=\"fill:#1f77b4;fill-opacity:0.75;stroke:#000000;stroke-linejoin:miter;stroke-width:0.873828;\"/>\n </g>\n <g id=\"patch_33\">\n <path clip-path=\"url(#p88f9115f16)\" d=\"M 314.735227 314.6 \nL 323.208949 314.6 \nL 323.208949 311.838095 \nL 314.735227 311.838095 \nz\n\" style=\"fill:#1f77b4;fill-opacity:0.75;stroke:#000000;stroke-linejoin:miter;stroke-width:0.873828;\"/>\n </g>\n <g id=\"patch_34\">\n <path clip-path=\"url(#p88f9115f16)\" d=\"M 323.208949 314.6 \nL 331.68267 314.6 \nL 331.68267 310.457143 \nL 323.208949 310.457143 \nz\n\" style=\"fill:#1f77b4;fill-opacity:0.75;stroke:#000000;stroke-linejoin:miter;stroke-width:0.873828;\"/>\n </g>\n <g id=\"matplotlib.axis_1\">\n <g id=\"xtick_1\">\n <g id=\"line2d_1\">\n <defs>\n <path d=\"M 0 0 \nL 0 3.5 \n\" id=\"mdff4acb293\" style=\"stroke:#000000;stroke-width:0.8;\"/>\n </defs>\n <g>\n <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"94.118511\" xlink:href=\"#mdff4acb293\" y=\"314.6\"/>\n </g>\n </g>\n <g id=\"text_1\">\n <!-- 6 -->\n <g transform=\"translate(90.937261 329.198437)scale(0.1 -0.1)\">\n <defs>\n <path d=\"M 33.015625 40.375 \nQ 26.375 40.375 22.484375 35.828125 \nQ 18.609375 31.296875 18.609375 23.390625 \nQ 18.609375 15.53125 22.484375 10.953125 \nQ 26.375 6.390625 33.015625 6.390625 \nQ 39.65625 6.390625 43.53125 10.953125 \nQ 47.40625 15.53125 47.40625 23.390625 \nQ 47.40625 31.296875 43.53125 35.828125 \nQ 39.65625 40.375 33.015625 40.375 \nz\nM 52.59375 71.296875 \nL 52.59375 62.3125 \nQ 48.875 64.0625 45.09375 64.984375 \nQ 41.3125 65.921875 37.59375 65.921875 \nQ 27.828125 65.921875 22.671875 59.328125 \nQ 17.53125 52.734375 16.796875 39.40625 \nQ 19.671875 43.65625 24.015625 45.921875 \nQ 28.375 48.1875 33.59375 48.1875 \nQ 44.578125 48.1875 50.953125 41.515625 \nQ 57.328125 34.859375 57.328125 23.390625 \nQ 57.328125 12.15625 50.6875 5.359375 \nQ 44.046875 -1.421875 33.015625 -1.421875 \nQ 20.359375 -1.421875 13.671875 8.265625 \nQ 6.984375 17.96875 6.984375 36.375 \nQ 6.984375 53.65625 15.1875 63.9375 \nQ 23.390625 74.21875 37.203125 74.21875 \nQ 40.921875 74.21875 44.703125 73.484375 \nQ 48.484375 72.75 52.59375 71.296875 \nz\n\" id=\"DejaVuSans-54\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-54\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_2\">\n <g id=\"line2d_2\">\n <g>\n <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"142.111271\" xlink:href=\"#mdff4acb293\" y=\"314.6\"/>\n </g>\n </g>\n <g id=\"text_2\">\n <!-- 8 -->\n <g transform=\"translate(138.930021 329.198437)scale(0.1 -0.1)\">\n <defs>\n <path d=\"M 31.78125 34.625 \nQ 24.75 34.625 20.71875 30.859375 \nQ 16.703125 27.09375 16.703125 20.515625 \nQ 16.703125 13.921875 20.71875 10.15625 \nQ 24.75 6.390625 31.78125 6.390625 \nQ 38.8125 6.390625 42.859375 10.171875 \nQ 46.921875 13.96875 46.921875 20.515625 \nQ 46.921875 27.09375 42.890625 30.859375 \nQ 38.875 34.625 31.78125 34.625 \nz\nM 21.921875 38.8125 \nQ 15.578125 40.375 12.03125 44.71875 \nQ 8.5 49.078125 8.5 55.328125 \nQ 8.5 64.0625 14.71875 69.140625 \nQ 20.953125 74.21875 31.78125 74.21875 \nQ 42.671875 74.21875 48.875 69.140625 \nQ 55.078125 64.0625 55.078125 55.328125 \nQ 55.078125 49.078125 51.53125 44.71875 \nQ 48 40.375 41.703125 38.8125 \nQ 48.828125 37.15625 52.796875 32.3125 \nQ 56.78125 27.484375 56.78125 20.515625 \nQ 56.78125 9.90625 50.3125 4.234375 \nQ 43.84375 -1.421875 31.78125 -1.421875 \nQ 19.734375 -1.421875 13.25 4.234375 \nQ 6.78125 9.90625 6.78125 20.515625 \nQ 6.78125 27.484375 10.78125 32.3125 \nQ 14.796875 37.15625 21.921875 38.8125 \nz\nM 18.3125 54.390625 \nQ 18.3125 48.734375 21.84375 45.5625 \nQ 25.390625 42.390625 31.78125 42.390625 \nQ 38.140625 42.390625 41.71875 45.5625 \nQ 45.3125 48.734375 45.3125 54.390625 \nQ 45.3125 60.0625 41.71875 63.234375 \nQ 38.140625 66.40625 31.78125 66.40625 \nQ 25.390625 66.40625 21.84375 63.234375 \nQ 18.3125 60.0625 18.3125 54.390625 \nz\n\" id=\"DejaVuSans-56\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-56\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_3\">\n <g id=\"line2d_3\">\n <g>\n <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"190.10403\" xlink:href=\"#mdff4acb293\" y=\"314.6\"/>\n </g>\n </g>\n <g id=\"text_3\">\n <!-- 10 -->\n <g transform=\"translate(183.74153 329.198437)scale(0.1 -0.1)\">\n <defs>\n <path d=\"M 12.40625 8.296875 \nL 28.515625 8.296875 \nL 28.515625 63.921875 \nL 10.984375 60.40625 \nL 10.984375 69.390625 \nL 28.421875 72.90625 \nL 38.28125 72.90625 \nL 38.28125 8.296875 \nL 54.390625 8.296875 \nL 54.390625 0 \nL 12.40625 0 \nz\n\" id=\"DejaVuSans-49\"/>\n <path d=\"M 31.78125 66.40625 \nQ 24.171875 66.40625 20.328125 58.90625 \nQ 16.5 51.421875 16.5 36.375 \nQ 16.5 21.390625 20.328125 13.890625 \nQ 24.171875 6.390625 31.78125 6.390625 \nQ 39.453125 6.390625 43.28125 13.890625 \nQ 47.125 21.390625 47.125 36.375 \nQ 47.125 51.421875 43.28125 58.90625 \nQ 39.453125 66.40625 31.78125 66.40625 \nz\nM 31.78125 74.21875 \nQ 44.046875 74.21875 50.515625 64.515625 \nQ 56.984375 54.828125 56.984375 36.375 \nQ 56.984375 17.96875 50.515625 8.265625 \nQ 44.046875 -1.421875 31.78125 -1.421875 \nQ 19.53125 -1.421875 13.0625 8.265625 \nQ 6.59375 17.96875 6.59375 36.375 \nQ 6.59375 54.828125 13.0625 64.515625 \nQ 19.53125 74.21875 31.78125 74.21875 \nz\n\" id=\"DejaVuSans-48\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-49\"/>\n <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_4\">\n <g id=\"line2d_4\">\n <g>\n <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"238.09679\" xlink:href=\"#mdff4acb293\" y=\"314.6\"/>\n </g>\n </g>\n <g id=\"text_4\">\n <!-- 12 -->\n <g transform=\"translate(231.73429 329.198437)scale(0.1 -0.1)\">\n <defs>\n <path d=\"M 19.1875 8.296875 \nL 53.609375 8.296875 \nL 53.609375 0 \nL 7.328125 0 \nL 7.328125 8.296875 \nQ 12.9375 14.109375 22.625 23.890625 \nQ 32.328125 33.6875 34.8125 36.53125 \nQ 39.546875 41.84375 41.421875 45.53125 \nQ 43.3125 49.21875 43.3125 52.78125 \nQ 43.3125 58.59375 39.234375 62.25 \nQ 35.15625 65.921875 28.609375 65.921875 \nQ 23.96875 65.921875 18.8125 64.3125 \nQ 13.671875 62.703125 7.8125 59.421875 \nL 7.8125 69.390625 \nQ 13.765625 71.78125 18.9375 73 \nQ 24.125 74.21875 28.421875 74.21875 \nQ 39.75 74.21875 46.484375 68.546875 \nQ 53.21875 62.890625 53.21875 53.421875 \nQ 53.21875 48.921875 51.53125 44.890625 \nQ 49.859375 40.875 45.40625 35.40625 \nQ 44.1875 33.984375 37.640625 27.21875 \nQ 31.109375 20.453125 19.1875 8.296875 \nz\n\" id=\"DejaVuSans-50\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-49\"/>\n <use x=\"63.623047\" xlink:href=\"#DejaVuSans-50\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_5\">\n <g id=\"line2d_5\">\n <g>\n <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"286.089549\" xlink:href=\"#mdff4acb293\" y=\"314.6\"/>\n </g>\n </g>\n <g id=\"text_5\">\n <!-- 14 -->\n <g transform=\"translate(279.727049 329.198437)scale(0.1 -0.1)\">\n <defs>\n <path d=\"M 37.796875 64.3125 \nL 12.890625 25.390625 \nL 37.796875 25.390625 \nz\nM 35.203125 72.90625 \nL 47.609375 72.90625 \nL 47.609375 25.390625 \nL 58.015625 25.390625 \nL 58.015625 17.1875 \nL 47.609375 17.1875 \nL 47.609375 0 \nL 37.796875 0 \nL 37.796875 17.1875 \nL 4.890625 17.1875 \nL 4.890625 26.703125 \nz\n\" id=\"DejaVuSans-52\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-49\"/>\n <use x=\"63.623047\" xlink:href=\"#DejaVuSans-52\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_6\">\n <g id=\"line2d_6\">\n <g>\n <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"334.082308\" xlink:href=\"#mdff4acb293\" y=\"314.6\"/>\n </g>\n </g>\n <g id=\"text_6\">\n <!-- 16 -->\n <g transform=\"translate(327.719808 329.198437)scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-49\"/>\n <use x=\"63.623047\" xlink:href=\"#DejaVuSans-54\"/>\n </g>\n </g>\n </g>\n <g id=\"text_7\">\n <!-- fixed acidity -->\n <g transform=\"translate(165.625781 342.876562)scale(0.1 -0.1)\">\n <defs>\n <path d=\"M 37.109375 75.984375 \nL 37.109375 68.5 \nL 28.515625 68.5 \nQ 23.6875 68.5 21.796875 66.546875 \nQ 19.921875 64.59375 19.921875 59.515625 \nL 19.921875 54.6875 \nL 34.71875 54.6875 \nL 34.71875 47.703125 \nL 19.921875 47.703125 \nL 19.921875 0 \nL 10.890625 0 \nL 10.890625 47.703125 \nL 2.296875 47.703125 \nL 2.296875 54.6875 \nL 10.890625 54.6875 \nL 10.890625 58.5 \nQ 10.890625 67.625 15.140625 71.796875 \nQ 19.390625 75.984375 28.609375 75.984375 \nz\n\" id=\"DejaVuSans-102\"/>\n <path d=\"M 9.421875 54.6875 \nL 18.40625 54.6875 \nL 18.40625 0 \nL 9.421875 0 \nz\nM 9.421875 75.984375 \nL 18.40625 75.984375 \nL 18.40625 64.59375 \nL 9.421875 64.59375 \nz\n\" id=\"DejaVuSans-105\"/>\n <path d=\"M 54.890625 54.6875 \nL 35.109375 28.078125 \nL 55.90625 0 \nL 45.3125 0 \nL 29.390625 21.484375 \nL 13.484375 0 \nL 2.875 0 \nL 24.125 28.609375 \nL 4.6875 54.6875 \nL 15.28125 54.6875 \nL 29.78125 35.203125 \nL 44.28125 54.6875 \nz\n\" id=\"DejaVuSans-120\"/>\n <path d=\"M 56.203125 29.59375 \nL 56.203125 25.203125 \nL 14.890625 25.203125 \nQ 15.484375 15.921875 20.484375 11.0625 \nQ 25.484375 6.203125 34.421875 6.203125 \nQ 39.59375 6.203125 44.453125 7.46875 \nQ 49.3125 8.734375 54.109375 11.28125 \nL 54.109375 2.78125 \nQ 49.265625 0.734375 44.1875 -0.34375 \nQ 39.109375 -1.421875 33.890625 -1.421875 \nQ 20.796875 -1.421875 13.15625 6.1875 \nQ 5.515625 13.8125 5.515625 26.8125 \nQ 5.515625 40.234375 12.765625 48.109375 \nQ 20.015625 56 32.328125 56 \nQ 43.359375 56 49.78125 48.890625 \nQ 56.203125 41.796875 56.203125 29.59375 \nz\nM 47.21875 32.234375 \nQ 47.125 39.59375 43.09375 43.984375 \nQ 39.0625 48.390625 32.421875 48.390625 \nQ 24.90625 48.390625 20.390625 44.140625 \nQ 15.875 39.890625 15.1875 32.171875 \nz\n\" id=\"DejaVuSans-101\"/>\n <path d=\"M 45.40625 46.390625 \nL 45.40625 75.984375 \nL 54.390625 75.984375 \nL 54.390625 0 \nL 45.40625 0 \nL 45.40625 8.203125 \nQ 42.578125 3.328125 38.25 0.953125 \nQ 33.9375 -1.421875 27.875 -1.421875 \nQ 17.96875 -1.421875 11.734375 6.484375 \nQ 5.515625 14.40625 5.515625 27.296875 \nQ 5.515625 40.1875 11.734375 48.09375 \nQ 17.96875 56 27.875 56 \nQ 33.9375 56 38.25 53.625 \nQ 42.578125 51.265625 45.40625 46.390625 \nz\nM 14.796875 27.296875 \nQ 14.796875 17.390625 18.875 11.75 \nQ 22.953125 6.109375 30.078125 6.109375 \nQ 37.203125 6.109375 41.296875 11.75 \nQ 45.40625 17.390625 45.40625 27.296875 \nQ 45.40625 37.203125 41.296875 42.84375 \nQ 37.203125 48.484375 30.078125 48.484375 \nQ 22.953125 48.484375 18.875 42.84375 \nQ 14.796875 37.203125 14.796875 27.296875 \nz\n\" id=\"DejaVuSans-100\"/>\n <path id=\"DejaVuSans-32\"/>\n <path d=\"M 34.28125 27.484375 \nQ 23.390625 27.484375 19.1875 25 \nQ 14.984375 22.515625 14.984375 16.5 \nQ 14.984375 11.71875 18.140625 8.90625 \nQ 21.296875 6.109375 26.703125 6.109375 \nQ 34.1875 6.109375 38.703125 11.40625 \nQ 43.21875 16.703125 43.21875 25.484375 \nL 43.21875 27.484375 \nz\nM 52.203125 31.203125 \nL 52.203125 0 \nL 43.21875 0 \nL 43.21875 8.296875 \nQ 40.140625 3.328125 35.546875 0.953125 \nQ 30.953125 -1.421875 24.3125 -1.421875 \nQ 15.921875 -1.421875 10.953125 3.296875 \nQ 6 8.015625 6 15.921875 \nQ 6 25.140625 12.171875 29.828125 \nQ 18.359375 34.515625 30.609375 34.515625 \nL 43.21875 34.515625 \nL 43.21875 35.40625 \nQ 43.21875 41.609375 39.140625 45 \nQ 35.0625 48.390625 27.6875 48.390625 \nQ 23 48.390625 18.546875 47.265625 \nQ 14.109375 46.140625 10.015625 43.890625 \nL 10.015625 52.203125 \nQ 14.9375 54.109375 19.578125 55.046875 \nQ 24.21875 56 28.609375 56 \nQ 40.484375 56 46.34375 49.84375 \nQ 52.203125 43.703125 52.203125 31.203125 \nz\n\" id=\"DejaVuSans-97\"/>\n <path d=\"M 48.78125 52.59375 \nL 48.78125 44.1875 \nQ 44.96875 46.296875 41.140625 47.34375 \nQ 37.3125 48.390625 33.40625 48.390625 \nQ 24.65625 48.390625 19.8125 42.84375 \nQ 14.984375 37.3125 14.984375 27.296875 \nQ 14.984375 17.28125 19.8125 11.734375 \nQ 24.65625 6.203125 33.40625 6.203125 \nQ 37.3125 6.203125 41.140625 7.25 \nQ 44.96875 8.296875 48.78125 10.40625 \nL 48.78125 2.09375 \nQ 45.015625 0.34375 40.984375 -0.53125 \nQ 36.96875 -1.421875 32.421875 -1.421875 \nQ 20.0625 -1.421875 12.78125 6.34375 \nQ 5.515625 14.109375 5.515625 27.296875 \nQ 5.515625 40.671875 12.859375 48.328125 \nQ 20.21875 56 33.015625 56 \nQ 37.15625 56 41.109375 55.140625 \nQ 45.0625 54.296875 48.78125 52.59375 \nz\n\" id=\"DejaVuSans-99\"/>\n <path d=\"M 18.3125 70.21875 \nL 18.3125 54.6875 \nL 36.8125 54.6875 \nL 36.8125 47.703125 \nL 18.3125 47.703125 \nL 18.3125 18.015625 \nQ 18.3125 11.328125 20.140625 9.421875 \nQ 21.96875 7.515625 27.59375 7.515625 \nL 36.8125 7.515625 \nL 36.8125 0 \nL 27.59375 0 \nQ 17.1875 0 13.234375 3.875 \nQ 9.28125 7.765625 9.28125 18.015625 \nL 9.28125 47.703125 \nL 2.6875 47.703125 \nL 2.6875 54.6875 \nL 9.28125 54.6875 \nL 9.28125 70.21875 \nz\n\" id=\"DejaVuSans-116\"/>\n <path d=\"M 32.171875 -5.078125 \nQ 28.375 -14.84375 24.75 -17.8125 \nQ 21.140625 -20.796875 15.09375 -20.796875 \nL 7.90625 -20.796875 \nL 7.90625 -13.28125 \nL 13.1875 -13.28125 \nQ 16.890625 -13.28125 18.9375 -11.515625 \nQ 21 -9.765625 23.484375 -3.21875 \nL 25.09375 0.875 \nL 2.984375 54.6875 \nL 12.5 54.6875 \nL 29.59375 11.921875 \nL 46.6875 54.6875 \nL 56.203125 54.6875 \nz\n\" id=\"DejaVuSans-121\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-102\"/>\n <use x=\"35.205078\" xlink:href=\"#DejaVuSans-105\"/>\n <use x=\"62.988281\" xlink:href=\"#DejaVuSans-120\"/>\n <use x=\"119.042969\" xlink:href=\"#DejaVuSans-101\"/>\n <use x=\"180.566406\" xlink:href=\"#DejaVuSans-100\"/>\n <use x=\"244.042969\" xlink:href=\"#DejaVuSans-32\"/>\n <use x=\"275.830078\" xlink:href=\"#DejaVuSans-97\"/>\n <use x=\"337.109375\" xlink:href=\"#DejaVuSans-99\"/>\n <use x=\"392.089844\" xlink:href=\"#DejaVuSans-105\"/>\n <use x=\"419.873047\" xlink:href=\"#DejaVuSans-100\"/>\n <use x=\"483.349609\" xlink:href=\"#DejaVuSans-105\"/>\n <use x=\"511.132812\" xlink:href=\"#DejaVuSans-116\"/>\n <use x=\"550.341797\" xlink:href=\"#DejaVuSans-121\"/>\n </g>\n </g>\n </g>\n <g id=\"matplotlib.axis_2\">\n <g id=\"ytick_1\">\n <g id=\"line2d_7\">\n <defs>\n <path d=\"M 0 0 \nL -3.5 0 \n\" id=\"m8a6e080b0c\" style=\"stroke:#000000;stroke-width:0.8;\"/>\n </defs>\n <g>\n <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"46.965625\" xlink:href=\"#m8a6e080b0c\" y=\"314.6\"/>\n </g>\n </g>\n <g id=\"text_8\">\n <!-- 0 -->\n <g transform=\"translate(33.603125 318.399219)scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-48\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_2\">\n <g id=\"line2d_8\">\n <g>\n <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"46.965625\" xlink:href=\"#m8a6e080b0c\" y=\"280.07619\"/>\n </g>\n </g>\n <g id=\"text_9\">\n <!-- 25 -->\n <g transform=\"translate(27.240625 283.875409)scale(0.1 -0.1)\">\n <defs>\n <path d=\"M 10.796875 72.90625 \nL 49.515625 72.90625 \nL 49.515625 64.59375 \nL 19.828125 64.59375 \nL 19.828125 46.734375 \nQ 21.96875 47.46875 24.109375 47.828125 \nQ 26.265625 48.1875 28.421875 48.1875 \nQ 40.625 48.1875 47.75 41.5 \nQ 54.890625 34.8125 54.890625 23.390625 \nQ 54.890625 11.625 47.5625 5.09375 \nQ 40.234375 -1.421875 26.90625 -1.421875 \nQ 22.3125 -1.421875 17.546875 -0.640625 \nQ 12.796875 0.140625 7.71875 1.703125 \nL 7.71875 11.625 \nQ 12.109375 9.234375 16.796875 8.0625 \nQ 21.484375 6.890625 26.703125 6.890625 \nQ 35.15625 6.890625 40.078125 11.328125 \nQ 45.015625 15.765625 45.015625 23.390625 \nQ 45.015625 31 40.078125 35.4375 \nQ 35.15625 39.890625 26.703125 39.890625 \nQ 22.75 39.890625 18.8125 39.015625 \nQ 14.890625 38.140625 10.796875 36.28125 \nz\n\" id=\"DejaVuSans-53\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-50\"/>\n <use x=\"63.623047\" xlink:href=\"#DejaVuSans-53\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_3\">\n <g id=\"line2d_9\">\n <g>\n <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"46.965625\" xlink:href=\"#m8a6e080b0c\" y=\"245.552381\"/>\n </g>\n </g>\n <g id=\"text_10\">\n <!-- 50 -->\n <g transform=\"translate(27.240625 249.3516)scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-53\"/>\n <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_4\">\n <g id=\"line2d_10\">\n <g>\n <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"46.965625\" xlink:href=\"#m8a6e080b0c\" y=\"211.028571\"/>\n </g>\n </g>\n <g id=\"text_11\">\n <!-- 75 -->\n <g transform=\"translate(27.240625 214.82779)scale(0.1 -0.1)\">\n <defs>\n <path d=\"M 8.203125 72.90625 \nL 55.078125 72.90625 \nL 55.078125 68.703125 \nL 28.609375 0 \nL 18.3125 0 \nL 43.21875 64.59375 \nL 8.203125 64.59375 \nz\n\" id=\"DejaVuSans-55\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-55\"/>\n <use x=\"63.623047\" xlink:href=\"#DejaVuSans-53\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_5\">\n <g id=\"line2d_11\">\n <g>\n <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"46.965625\" xlink:href=\"#m8a6e080b0c\" y=\"176.504762\"/>\n </g>\n </g>\n <g id=\"text_12\">\n <!-- 100 -->\n <g transform=\"translate(20.878125 180.303981)scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-49\"/>\n <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\n <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_6\">\n <g id=\"line2d_12\">\n <g>\n <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"46.965625\" xlink:href=\"#m8a6e080b0c\" y=\"141.980952\"/>\n </g>\n </g>\n <g id=\"text_13\">\n <!-- 125 -->\n <g transform=\"translate(20.878125 145.780171)scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-49\"/>\n <use x=\"63.623047\" xlink:href=\"#DejaVuSans-50\"/>\n <use x=\"127.246094\" xlink:href=\"#DejaVuSans-53\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_7\">\n <g id=\"line2d_13\">\n <g>\n <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"46.965625\" xlink:href=\"#m8a6e080b0c\" y=\"107.457143\"/>\n </g>\n </g>\n <g id=\"text_14\">\n <!-- 150 -->\n <g transform=\"translate(20.878125 111.256362)scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-49\"/>\n <use x=\"63.623047\" xlink:href=\"#DejaVuSans-53\"/>\n <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_8\">\n <g id=\"line2d_14\">\n <g>\n <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"46.965625\" xlink:href=\"#m8a6e080b0c\" y=\"72.933333\"/>\n </g>\n </g>\n <g id=\"text_15\">\n <!-- 175 -->\n <g transform=\"translate(20.878125 76.732552)scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-49\"/>\n <use x=\"63.623047\" xlink:href=\"#DejaVuSans-55\"/>\n <use x=\"127.246094\" xlink:href=\"#DejaVuSans-53\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_9\">\n <g id=\"line2d_15\">\n <g>\n <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"46.965625\" xlink:href=\"#m8a6e080b0c\" y=\"38.409524\"/>\n </g>\n </g>\n <g id=\"text_16\">\n <!-- 200 -->\n <g transform=\"translate(20.878125 42.208743)scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-50\"/>\n <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\n <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\n </g>\n </g>\n </g>\n <g id=\"text_17\">\n <!-- Count -->\n <g transform=\"translate(14.798438 175.748437)rotate(-90)scale(0.1 -0.1)\">\n <defs>\n <path d=\"M 64.40625 67.28125 \nL 64.40625 56.890625 \nQ 59.421875 61.53125 53.78125 63.8125 \nQ 48.140625 66.109375 41.796875 66.109375 \nQ 29.296875 66.109375 22.65625 58.46875 \nQ 16.015625 50.828125 16.015625 36.375 \nQ 16.015625 21.96875 22.65625 14.328125 \nQ 29.296875 6.6875 41.796875 6.6875 \nQ 48.140625 6.6875 53.78125 8.984375 \nQ 59.421875 11.28125 64.40625 15.921875 \nL 64.40625 5.609375 \nQ 59.234375 2.09375 53.4375 0.328125 \nQ 47.65625 -1.421875 41.21875 -1.421875 \nQ 24.65625 -1.421875 15.125 8.703125 \nQ 5.609375 18.84375 5.609375 36.375 \nQ 5.609375 53.953125 15.125 64.078125 \nQ 24.65625 74.21875 41.21875 74.21875 \nQ 47.75 74.21875 53.53125 72.484375 \nQ 59.328125 70.75 64.40625 67.28125 \nz\n\" id=\"DejaVuSans-67\"/>\n <path d=\"M 30.609375 48.390625 \nQ 23.390625 48.390625 19.1875 42.75 \nQ 14.984375 37.109375 14.984375 27.296875 \nQ 14.984375 17.484375 19.15625 11.84375 \nQ 23.34375 6.203125 30.609375 6.203125 \nQ 37.796875 6.203125 41.984375 11.859375 \nQ 46.1875 17.53125 46.1875 27.296875 \nQ 46.1875 37.015625 41.984375 42.703125 \nQ 37.796875 48.390625 30.609375 48.390625 \nz\nM 30.609375 56 \nQ 42.328125 56 49.015625 48.375 \nQ 55.71875 40.765625 55.71875 27.296875 \nQ 55.71875 13.875 49.015625 6.21875 \nQ 42.328125 -1.421875 30.609375 -1.421875 \nQ 18.84375 -1.421875 12.171875 6.21875 \nQ 5.515625 13.875 5.515625 27.296875 \nQ 5.515625 40.765625 12.171875 48.375 \nQ 18.84375 56 30.609375 56 \nz\n\" id=\"DejaVuSans-111\"/>\n <path d=\"M 8.5 21.578125 \nL 8.5 54.6875 \nL 17.484375 54.6875 \nL 17.484375 21.921875 \nQ 17.484375 14.15625 20.5 10.265625 \nQ 23.53125 6.390625 29.59375 6.390625 \nQ 36.859375 6.390625 41.078125 11.03125 \nQ 45.3125 15.671875 45.3125 23.6875 \nL 45.3125 54.6875 \nL 54.296875 54.6875 \nL 54.296875 0 \nL 45.3125 0 \nL 45.3125 8.40625 \nQ 42.046875 3.421875 37.71875 1 \nQ 33.40625 -1.421875 27.6875 -1.421875 \nQ 18.265625 -1.421875 13.375 4.4375 \nQ 8.5 10.296875 8.5 21.578125 \nz\nM 31.109375 56 \nz\n\" id=\"DejaVuSans-117\"/>\n <path d=\"M 54.890625 33.015625 \nL 54.890625 0 \nL 45.90625 0 \nL 45.90625 32.71875 \nQ 45.90625 40.484375 42.875 44.328125 \nQ 39.84375 48.1875 33.796875 48.1875 \nQ 26.515625 48.1875 22.3125 43.546875 \nQ 18.109375 38.921875 18.109375 30.90625 \nL 18.109375 0 \nL 9.078125 0 \nL 9.078125 54.6875 \nL 18.109375 54.6875 \nL 18.109375 46.1875 \nQ 21.34375 51.125 25.703125 53.5625 \nQ 30.078125 56 35.796875 56 \nQ 45.21875 56 50.046875 50.171875 \nQ 54.890625 44.34375 54.890625 33.015625 \nz\n\" id=\"DejaVuSans-110\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-67\"/>\n <use x=\"69.824219\" xlink:href=\"#DejaVuSans-111\"/>\n <use x=\"131.005859\" xlink:href=\"#DejaVuSans-117\"/>\n <use x=\"194.384766\" xlink:href=\"#DejaVuSans-110\"/>\n <use x=\"257.763672\" xlink:href=\"#DejaVuSans-116\"/>\n </g>\n </g>\n </g>\n <g id=\"patch_35\">\n <path d=\"M 46.965625 314.6 \nL 46.965625 7.2 \n\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n </g>\n <g id=\"patch_36\">\n <path d=\"M 46.965625 314.6 \nL 345.240625 314.6 \n\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n </g>\n </g>\n </g>\n <defs>\n <clipPath id=\"p88f9115f16\">\n <rect height=\"307.4\" width=\"298.275\" x=\"46.965625\" y=\"7.2\"/>\n </clipPath>\n </defs>\n</svg>\n",
"image/png": "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\n"
},
"metadata": {
"needs_background": "light"
}
}
],
"source": [
"sns.displot(wine['fixed acidity'])"
]
},
{
"cell_type": "code",
"execution_count": 12,
"metadata": {},
"outputs": [
{
"output_type": "stream",
"name": "stderr",
"text": [
"/home/bruce/.local/lib/python3.8/site-packages/seaborn/_decorators.py:36: FutureWarning: Pass the following variable as a keyword arg: x. From version 0.12, the only valid positional argument will be `data`, and passing other arguments without an explicit keyword will result in an error or misinterpretation.\n warnings.warn(\n"
]
},
{
"output_type": "execute_result",
"data": {
"text/plain": [
"<AxesSubplot:xlabel='quality', ylabel='count'>"
]
},
"metadata": {},
"execution_count": 12
},
{
"output_type": "display_data",
"data": {
"text/plain": "<Figure size 432x288 with 1 Axes>",
"image/svg+xml": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\n \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n<!-- Created with matplotlib (https://matplotlib.org/) -->\n<svg height=\"262.19625pt\" version=\"1.1\" viewBox=\"0 0 395.328125 262.19625\" width=\"395.328125pt\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n <metadata>\n <rdf:RDF xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n <cc:Work>\n <dc:type rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\"/>\n <dc:date>2021-05-08T21:32:37.847839</dc:date>\n <dc:format>image/svg+xml</dc:format>\n <dc:creator>\n <cc:Agent>\n <dc:title>Matplotlib v3.3.4, https://matplotlib.org/</dc:title>\n </cc:Agent>\n </dc:creator>\n </cc:Work>\n </rdf:RDF>\n </metadata>\n <defs>\n <style type=\"text/css\">*{stroke-linecap:butt;stroke-linejoin:round;}</style>\n </defs>\n <g id=\"figure_1\">\n <g id=\"patch_1\">\n <path d=\"M 0 262.19625 \nL 395.328125 262.19625 \nL 395.328125 0 \nL 0 0 \nz\n\" style=\"fill:none;\"/>\n </g>\n <g id=\"axes_1\">\n <g id=\"patch_2\">\n <path d=\"M 53.328125 224.64 \nL 388.128125 224.64 \nL 388.128125 7.2 \nL 53.328125 7.2 \nz\n\" style=\"fill:#ffffff;\"/>\n </g>\n <g id=\"patch_3\">\n <path clip-path=\"url(#p55574efcf7)\" d=\"M 70.068125 224.64 \nL 203.988125 224.64 \nL 203.988125 17.554286 \nL 70.068125 17.554286 \nz\n\" style=\"fill:#3274a1;\"/>\n </g>\n <g id=\"patch_4\">\n <path clip-path=\"url(#p55574efcf7)\" d=\"M 237.468125 224.64 \nL 371.388125 224.64 \nL 371.388125 192.123647 \nL 237.468125 192.123647 \nz\n\" style=\"fill:#e1812c;\"/>\n </g>\n <g id=\"matplotlib.axis_1\">\n <g id=\"xtick_1\">\n <g id=\"line2d_1\">\n <defs>\n <path d=\"M 0 0 \nL 0 3.5 \n\" id=\"m58a3a2d6fd\" style=\"stroke:#000000;stroke-width:0.8;\"/>\n </defs>\n <g>\n <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"137.028125\" xlink:href=\"#m58a3a2d6fd\" y=\"224.64\"/>\n </g>\n </g>\n <g id=\"text_1\">\n <!-- 0 -->\n <g transform=\"translate(133.846875 239.238437)scale(0.1 -0.1)\">\n <defs>\n <path d=\"M 31.78125 66.40625 \nQ 24.171875 66.40625 20.328125 58.90625 \nQ 16.5 51.421875 16.5 36.375 \nQ 16.5 21.390625 20.328125 13.890625 \nQ 24.171875 6.390625 31.78125 6.390625 \nQ 39.453125 6.390625 43.28125 13.890625 \nQ 47.125 21.390625 47.125 36.375 \nQ 47.125 51.421875 43.28125 58.90625 \nQ 39.453125 66.40625 31.78125 66.40625 \nz\nM 31.78125 74.21875 \nQ 44.046875 74.21875 50.515625 64.515625 \nQ 56.984375 54.828125 56.984375 36.375 \nQ 56.984375 17.96875 50.515625 8.265625 \nQ 44.046875 -1.421875 31.78125 -1.421875 \nQ 19.53125 -1.421875 13.0625 8.265625 \nQ 6.59375 17.96875 6.59375 36.375 \nQ 6.59375 54.828125 13.0625 64.515625 \nQ 19.53125 74.21875 31.78125 74.21875 \nz\n\" id=\"DejaVuSans-48\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-48\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_2\">\n <g id=\"line2d_2\">\n <g>\n <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"304.428125\" xlink:href=\"#m58a3a2d6fd\" y=\"224.64\"/>\n </g>\n </g>\n <g id=\"text_2\">\n <!-- 1 -->\n <g transform=\"translate(301.246875 239.238437)scale(0.1 -0.1)\">\n <defs>\n <path d=\"M 12.40625 8.296875 \nL 28.515625 8.296875 \nL 28.515625 63.921875 \nL 10.984375 60.40625 \nL 10.984375 69.390625 \nL 28.421875 72.90625 \nL 38.28125 72.90625 \nL 38.28125 8.296875 \nL 54.390625 8.296875 \nL 54.390625 0 \nL 12.40625 0 \nz\n\" id=\"DejaVuSans-49\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-49\"/>\n </g>\n </g>\n </g>\n <g id=\"text_3\">\n <!-- quality -->\n <g transform=\"translate(203.623437 252.916562)scale(0.1 -0.1)\">\n <defs>\n <path d=\"M 14.796875 27.296875 \nQ 14.796875 17.390625 18.875 11.75 \nQ 22.953125 6.109375 30.078125 6.109375 \nQ 37.203125 6.109375 41.296875 11.75 \nQ 45.40625 17.390625 45.40625 27.296875 \nQ 45.40625 37.203125 41.296875 42.84375 \nQ 37.203125 48.484375 30.078125 48.484375 \nQ 22.953125 48.484375 18.875 42.84375 \nQ 14.796875 37.203125 14.796875 27.296875 \nz\nM 45.40625 8.203125 \nQ 42.578125 3.328125 38.25 0.953125 \nQ 33.9375 -1.421875 27.875 -1.421875 \nQ 17.96875 -1.421875 11.734375 6.484375 \nQ 5.515625 14.40625 5.515625 27.296875 \nQ 5.515625 40.1875 11.734375 48.09375 \nQ 17.96875 56 27.875 56 \nQ 33.9375 56 38.25 53.625 \nQ 42.578125 51.265625 45.40625 46.390625 \nL 45.40625 54.6875 \nL 54.390625 54.6875 \nL 54.390625 -20.796875 \nL 45.40625 -20.796875 \nz\n\" id=\"DejaVuSans-113\"/>\n <path d=\"M 8.5 21.578125 \nL 8.5 54.6875 \nL 17.484375 54.6875 \nL 17.484375 21.921875 \nQ 17.484375 14.15625 20.5 10.265625 \nQ 23.53125 6.390625 29.59375 6.390625 \nQ 36.859375 6.390625 41.078125 11.03125 \nQ 45.3125 15.671875 45.3125 23.6875 \nL 45.3125 54.6875 \nL 54.296875 54.6875 \nL 54.296875 0 \nL 45.3125 0 \nL 45.3125 8.40625 \nQ 42.046875 3.421875 37.71875 1 \nQ 33.40625 -1.421875 27.6875 -1.421875 \nQ 18.265625 -1.421875 13.375 4.4375 \nQ 8.5 10.296875 8.5 21.578125 \nz\nM 31.109375 56 \nz\n\" id=\"DejaVuSans-117\"/>\n <path d=\"M 34.28125 27.484375 \nQ 23.390625 27.484375 19.1875 25 \nQ 14.984375 22.515625 14.984375 16.5 \nQ 14.984375 11.71875 18.140625 8.90625 \nQ 21.296875 6.109375 26.703125 6.109375 \nQ 34.1875 6.109375 38.703125 11.40625 \nQ 43.21875 16.703125 43.21875 25.484375 \nL 43.21875 27.484375 \nz\nM 52.203125 31.203125 \nL 52.203125 0 \nL 43.21875 0 \nL 43.21875 8.296875 \nQ 40.140625 3.328125 35.546875 0.953125 \nQ 30.953125 -1.421875 24.3125 -1.421875 \nQ 15.921875 -1.421875 10.953125 3.296875 \nQ 6 8.015625 6 15.921875 \nQ 6 25.140625 12.171875 29.828125 \nQ 18.359375 34.515625 30.609375 34.515625 \nL 43.21875 34.515625 \nL 43.21875 35.40625 \nQ 43.21875 41.609375 39.140625 45 \nQ 35.0625 48.390625 27.6875 48.390625 \nQ 23 48.390625 18.546875 47.265625 \nQ 14.109375 46.140625 10.015625 43.890625 \nL 10.015625 52.203125 \nQ 14.9375 54.109375 19.578125 55.046875 \nQ 24.21875 56 28.609375 56 \nQ 40.484375 56 46.34375 49.84375 \nQ 52.203125 43.703125 52.203125 31.203125 \nz\n\" id=\"DejaVuSans-97\"/>\n <path d=\"M 9.421875 75.984375 \nL 18.40625 75.984375 \nL 18.40625 0 \nL 9.421875 0 \nz\n\" id=\"DejaVuSans-108\"/>\n <path d=\"M 9.421875 54.6875 \nL 18.40625 54.6875 \nL 18.40625 0 \nL 9.421875 0 \nz\nM 9.421875 75.984375 \nL 18.40625 75.984375 \nL 18.40625 64.59375 \nL 9.421875 64.59375 \nz\n\" id=\"DejaVuSans-105\"/>\n <path d=\"M 18.3125 70.21875 \nL 18.3125 54.6875 \nL 36.8125 54.6875 \nL 36.8125 47.703125 \nL 18.3125 47.703125 \nL 18.3125 18.015625 \nQ 18.3125 11.328125 20.140625 9.421875 \nQ 21.96875 7.515625 27.59375 7.515625 \nL 36.8125 7.515625 \nL 36.8125 0 \nL 27.59375 0 \nQ 17.1875 0 13.234375 3.875 \nQ 9.28125 7.765625 9.28125 18.015625 \nL 9.28125 47.703125 \nL 2.6875 47.703125 \nL 2.6875 54.6875 \nL 9.28125 54.6875 \nL 9.28125 70.21875 \nz\n\" id=\"DejaVuSans-116\"/>\n <path d=\"M 32.171875 -5.078125 \nQ 28.375 -14.84375 24.75 -17.8125 \nQ 21.140625 -20.796875 15.09375 -20.796875 \nL 7.90625 -20.796875 \nL 7.90625 -13.28125 \nL 13.1875 -13.28125 \nQ 16.890625 -13.28125 18.9375 -11.515625 \nQ 21 -9.765625 23.484375 -3.21875 \nL 25.09375 0.875 \nL 2.984375 54.6875 \nL 12.5 54.6875 \nL 29.59375 11.921875 \nL 46.6875 54.6875 \nL 56.203125 54.6875 \nz\n\" id=\"DejaVuSans-121\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-113\"/>\n <use x=\"63.476562\" xlink:href=\"#DejaVuSans-117\"/>\n <use x=\"126.855469\" xlink:href=\"#DejaVuSans-97\"/>\n <use x=\"188.134766\" xlink:href=\"#DejaVuSans-108\"/>\n <use x=\"215.917969\" xlink:href=\"#DejaVuSans-105\"/>\n <use x=\"243.701172\" xlink:href=\"#DejaVuSans-116\"/>\n <use x=\"282.910156\" xlink:href=\"#DejaVuSans-121\"/>\n </g>\n </g>\n </g>\n <g id=\"matplotlib.axis_2\">\n <g id=\"ytick_1\">\n <g id=\"line2d_3\">\n <defs>\n <path d=\"M 0 0 \nL -3.5 0 \n\" id=\"m110a7ad42c\" style=\"stroke:#000000;stroke-width:0.8;\"/>\n </defs>\n <g>\n <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"53.328125\" xlink:href=\"#m110a7ad42c\" y=\"224.64\"/>\n </g>\n </g>\n <g id=\"text_4\">\n <!-- 0 -->\n <g transform=\"translate(39.965625 228.439219)scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-48\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_2\">\n <g id=\"line2d_4\">\n <g>\n <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"53.328125\" xlink:href=\"#m110a7ad42c\" y=\"194.671011\"/>\n </g>\n </g>\n <g id=\"text_5\">\n <!-- 200 -->\n <g transform=\"translate(27.240625 198.47023)scale(0.1 -0.1)\">\n <defs>\n <path d=\"M 19.1875 8.296875 \nL 53.609375 8.296875 \nL 53.609375 0 \nL 7.328125 0 \nL 7.328125 8.296875 \nQ 12.9375 14.109375 22.625 23.890625 \nQ 32.328125 33.6875 34.8125 36.53125 \nQ 39.546875 41.84375 41.421875 45.53125 \nQ 43.3125 49.21875 43.3125 52.78125 \nQ 43.3125 58.59375 39.234375 62.25 \nQ 35.15625 65.921875 28.609375 65.921875 \nQ 23.96875 65.921875 18.8125 64.3125 \nQ 13.671875 62.703125 7.8125 59.421875 \nL 7.8125 69.390625 \nQ 13.765625 71.78125 18.9375 73 \nQ 24.125 74.21875 28.421875 74.21875 \nQ 39.75 74.21875 46.484375 68.546875 \nQ 53.21875 62.890625 53.21875 53.421875 \nQ 53.21875 48.921875 51.53125 44.890625 \nQ 49.859375 40.875 45.40625 35.40625 \nQ 44.1875 33.984375 37.640625 27.21875 \nQ 31.109375 20.453125 19.1875 8.296875 \nz\n\" id=\"DejaVuSans-50\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-50\"/>\n <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\n <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_3\">\n <g id=\"line2d_5\">\n <g>\n <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"53.328125\" xlink:href=\"#m110a7ad42c\" y=\"164.702022\"/>\n </g>\n </g>\n <g id=\"text_6\">\n <!-- 400 -->\n <g transform=\"translate(27.240625 168.501241)scale(0.1 -0.1)\">\n <defs>\n <path d=\"M 37.796875 64.3125 \nL 12.890625 25.390625 \nL 37.796875 25.390625 \nz\nM 35.203125 72.90625 \nL 47.609375 72.90625 \nL 47.609375 25.390625 \nL 58.015625 25.390625 \nL 58.015625 17.1875 \nL 47.609375 17.1875 \nL 47.609375 0 \nL 37.796875 0 \nL 37.796875 17.1875 \nL 4.890625 17.1875 \nL 4.890625 26.703125 \nz\n\" id=\"DejaVuSans-52\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-52\"/>\n <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\n <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_4\">\n <g id=\"line2d_6\">\n <g>\n <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"53.328125\" xlink:href=\"#m110a7ad42c\" y=\"134.733033\"/>\n </g>\n </g>\n <g id=\"text_7\">\n <!-- 600 -->\n <g transform=\"translate(27.240625 138.532252)scale(0.1 -0.1)\">\n <defs>\n <path d=\"M 33.015625 40.375 \nQ 26.375 40.375 22.484375 35.828125 \nQ 18.609375 31.296875 18.609375 23.390625 \nQ 18.609375 15.53125 22.484375 10.953125 \nQ 26.375 6.390625 33.015625 6.390625 \nQ 39.65625 6.390625 43.53125 10.953125 \nQ 47.40625 15.53125 47.40625 23.390625 \nQ 47.40625 31.296875 43.53125 35.828125 \nQ 39.65625 40.375 33.015625 40.375 \nz\nM 52.59375 71.296875 \nL 52.59375 62.3125 \nQ 48.875 64.0625 45.09375 64.984375 \nQ 41.3125 65.921875 37.59375 65.921875 \nQ 27.828125 65.921875 22.671875 59.328125 \nQ 17.53125 52.734375 16.796875 39.40625 \nQ 19.671875 43.65625 24.015625 45.921875 \nQ 28.375 48.1875 33.59375 48.1875 \nQ 44.578125 48.1875 50.953125 41.515625 \nQ 57.328125 34.859375 57.328125 23.390625 \nQ 57.328125 12.15625 50.6875 5.359375 \nQ 44.046875 -1.421875 33.015625 -1.421875 \nQ 20.359375 -1.421875 13.671875 8.265625 \nQ 6.984375 17.96875 6.984375 36.375 \nQ 6.984375 53.65625 15.1875 63.9375 \nQ 23.390625 74.21875 37.203125 74.21875 \nQ 40.921875 74.21875 44.703125 73.484375 \nQ 48.484375 72.75 52.59375 71.296875 \nz\n\" id=\"DejaVuSans-54\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-54\"/>\n <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\n <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_5\">\n <g id=\"line2d_7\">\n <g>\n <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"53.328125\" xlink:href=\"#m110a7ad42c\" y=\"104.764044\"/>\n </g>\n </g>\n <g id=\"text_8\">\n <!-- 800 -->\n <g transform=\"translate(27.240625 108.563263)scale(0.1 -0.1)\">\n <defs>\n <path d=\"M 31.78125 34.625 \nQ 24.75 34.625 20.71875 30.859375 \nQ 16.703125 27.09375 16.703125 20.515625 \nQ 16.703125 13.921875 20.71875 10.15625 \nQ 24.75 6.390625 31.78125 6.390625 \nQ 38.8125 6.390625 42.859375 10.171875 \nQ 46.921875 13.96875 46.921875 20.515625 \nQ 46.921875 27.09375 42.890625 30.859375 \nQ 38.875 34.625 31.78125 34.625 \nz\nM 21.921875 38.8125 \nQ 15.578125 40.375 12.03125 44.71875 \nQ 8.5 49.078125 8.5 55.328125 \nQ 8.5 64.0625 14.71875 69.140625 \nQ 20.953125 74.21875 31.78125 74.21875 \nQ 42.671875 74.21875 48.875 69.140625 \nQ 55.078125 64.0625 55.078125 55.328125 \nQ 55.078125 49.078125 51.53125 44.71875 \nQ 48 40.375 41.703125 38.8125 \nQ 48.828125 37.15625 52.796875 32.3125 \nQ 56.78125 27.484375 56.78125 20.515625 \nQ 56.78125 9.90625 50.3125 4.234375 \nQ 43.84375 -1.421875 31.78125 -1.421875 \nQ 19.734375 -1.421875 13.25 4.234375 \nQ 6.78125 9.90625 6.78125 20.515625 \nQ 6.78125 27.484375 10.78125 32.3125 \nQ 14.796875 37.15625 21.921875 38.8125 \nz\nM 18.3125 54.390625 \nQ 18.3125 48.734375 21.84375 45.5625 \nQ 25.390625 42.390625 31.78125 42.390625 \nQ 38.140625 42.390625 41.71875 45.5625 \nQ 45.3125 48.734375 45.3125 54.390625 \nQ 45.3125 60.0625 41.71875 63.234375 \nQ 38.140625 66.40625 31.78125 66.40625 \nQ 25.390625 66.40625 21.84375 63.234375 \nQ 18.3125 60.0625 18.3125 54.390625 \nz\n\" id=\"DejaVuSans-56\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-56\"/>\n <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\n <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_6\">\n <g id=\"line2d_8\">\n <g>\n <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"53.328125\" xlink:href=\"#m110a7ad42c\" y=\"74.795055\"/>\n </g>\n </g>\n <g id=\"text_9\">\n <!-- 1000 -->\n <g transform=\"translate(20.878125 78.594274)scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-49\"/>\n <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\n <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\n <use x=\"190.869141\" xlink:href=\"#DejaVuSans-48\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_7\">\n <g id=\"line2d_9\">\n <g>\n <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"53.328125\" xlink:href=\"#m110a7ad42c\" y=\"44.826066\"/>\n </g>\n </g>\n <g id=\"text_10\">\n <!-- 1200 -->\n <g transform=\"translate(20.878125 48.625284)scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-49\"/>\n <use x=\"63.623047\" xlink:href=\"#DejaVuSans-50\"/>\n <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\n <use x=\"190.869141\" xlink:href=\"#DejaVuSans-48\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_8\">\n <g id=\"line2d_10\">\n <g>\n <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"53.328125\" xlink:href=\"#m110a7ad42c\" y=\"14.857077\"/>\n </g>\n </g>\n <g id=\"text_11\">\n <!-- 1400 -->\n <g transform=\"translate(20.878125 18.656295)scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-49\"/>\n <use x=\"63.623047\" xlink:href=\"#DejaVuSans-52\"/>\n <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\n <use x=\"190.869141\" xlink:href=\"#DejaVuSans-48\"/>\n </g>\n </g>\n </g>\n <g id=\"text_12\">\n <!-- count -->\n <g transform=\"translate(14.798438 130.02625)rotate(-90)scale(0.1 -0.1)\">\n <defs>\n <path d=\"M 48.78125 52.59375 \nL 48.78125 44.1875 \nQ 44.96875 46.296875 41.140625 47.34375 \nQ 37.3125 48.390625 33.40625 48.390625 \nQ 24.65625 48.390625 19.8125 42.84375 \nQ 14.984375 37.3125 14.984375 27.296875 \nQ 14.984375 17.28125 19.8125 11.734375 \nQ 24.65625 6.203125 33.40625 6.203125 \nQ 37.3125 6.203125 41.140625 7.25 \nQ 44.96875 8.296875 48.78125 10.40625 \nL 48.78125 2.09375 \nQ 45.015625 0.34375 40.984375 -0.53125 \nQ 36.96875 -1.421875 32.421875 -1.421875 \nQ 20.0625 -1.421875 12.78125 6.34375 \nQ 5.515625 14.109375 5.515625 27.296875 \nQ 5.515625 40.671875 12.859375 48.328125 \nQ 20.21875 56 33.015625 56 \nQ 37.15625 56 41.109375 55.140625 \nQ 45.0625 54.296875 48.78125 52.59375 \nz\n\" id=\"DejaVuSans-99\"/>\n <path d=\"M 30.609375 48.390625 \nQ 23.390625 48.390625 19.1875 42.75 \nQ 14.984375 37.109375 14.984375 27.296875 \nQ 14.984375 17.484375 19.15625 11.84375 \nQ 23.34375 6.203125 30.609375 6.203125 \nQ 37.796875 6.203125 41.984375 11.859375 \nQ 46.1875 17.53125 46.1875 27.296875 \nQ 46.1875 37.015625 41.984375 42.703125 \nQ 37.796875 48.390625 30.609375 48.390625 \nz\nM 30.609375 56 \nQ 42.328125 56 49.015625 48.375 \nQ 55.71875 40.765625 55.71875 27.296875 \nQ 55.71875 13.875 49.015625 6.21875 \nQ 42.328125 -1.421875 30.609375 -1.421875 \nQ 18.84375 -1.421875 12.171875 6.21875 \nQ 5.515625 13.875 5.515625 27.296875 \nQ 5.515625 40.765625 12.171875 48.375 \nQ 18.84375 56 30.609375 56 \nz\n\" id=\"DejaVuSans-111\"/>\n <path d=\"M 54.890625 33.015625 \nL 54.890625 0 \nL 45.90625 0 \nL 45.90625 32.71875 \nQ 45.90625 40.484375 42.875 44.328125 \nQ 39.84375 48.1875 33.796875 48.1875 \nQ 26.515625 48.1875 22.3125 43.546875 \nQ 18.109375 38.921875 18.109375 30.90625 \nL 18.109375 0 \nL 9.078125 0 \nL 9.078125 54.6875 \nL 18.109375 54.6875 \nL 18.109375 46.1875 \nQ 21.34375 51.125 25.703125 53.5625 \nQ 30.078125 56 35.796875 56 \nQ 45.21875 56 50.046875 50.171875 \nQ 54.890625 44.34375 54.890625 33.015625 \nz\n\" id=\"DejaVuSans-110\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-99\"/>\n <use x=\"54.980469\" xlink:href=\"#DejaVuSans-111\"/>\n <use x=\"116.162109\" xlink:href=\"#DejaVuSans-117\"/>\n <use x=\"179.541016\" xlink:href=\"#DejaVuSans-110\"/>\n <use x=\"242.919922\" xlink:href=\"#DejaVuSans-116\"/>\n </g>\n </g>\n </g>\n <g id=\"patch_5\">\n <path d=\"M 53.328125 224.64 \nL 53.328125 7.2 \n\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n </g>\n <g id=\"patch_6\">\n <path d=\"M 388.128125 224.64 \nL 388.128125 7.2 \n\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n </g>\n <g id=\"patch_7\">\n <path d=\"M 53.328125 224.64 \nL 388.128125 224.64 \n\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n </g>\n <g id=\"patch_8\">\n <path d=\"M 53.328125 7.2 \nL 388.128125 7.2 \n\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n </g>\n </g>\n </g>\n <defs>\n <clipPath id=\"p55574efcf7\">\n <rect height=\"217.44\" width=\"334.8\" x=\"53.328125\" y=\"7.2\"/>\n </clipPath>\n </defs>\n</svg>\n",
"image/png": "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\n"
},
"metadata": {
"needs_background": "light"
}
}
],
"source": [
"sns.countplot(wine['quality'])"
]
},
{
"cell_type": "code",
"execution_count": 13,
"metadata": {},
"outputs": [],
"source": [
"# Now separate the dataset as reponse variable and feature variables\n",
"X = wine.drop('quality', axis=1)\n",
"y = wine['quality']"
]
},
{
"cell_type": "code",
"execution_count": 14,
"metadata": {},
"outputs": [],
"source": [
"# Train and test splitting of data\n",
"X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)"
]
},
{
"cell_type": "code",
"execution_count": 15,
"metadata": {},
"outputs": [],
"source": [
"# Applying standard scaling to get optimized result\n",
"sc = StandardScaler()\n",
"X_train = sc.fit_transform(X_train)\n",
"X_test = sc.transform(X_test)"
]
},
{
"source": [
"# Random Forest Classifier"
],
"cell_type": "markdown",
"metadata": {}
},
{
"cell_type": "code",
"execution_count": 21,
"metadata": {},
"outputs": [],
"source": [
"rfc = RandomForestClassifier(n_estimators=200)\n",
"rfc.fit(X_train, y_train)\n",
"pred_rfc = rfc.predict(X_test)"
]
},
{
"cell_type": "code",
"execution_count": 23,
"metadata": {},
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
" precision recall f1-score support\n\n 0 0.93 0.96 0.94 273\n 1 0.72 0.55 0.63 47\n\n accuracy 0.90 320\n macro avg 0.82 0.76 0.79 320\nweighted avg 0.90 0.90 0.90 320\n\n[[263 10]\n [ 21 26]]\n"
]
}
],
"source": [
"# Let's see how out model performed\n",
"print(classification_report(y_test, pred_rfc))\n",
"print(confusion_matrix(y_test, pred_rfc))"
]
},
{
"source": [
"# SVM Classifier"
],
"cell_type": "markdown",
"metadata": {}
},
{
"cell_type": "code",
"execution_count": 24,
"metadata": {},
"outputs": [],
"source": [
"clf = svm.SVC()\n",
"clf.fit(X_train, y_train)\n",
"pred_clf = clf.predict(X_test)"
]
},
{
"cell_type": "code",
"execution_count": 25,
"metadata": {},
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
" precision recall f1-score support\n\n 0 0.88 0.98 0.93 273\n 1 0.71 0.26 0.37 47\n\n accuracy 0.88 320\n macro avg 0.80 0.62 0.65 320\nweighted avg 0.86 0.88 0.85 320\n\n[[268 5]\n [ 35 12]]\n"
]
}
],
"source": [
"# Let's see how out model performed\n",
"print(classification_report(y_test, pred_clf))\n",
"print(confusion_matrix(y_test, pred_clf))"
]
},
{
"source": [
"# Neural Network"
],
"cell_type": "markdown",
"metadata": {}
},
{
"cell_type": "code",
"execution_count": 26,
"metadata": {},
"outputs": [
{
"output_type": "stream",
"name": "stderr",
"text": [
"/home/bruce/.local/lib/python3.8/site-packages/sklearn/neural_network/_multilayer_perceptron.py:614: ConvergenceWarning: Stochastic Optimizer: Maximum iterations (500) reached and the optimization hasn't converged yet.\n warnings.warn(\n"
]
}
],
"source": [
"mlpc = MLPClassifier(hidden_layer_sizes=(11,11,11), max_iter=500)\n",
"mlpc.fit(X_train, y_train)\n",
"pred_mlpc = mlpc.predict(X_test)"
]
},
{
"cell_type": "code",
"execution_count": 27,
"metadata": {},
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
" precision recall f1-score support\n\n 0 0.92 0.94 0.93 273\n 1 0.61 0.53 0.57 47\n\n accuracy 0.88 320\n macro avg 0.77 0.74 0.75 320\nweighted avg 0.88 0.88 0.88 320\n\n[[257 16]\n [ 22 25]]\n"
]
}
],
"source": [
"# Let's see how out model performed\n",
"print(classification_report(y_test, pred_mlpc))\n",
"print(confusion_matrix(y_test, pred_mlpc))"
]
},
{
"cell_type": "code",
"execution_count": 29,
"metadata": {},
"outputs": [
{
"output_type": "execute_result",
"data": {
"text/plain": [
"0.903125"
]
},
"metadata": {},
"execution_count": 29
}
],
"source": [
"accuracy_score(y_test, pred_rfc)"
]
},
{
"cell_type": "code",
"execution_count": 30,
"metadata": {},
"outputs": [
{
"output_type": "execute_result",
"data": {
"text/plain": [
"array([0])"
]
},
"metadata": {},
"execution_count": 30
}
],
"source": [
"Xnew = [[7.3, 0.58, 0.00, 2.0, 0.065, 15.0, 21.0, 0.9946, 3.36, 0.47, 10.0]]\n",
"Xnew = sc.transform(Xnew)\n",
"rfc.predict(Xnew)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment