Informatics Practices
To divide total distribution of given data in eight equal parts, …………… function is used.
- median()
- quartile()
- quantile()
- all of these
Python Pandas
1 Like
Answer
quantile()
Reason — To divide the total distribution of given data into eight equal parts, we can use the quantile() function with a quantile value of 0.125 (1/8). For example, to divide the data of DataFrame df1 into eight equal parts, the statement would be df.quantile(q = 0.125).
Answered By
2 Likes
Related Questions
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 four 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()
Which function calculates descriptive statistical details for a DataFrame ?
- info()
- describe()
- show()
- list()