-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathompl.txt
More file actions
19 lines (13 loc) · 710 Bytes
/
ompl.txt
File metadata and controls
19 lines (13 loc) · 710 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Box Plots:
Use matplotlib boxplot function for the measurements from the database
Red Line: Median of data, 50 percent of data below, 50 percent above.
Box:
The lower box shows the Q1=25th percentile value, 25 percent of data fall
below that line. The upper box shows the Q3=75th percentile value, 75 percent of
the data fall below that line.
Whiskers: lower end: the minimum data point above Q1-1.5(Q3-Q1), upper end: the maximum data point
below Q3+1.5(Q3-Q1).
Black crosses: Outliers, either below Q1-1.5(Q3-Q1) or above Q3+1.5(Q3-Q1).
Note: One can change 1.5 to a constant M. Then we have an interval
[Q1-M(Q3-Q1),Q3+M(Q3-Q1)]. If M=+Inf, then the whiskers show the maximum and
minimum data point.