APPLICATION OF SUPERVISED LEARNING
CLASSIFICATION IN MACHINE LEARNING
Question
[CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
|
I have 4 variables in the dataset such as-A, B, C & D. I have performed the following actions:Step 1:Using the above variables, I have created two more variables, namely E = A + 3 * B and F = B + 5 * C + D.Step 2:Then using only the variables E and F I have built a Random Forest model.Could the steps performed above represent a dimensionality reduction method?
|
TRUE
|
|
FALSE
|
|
Either A or B
|
|
None of the above
|
Explanation:
Detailed explanation-1: -pca = PCA(n components = number of Principal Components )
Detailed explanation-2: -pca = PCA(n components=?) In other words, when we apply PCA to the original dataset with p number of variables to get a transformed dataset with k number of variables (principal components), n components is equal to k, where the value of k is much less than the value of p.
There is 1 question to complete.