Skip to content

Commit

Permalink
Merge pull request #7 from yonishelach/seaborn
Browse files Browse the repository at this point in the history
add seaborn install line
  • Loading branch information
guy1992l authored Jun 25, 2024
2 parents d6bda5c + 3a4afcb commit 1399fe4
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions 01-exploratory-data-analysis.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -45,21 +45,29 @@
"The first step is loading sample datasets and understanding the data shape, types, statistical distribution, categories, missing values, and so on."
]
},
{
"cell_type": "code",
"execution_count": null,
"outputs": [],
"source": [
"!pip install seaborn"
],
"metadata": {
"collapsed": false
}
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"import numpy as np\n",
"import pandas as pd\n",
"import matplotlib.pyplot as plt\n",
"import seaborn as sns\n",
"import datetime\n",
"import math\n",
"import IPython\n",
"sns.set()"
]
],
"metadata": {
"collapsed": false
}
},
{
"cell_type": "code",
Expand Down

0 comments on commit 1399fe4

Please sign in to comment.