Solved

Which of the Following Statements A), B) or C) Is

Question 17

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:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions