Skip to content

Commit 98dcce4

Browse files
author
Joseph Damiba
committed
fix typo
1 parent 77c0639 commit 98dcce4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/python/box-plots.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@ fig.show()
7373

7474
### Choosing The Algorithm For Computing Quartiles
7575

76-
By default, quartiles for box plots are computed using a linear algorithm method (see #10 listed on http://www.amstat.org/publications/jse/v14n3/langford.html for more details). However, you can also choose to use an `exclusive` or an `inclusive` algorithm to compute quartiles.
76+
By default, quartiles for box plots are computed using a linear algorithm method (see #10 listed on [http://www.amstat.org/publications/jse/v14n3/langford.html](http://www.amstat.org/publications/jse/v14n3/langford.html) for more details). However, you can also choose to use an `exclusive` or an `inclusive` algorithm to compute quartiles.
7777

78-
The *exclusive* algorithm uses the median to divide the ordered dataset into two halves. If the sample is odd, it does not includes the median in either half. Q1 is then the median of the lower half and Q3 is the median of the upper half.
78+
The *exclusive* algorithm uses the median to divide the ordered dataset into two halves. If the sample is odd, it does not include the median in either half. Q1 is then the median of the lower half and Q3 is the median of the upper half.
7979

8080
The *inclusive* algorithm also uses the median to divide the ordered dataset into two halves, but if the sample is odd, it includes the median in both halves. Q1 is then the median of the lower half and Q3 the median of the upper half.
8181

0 commit comments

Comments
 (0)