Skip to content

Advantages and Disadvantages added as in Video #4

New issue

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

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions Feature Engineering- Missing Values Day 2.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -1215,6 +1215,23 @@
"sns.boxplot('Age_end_distribution',data=df)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Advantages\n",
"1. Easy to implement\n",
"2. Captures the importance of missingess if there is one\n",
"\n",
"### Dsiadvantages\n",
"1. Distorts the original distribution of the variale\n",
"2. If missingess is not importrant, it may mask the predictive power of the original variable by distorting its distribution\n",
"3. if the number of NA is big, it will mask the true outliers in the distribution\n",
"4. if the number of NA is small, the replaced NA may be considered an outlier and pre-processed in a subsequent feature engineering\n",
"\n",
" "
]
},
{
"cell_type": "code",
"execution_count": null,
Expand Down