| 1 |
#
|
| 2 |
# Box and Whisker Plot.
|
| 3 |
# This file represents a single curve with error
|
| 4 |
# and extrema boxes. The curve itself is A.
|
| 5 |
# The upper box limit is B. The lower box limit is C.
|
| 6 |
# The maximum is D. The minimum is E.
|
| 7 |
#
|
| 8 |
|
| 9 |
include = standard.plt # standard definitions
|
| 10 |
|
| 11 |
fthick = 3 # frame thickness
|
| 12 |
othick = 0 # origin thickness
|
| 13 |
grid = 0 # grid on?
|
| 14 |
|
| 15 |
symfile = symbols.mta # our symbol file
|
| 16 |
|
| 17 |
#
|
| 18 |
# Curve defaults:
|
| 19 |
#
|
| 20 |
|
| 21 |
Asymtype = "ex" # symbol for main curve
|
| 22 |
Asymsize = 100 # symbol radius
|
| 23 |
Athick = 2 # line thickness
|
| 24 |
Alintype = 1 # line type
|
| 25 |
Acolor = 4 # color
|
| 26 |
|
| 27 |
Bsymtype = "boxtop" # upper box limit
|
| 28 |
Bsymsize = 150
|
| 29 |
Bthick = 0
|
| 30 |
Bcolor = 2
|
| 31 |
|
| 32 |
Csymtype = "boxbottom" # lower box limit
|
| 33 |
Csymsize = 150
|
| 34 |
Cthick = 0
|
| 35 |
Ccolor = 2
|
| 36 |
|
| 37 |
Dsymtype = "uptee" # maximum
|
| 38 |
Dsymsize = 150
|
| 39 |
Dthick = 0
|
| 40 |
Dcolor = 3
|
| 41 |
|
| 42 |
Esymtype = "downtee" # minimum
|
| 43 |
Esymsize = 150
|
| 44 |
Ethick = 0
|
| 45 |
Ecolor = 3
|