Solveeit Logo

Question

Informatics Practices Question on types of functions

Choose the correct statement to display the median using quantile function if the name of the Dataframe is df:

A

df.quantile()

B

df.quantile (q= .25)

C

df.quantile(q= .75)

D

df.quantile(q = median)

Answer

df.quantile()

Explanation

Solution

The correct option is(A): df.quantile()