InterviewSolution
| 1. |
What is variable transformation? When to use variable transformation? |
|
Answer» Response: We perform different EXPLORATION tasks when we get input datasets to perform analyses and understand the same. Once our data is ready and analyzed, we try to perform the FEATURE engineering process to make it ready to be used in a modelling process. Feature engineering process comprises of two key tasks such as Variable/feature transformation and Variable/feature creation. Variable or feature transformation – This is where a variable is replaced by a function. For example, replacing a variable F1 by the square or CUBE root or logarithm F1 is a transformation. Therefore, this process changes the distribution or relationship of a variable with others. Some of the SITUATIONS where we want to use variable transformation are as follows:
|
|