InterviewSolution
| 1. |
During analysis, how do you treat the missing values? |
|
Answer» To IDENTIFY the extent of missing VALUES, we first have to identify the variables with the missing values. Let us say a pattern is identified. The analyst should now concentrate on them as it could lead to interesting and meaningful insights. HOWEVER, if there are no patterns identified, we can SUBSTITUTE the missing values with the median or mean values or we can simply ignore the missing values. If the variable is categorical, the default value to the mean, MINIMUM, and maximum is assigned. The missing value is assigned to the default value. If we have a distribution of data coming, for normal distribution, we give the mean value. If 80% of the values are missing for a particular variable, then we would drop the variable instead of treating the missing values. |
|