Queer European MD passionate about IT
Browse Source

Update Mission207Solutions.ipynb

darinbradley 2 năm trước cách đây
mục cha
commit
eee4333fb5
1 tập tin đã thay đổi với 9 bổ sung15 xóa
  1. 9 15
      Mission207Solutions.ipynb

+ 9 - 15
Mission207Solutions.ipynb

@@ -6,11 +6,11 @@
     "collapsed": true
    },
    "source": [
-    "## Birth Dates In The United States\n",
+    "## Birth Dates in the United States\n",
     "\n",
-    "The raw data behind the story **Some People Are Too Superstitious To Have A Baby On Friday The 13th**, which you can read [here](http://fivethirtyeight.com/features/some-people-are-too-superstitious-to-have-a-baby-on-friday-the-13th/).\n",
+    "Here is the raw data behind the story **Some People Are Too Superstitious to Have a Baby on Friday the 13th**, which you can read [here](http://fivethirtyeight.com/features/some-people-are-too-superstitious-to-have-a-baby-on-friday-the-13th/).\n",
     "\n",
-    "We'll be working with the data set from the Centers for Disease Control and Prevention's National National Center for Health Statistics.  The data set has the following structure:\n",
+    "We'll be working with the dataset from the Centers for Disease Control and Prevention's National National Center for Health Statistics. The dataset has the following structure:\n",
     "\n",
     "- `year` - Year\n",
     "- `month` - Month\n",
@@ -22,9 +22,7 @@
   {
    "cell_type": "code",
    "execution_count": null,
-   "metadata": {
-    "collapsed": false
-   },
+   "metadata": {},
    "outputs": [],
    "source": [
     "f = open(\"births.csv\", 'r')\n",
@@ -35,9 +33,7 @@
   {
    "cell_type": "code",
    "execution_count": null,
-   "metadata": {
-    "collapsed": false
-   },
+   "metadata": {},
    "outputs": [],
    "source": [
     "lines_list = text.split(\"\\n\")\n",
@@ -47,9 +43,7 @@
   {
    "cell_type": "code",
    "execution_count": null,
-   "metadata": {
-    "collapsed": false
-   },
+   "metadata": {},
    "outputs": [],
    "source": [
     "data_no_header = lines_list[1:len(lines_list)]\n",
@@ -72,7 +66,7 @@
  "metadata": {
   "anaconda-cloud": {},
   "kernelspec": {
-   "display_name": "Python [default]",
+   "display_name": "Python 3",
    "language": "python",
    "name": "python3"
   },
@@ -86,9 +80,9 @@
    "name": "python",
    "nbconvert_exporter": "python",
    "pygments_lexer": "ipython3",
-   "version": "3.4.5"
+   "version": "3.8.5"
   }
  },
  "nbformat": 4,
- "nbformat_minor": 0
+ "nbformat_minor": 1
 }