
Ultimate access to all questions.
Which of the following code blocks returns a 15% sample of rows from the DataFrame storesDF without replacement?
A
storesDF.sample(fraction = 0.10)
B
storesDF.sampleBy(fraction = 0.15)
C
storesDF.sample(True, fraction = 0.10)
D
storesDF.sample()
E
storesDF.sample(fraction = 0.15)