Which of the following trims the list L by 10% in python
Stats.trim_mean(L, 10)
Stats.trim_mean(L, 0.1)
Stats.trim_mean(L, -10)
Stats.trim_mean(L, -0.1)
Answers
Answered by
0
Answer:
Stats.trim_mean(L,0.1)
Explanation:
Since the only valid arguments out of all these is 0.1 because it accepts only fractional float values , but since stats.trim_mean is class of scipy module and it actually returns the mean of trimmed values , the question seems to be somewhat incomplete .
Similar questions
Computer Science,
1 month ago
Math,
1 month ago
Math,
3 months ago
Accountancy,
3 months ago
Computer Science,
9 months ago
Math,
9 months ago