Skip to content

Instantly share code, notes, and snippets.

View saxenanihal95's full-sized avatar
🏠
Working from home

Nihal Saxena saxenanihal95

🏠
Working from home
View GitHub Profile
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@saxenanihal95
saxenanihal95 / .ipynb
Created July 13, 2019 04:46
Search Engine
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Search Engine"
]
},
{
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Search Engine"
]
},
{
# columns with missing values
null_columns = dataset.columns[dataset.isnull().any()]
# count of missing rows in each columns
training_set[null_columns].isnull().sum()
# count of non empty rows in each columns
training_set[null_columns].count()
# columns with missing values