Multiple Choice
Which of the following statements a) , b) or c) is false?
A) It's helpful to xe "visualize the data"visualize your data by plotting the target value against each feature-in the case of the California Housing Prices dataset, to see how the median home value relates to each feature.
B) DataFrame method sample can randomly select a percentage of a DataFrame's data (specified keyword argument frac) , as in: sample_df = california_df.sample(frac=0.1, random_state=17)
C) The keyword argument random_state in Part (b) 's snippet enables you to seed the random number generator. Each time you use the same seed value, method sample selects a similar random subset of the DataFrame's rows.
D) All of the above statements are true.
Correct Answer:

Verified
Correct Answer:
Verified
Q12: Which of the following statements a), b)
Q13: Which of the following statements is false?<br>A)
Q14: Which of the following statements is false?<br>A)
Q15: Which of the following statements a), b)
Q16: Which of the following statements a), b)
Q18: Which of the following statements a), b)
Q19: Which of the following statements a), b)
Q20: Scikit-learn estimators require their training and testing
Q21: Which of the following statements is false?<br>A)
Q22: Which of the following statements a),