Informatics Practices
To divide total distribution of given data in four equal parts, …………… function is used.
- median()
- quartile()
- quantile()
- all of these
Python Pandas
3 Likes
Answer
quantile()
Reason — The quantile() function is used to divide the total distribution of given data into four equal parts. For example, to divide the data of DataFrame ndf into four equal parts, the statement would be df.quantile(q = 0.25).
Answered By
1 Like
Related Questions
…………… divides the total distribution in four equal parts.
- quartile
- tercile
- median
- quantile
To divide total distribution of given data in two equal parts, …………… function is used.
- median()
- quartile()
- quantile()
- all of these
To divide total distribution of given data in eight equal parts, …………… function is used.
- median()
- quartile()
- quantile()
- all of these
Which of the following is not a descriptive statistics function ?
- count()
- add()
- sum()
- max()