Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Subhasis Ray committed Jul 18, 2019
1 parent 74d87a0 commit 5bfeec2
Showing 1 changed file with 28 additions and 12 deletions.
40 changes: 28 additions & 12 deletions Wisconsin_breast_cancer_data.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
}
},
"source": [
"# Python for data analysis"
" # Python for data analysis"
]
},
{
Expand Down Expand Up @@ -600,6 +600,15 @@
"b = \"This is also a string\""
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"len(a)"
]
},
{
"cell_type": "code",
"execution_count": null,
Expand Down Expand Up @@ -765,7 +774,7 @@
},
"outputs": [],
"source": [
"# mydict['fly'] = 'arthropod'"
"mydict['fly'] = 'arthropod'"
]
},
{
Expand Down Expand Up @@ -911,12 +920,26 @@
" print(ii) "
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"slideshow": {
"slide_type": "subslide"
}
},
"outputs": [],
"source": [
"for a in range(5):\n",
" print(a)"
]
},
{
"cell_type": "markdown",
"metadata": {
"colab_type": "text",
"slideshow": {
"slide_type": "fragment"
"slide_type": "subslide"
}
},
"source": [
Expand Down Expand Up @@ -1457,7 +1480,7 @@
"outputs": [],
"source": [
"a2 = np.arange(2.0, 7.0, 1.5)\n",
"# array of numbers starting with 3.0, at increments of 2.0, less than 8.0"
"# array of numbers starting with 2.0, at increments of 1.5, less than 7.0"
]
},
{
Expand Down Expand Up @@ -2430,13 +2453,6 @@
" This is called a stack trace - when one function calls another function, which calls another function, etc., and an inner funtion encounters an error, it shows the outer most function first, and then goes deeper and deeper until the source of the error."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
},
{
"cell_type": "code",
"execution_count": null,
Expand Down Expand Up @@ -3526,7 +3542,7 @@
}
},
"source": [
"- Ask stackoverflow"
"- Ask *stackoverflow*"
]
},
{
Expand Down

0 comments on commit 5bfeec2

Please sign in to comment.