Informatics Practices

Name the function that lets you calculate different types of quantiles.

Python Pandas

2 Likes

Answer

The function used to calculate different types of quantiles is quantiles() with syntax : <dataframe>.quantile(q = 0.5, axis = 0, numeric_only = True).

Answered By

1 Like


Related Questions