Skip to content

Interquartile Range #155

@oldoc63

Description

@oldoc63
  • The box extends to the first and third quartile of the dataset drawing the interquartile range.
  • NumPy’s quantile() function will find the first and third quartile:
dataset = [4, 8, 15, 16, 23]
first_quartile = np.quantile(dataset, 0.25) 
third_quartile = np.quantile(dataset, 0.75)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions