Skip to content

Commit

Permalink
Add starter notebook template
Browse files Browse the repository at this point in the history
  • Loading branch information
marcvdijk committed Oct 22, 2018
1 parent a1d5069 commit d3dbca9
Showing 1 changed file with 60 additions and 0 deletions.
60 changes: 60 additions & 0 deletions template.ipynb
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
{
"cells": [
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [],
"source": [
"import matplotlib.pyplot as plt\n",
"plt.rcParams['figure.figsize'] = [10, 5]\n",
"\n",
"from pandas import DataFrame, read_excel"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Distinguish Iris species based on flower morphological features\n",
"\n",
"**Pandas, a powerful Python data analysis toolkit [docs](http://pandas.pydata.org/pandas-docs/stable/)**\n",
"\n",
"<img align=\"right\" src=\"data/iris_petal_sepal.png\">\n",
"The Iris flower data set or Fisher's Iris data set is a multivariate data set introduced by the British statistician and biologist Ronald Fisher.\n",
"\n",
"The data set consists of 50 samples from each of three species of Iris (*Iris setosa*, *Iris virginica* and *Iris versicolor*). Four features were measured from each sample: the length and the width of the sepals and petals, in centimeters."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"df = read_excel('data/iris-dataset.xls')"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"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.6.6"
}
},
"nbformat": 4,
"nbformat_minor": 2
}

0 comments on commit d3dbca9

Please sign in to comment.