{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# `setup.ipynb`"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Introduction\n",
"State notebook purpose here"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Imports\n",
"Import libraries and write settings here."
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
" \n",
" "
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
" \n",
" "
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"# Data manipulation\n",
"import pandas as pd\n",
"import numpy as np\n",
"\n",
"# Options for pandas\n",
"pd.options.display.max_columns = 50\n",
"pd.options.display.max_rows = 30\n",
"\n",
"# Display all cell outputs\n",
"from IPython.core.interactiveshell import InteractiveShell\n",
"\n",
"InteractiveShell.ast_node_interactivity = \"all\"\n",
"\n",
"from IPython import get_ipython\n",
"\n",
"ipython = get_ipython()\n",
"\n",
"# autoreload extension\n",
"if \"autoreload\" not in ipython.extension_manager.loaded:\n",
" %load_ext autoreload\n",
"\n",
"%autoreload 2\n",
"\n",
"# Visualizations\n",
"import chart_studio.plotly as py\n",
"import plotly.graph_objs as go\n",
"from plotly.offline import iplot, init_notebook_mode\n",
"\n",
"init_notebook_mode(connected=True)\n",
"\n",
"import cufflinks as cf\n",
"\n",
"cf.go_offline(connected=True)\n",
"cf.set_config_file(theme=\"white\")"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Analysis/Modeling\n",
"Do work here"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Results\n",
"Show graphs and stats here"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Conclusions and Next Steps\n",
"Summarize findings here"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3.11 Kernel",
"language": "python",
"name": "python311"
},
"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.11.4"
},
"latex_envs": {
"LaTeX_envs_menu_present": true,
"autoclose": false,
"autocomplete": true,
"bibliofile": "biblio.bib",
"cite_by": "apalike",
"current_citInitial": 1,
"eqLabelWithNumbers": true,
"eqNumInitial": 1,
"hotkeys": {
"equation": "Ctrl-E",
"itemize": "Ctrl-I"
},
"labels_anchors": false,
"latex_user_defs": false,
"report_style_numbering": false,
"user_envs_cfg": false
},
"varInspector": {
"cols": {
"lenName": 16,
"lenType": 16,
"lenVar": 40
},
"kernels_config": {
"python": {
"delete_cmd_postfix": "",
"delete_cmd_prefix": "del ",
"library": "var_list.py",
"varRefreshCmd": "print(var_dic_list())"
},
"r": {
"delete_cmd_postfix": ") ",
"delete_cmd_prefix": "rm(",
"library": "var_list.r",
"varRefreshCmd": "cat(var_dic_list()) "
}
},
"types_to_exclude": [
"module",
"function",
"builtin_function_or_method",
"instance",
"_Feature"
],
"window_display": false
},
"widgets": {
"application/vnd.jupyter.widget-state+json": {
"state": {},
"version_major": 2,
"version_minor": 0
}
}
},
"nbformat": 4,
"nbformat_minor": 4
}