Name the function that lets you calculate different types of quantiles.
2 Likes
The function used to calculate different types of quantiles is quantiles() with syntax : <dataframe>.quantile(q = 0.5, axis = 0, numeric_only = True).
quantiles()
<dataframe>.quantile(q = 0.5, axis = 0, numeric_only = True)
Answered By
1 Like
What happens if mode() returns multiple values for a column but other columns have a single mode ?
What is quantile and quartile ?
Name the functions that give you maximum and minimum values in a DataFrame.
Name the functions that give you the index of maximum and minimum values in a DataFrame.