Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

Already on GitHub? Sign in to your account

Update Exercises-4.ipynb #31

Merged
merged 3 commits into from Jul 10, 2017
Jump to file or symbol
Failed to load files and symbols.
+4 −4
Split
View
@@ -378,7 +378,7 @@
}
},
{
- "source": "### Plot the fraction of roles that have been 'actor' roles each year in the hitsory of film.",
+ "source": "### Plot the fraction of roles that have been 'actor' roles each year in the history of film.",
"cell_type": "markdown",
"metadata": {
"collapsed": true
@@ -472,4 +472,4 @@
}
}
}
-}
+}
View
@@ -1762,7 +1762,7 @@
}
],
"source": [
- "# How many roles were avilable for actresses in the 1950s?\n",
+ "# How many roles were available for actresses in the 1950s?\n",
"\n",
"c = cast\n",
"c = c[c.year // 10 == 195]\n",
View
@@ -517,7 +517,7 @@
],
"source": [
"# Plot the fraction of roles that have been 'actor' roles\n",
- "# each year in the hitsory of film.\n",
+ "# each year in the history of film.\n",
"\n",
"c = cast\n",
"c = c.groupby(['year', 'type']).size()\n",