Queer European MD passionate about IT
소스 검색

revert deleted code

Problem described here: https://github.com/dataquestio/solutions/commit/e606e3294ace372adf0ecc2d6f2a6c0de8a5ca93#r36447398
Alex 5 년 전
부모
커밋
2946c3d61b
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 5 1
      Mission310Solutions.ipynb

+ 5 - 1
Mission310Solutions.ipynb

@@ -1942,7 +1942,11 @@
     }
    ],
    "source": [
-    "=;"
+    "# Remove the rows with null values in 'CountryLive'\n",
+    "fcc_good = fcc_good[fcc_good['CountryLive'].notnull()]\n",
+    "\n",
+    "# Frequency table to check if we still have enough data\n",
+    "fcc_good['CountryLive'].value_counts().head()"
    ]
   },
   {