This commit is contained in:
wassname
2022-06-29 14:10:07 +08:00
parent c11b8ffb6b
commit faad0c1c3c
@@ -5,7 +5,9 @@
"id": "1b44551e",
"metadata": {},
"source": [
"# Exploratory Data Analysis"
"# Exploratory Data Analysis\n",
"\n",
"An example notebook"
]
},
{
@@ -42,23 +44,6 @@
"load_dotenv() # take environment variables from .env."
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "3bf3f9ad",
"metadata": {
"ExecuteTime": {
"end_time": "2022-06-28T02:34:02.705067Z",
"start_time": "2022-06-28T02:34:02.696453Z"
}
},
"outputs": [],
"source": [
"import matplotlib.pyplot as plt\n",
"%matplotlib inline\n",
"plt.style.use('ggplot')"
]
},
{
"cell_type": "code",
"execution_count": null,
@@ -71,17 +56,17 @@
},
"outputs": [],
"source": [
"# I like using ggplot colors\n",
"\n",
"import matplotlib.pyplot as plt\n",
"%matplotlib inline\n",
"plt.style.use('ggplot')\n",
"\n",
"import numpy as np\n",
"import pandas as pd\n",
"\n",
"from pathlib import Path\n",
"from tqdm.auto import tqdm\n",
"\n",
"\n",
"logging.basicConfig(stream=os.sys.stdout, level=logging.INFO)\n",
"logger = logging.getLogger('nb')\n",
"logger.setLevel(logging.INFO)\n",
"\n"
"from tqdm.auto import tqdm"
]
},
{
@@ -90,7 +75,15 @@
"id": "6d102e3d",
"metadata": {},
"outputs": [],
"source": []
"source": [
"# and using the logger\n",
"import logging\n",
"import os\n",
"\n",
"logging.basicConfig(stream=os.sys.stdout, level=logging.INFO)\n",
"logger = logging.getLogger('nb')\n",
"logger.setLevel(logging.INFO)"
]
}
],
"metadata": {