update example data

main
David O'Toole 2022-11-06 10:54:45 -05:00
parent febbbde16d
commit deb7df7df2
4 changed files with 565 additions and 77 deletions

View File

@ -10,6 +10,7 @@
#+end_src #+end_src
#+begin_src elisp #+begin_src elisp
(setq org-capture-templates '(("j" "Journal" entry (file+headline "~/tracking/tracking.org" "Journal") (setq org-capture-templates '(("j" "Journal" entry (file+headline "~/tracking/tracking.org" "Journal")
"* %t "* %t
@ -18,18 +19,20 @@
:sleep: :sleep:
:nicotine: :nicotine:
:distress: :distress:
:missed:
:pain: :pain:
:END: :END:
"))) ")))
#+end_src #+end_src
#+begin_src gnuplot :var data=mydata #+begin_src gnuplot :var data=mydata
# clear graphics from any previous run # clear graphics from any previous run
reset reset
# define output parameters # define output parameters
set terminal svg font "Arial" size 900,900 set terminal svg font "Arial" size 900,900
set output './test.svg' set output './example.svg'
# use org-mode format for input # use org-mode format for input
set datafile separator "\t" set datafile separator "\t"
@ -53,61 +56,65 @@ set xtics rotate by 60 right
set key box lc 'gray60' set key box lc 'gray60'
set xtics format "%a %m/%d" set xtics format "%a %m/%d"
set yrange [0:30] set yrange [0:40]
set linetype 1 lw 2 lc rgb 'forest-green' ps 1 pt 9 set linetype 1 lw 2 lc rgb 'forest-green' ps 1 pt 9
set linetype 2 lw 2 lc rgb 'purple' ps 1 pt 1 set linetype 2 lw 2 lc rgb 'purple' ps 1 pt 1
set linetype 3 lw 2 lc rgb 'dark-yellow' ps 1 pt 1 set linetype 3 lw 2 lc rgb 'dark-yellow' ps 1 pt 1
set linetype 4 lw 2 lc rgb 'dark-pink' ps 1 pt 1 set linetype 4 lw 2 lc rgb 'dark-pink' ps 1 pt 1
set linetype 5 lw 2 lc rgb 'orange' ps 1 pt 1 set linetype 5 lw 2 lc rgb 'red' ps 1 pt 11
set linetype 6 lw 1 lc rgb 'forest-green' set linetype 6 lw 2 lc rgb 'orange' ps 1 pt 1
set arrow 6 from graph 0, first 20 to graph 1, first 20 lt 6 dt '..' set linetype 7 lw 1 lc rgb 'forest-green'
set arrow 7 from graph 0, first 20 to graph 1, first 20 lt 7 dt '..'
set label "20" at graph 0.52, first 20 font 'Arial,16' tc rgb 'forest-green' set label "20" at graph 0.52, first 20 font 'Arial,16' tc rgb 'forest-green'
set linetype 7 lw 1 lc rgb 'purple' set linetype 8 lw 1 lc rgb 'purple'
set arrow 7 from graph 0, first 8 to graph 1, first 8 lt 7 dt '..' set arrow 8 from graph 0, first 8 to graph 1, first 8 lt 8 dt '..'
set label "8" at graph 0.52, first 8 font 'Arial,16' tc rgb 'purple' set label "8" at graph 0.52, first 8 font 'Arial,16' tc rgb 'purple'
set linetype 8 lw 1 lc rgb 'dark-yellow' set linetype 9 lw 1 lc rgb 'dark-yellow'
set arrow 8 from graph 0, first 5 to graph 1, first 5 lt 8 dt '..' set arrow 9 from graph 0, first 5 to graph 1, first 5 lt 9 dt '..'
set label "5" at graph 0.52, first 5 font 'Arial,16' tc rgb 'dark-yellow' set label "5" at graph 0.52, first 5 font 'Arial,16' tc rgb 'dark-yellow'
plot data using 1:($2 == 0 ? NaN : $2) with points title 'exercise (minutes)' lt 1, \ plot data using 1:($2 == 0 ? NaN : $2) with points title 'exercise (minutes)' lt 1, \
data using 1:3 with lines title 'sleep (hours)' lt 2, \ data using 1:3 with lines title 'sleep (hours)' lt 2, \
data using 1:4 with lines title 'nicotine (doses)' lt 3, \ data using 1:4 with lines title 'nicotine (doses)' lt 3, \
data using 1:5 with lines title 'distress (scale)' lt 4, \ data using 1:5 with lines title 'distress (scale)' lt 4, \
data using 1:6 with lines title 'pain (scale)' lt 5 data using 1:($6 == 0 ? NaN : $6) with points title 'missed (doses)' lt 5, \
data using 1:7 with lines title 'pain (scale)' lt 6
#+end_src #+end_src
#+RESULTS: #+RESULTS:
* Data table
#+BEGIN: columnview :hlines 1 :id myid #+BEGIN: columnview :hlines 1 :id myid
#+tblname: mydata #+tblname: mydata
| Date | exercise minutes | sleep hours | nicotine doses | distress | pain | tags | | Date | exercise minutes | sleep hours | nicotine doses | distress scale | missed doses | pain scale |
|------------------+------------------+-------------+----------------+----------+------+------| |------------------+------------------+-------------+----------------+----------------+--------------+------------|
| | | | | | | | | | | | | | | |
| [2022-09-30 Fri] | 20 | 6 | 4 | 4 | 2 | | | [2022-09-30 Fri] | 20 | 6 | 4 | 4 | 0 | 2 |
| [2022-10-01 Sat] | 10 | 7.5 | 6 | 3 | 2 | | | [2022-10-01 Sat] | 10 | 7.5 | 6 | 3 | 0 | 2 |
| [2022-10-02 Sun] | 15 | 8 | 7 | 2 | 2 | | | [2022-10-02 Sun] | 15 | 8 | 7 | 2 | 0 | 2 |
| [2022-10-03 Mon] | 0 | 6 | 5 | 2 | 2 | | | [2022-10-03 Mon] | 0 | 6 | 5 | 2 | 0 | 2 |
| [2022-10-04 Tue] | 0 | 8.5 | 5 | 4 | 2 | | | [2022-10-04 Tue] | 0 | 8.5 | 5 | 4 | 0 | 2 |
| [2022-10-05 Wed] | 15 | 8 | 5 | 4 | 2 | | | [2022-10-05 Wed] | 15 | 8 | 5 | 4 | 0 | 2 |
| [2022-10-06 Thu] | 25 | 8.5 | 5 | 4 | 2 | | | [2022-10-06 Thu] | 25 | 8.5 | 5 | 4 | 0 | 2 |
| [2022-10-07 Fri] | 25 | 6 | 5 | 3 | 2 | | | [2022-10-07 Fri] | 25 | 6 | 5 | 3 | 0 | 2 |
| [2022-10-08 Sat] | 20 | 9 | 0 | 3 | 2 | | | [2022-10-08 Sat] | 20 | 9 | 0 | 3 | 0 | 2 |
| [2022-10-09 Sun] | 0 | 6 | 3 | 4 | 2 | | | [2022-10-09 Sun] | 0 | 6 | 3 | 4 | 0 | 2 |
| [2022-10-10 Mon] | 0 | 6 | 5 | 5 | 2 | | | [2022-10-10 Mon] | 0 | 6 | 5 | 5 | 0 | 2 |
| [2022-10-11 Tue] | 0 | 6.5 | 4 | 4 | 2 | | | [2022-10-11 Tue] | 0 | 6.5 | 4 | 4 | 0 | 2 |
| [2022-10-12 Wed] | 0 | 3 | 0 | 3 | 2 | | | [2022-10-12 Wed] | 0 | 3 | 0 | 3 | 0 | 2 |
| [2022-10-13 Thu] | 0 | 4.5 | 0 | 3 | 3 | | | [2022-10-13 Thu] | 0 | 4.5 | 0 | 3 | 0 | 3 |
| [2022-10-14 Fri] | 0 | 4 | 0 | 3 | 3 | | | [2022-10-14 Fri] | 0 | 4 | 0 | 3 | 1 | 3 |
| [2022-10-15 Sat] | 0 | 5 | 0 | 3 | 2 | | | [2022-10-15 Sat] | 0 | 5 | 0 | 3 | 0 | 2 |
| [2022-10-16 Sun] | 0 | 2 | 0 | 4 | 1 | | | [2022-10-16 Sun] | 0 | 2 | 0 | 4 | 0 | 1 |
| [2022-10-17 Mon] | 0 | 4.5 | 0 | 3 | 2 | | | [2022-10-17 Mon] | 0 | 4.5 | 0 | 3 | 0 | 2 |
#+END: #+END:
* Journal
:PROPERTIES: * Journal
:columns: %timestamp(Date) %exercise(exercise minutes) %sleep(sleep hours) %nicotine(nicotine doses) %distress(distress) %pain(pain) %TAGS(tags) :PROPERTIES:
:ID: myid :columns: %timestamp(Date) %exercise(exercise minutes) %sleep(sleep hours) %nicotine(nicotine doses) %distress(distress scale) %missed(missed doses) %pain(pain scale)
:END: :ID: myid
:END:
** <2022-09-30 Fri> ** <2022-09-30 Fri>
:PROPERTIES: :PROPERTIES:
@ -116,6 +123,7 @@ data using 1:6 with lines title 'pain (scale)' lt 5
:nicotine: 4 :nicotine: 4
:distress: 4 :distress: 4
:pain: 2 :pain: 2
:missed: 0
:END: :END:
** <2022-10-01 Sat> ** <2022-10-01 Sat>
:PROPERTIES: :PROPERTIES:
@ -124,6 +132,7 @@ data using 1:6 with lines title 'pain (scale)' lt 5
:nicotine: 6 :nicotine: 6
:distress: 3 :distress: 3
:pain: 2 :pain: 2
:missed: 0
:END: :END:
** <2022-10-02 Sun> ** <2022-10-02 Sun>
@ -133,6 +142,7 @@ data using 1:6 with lines title 'pain (scale)' lt 5
:nicotine: 7 :nicotine: 7
:distress: 2 :distress: 2
:pain: 2 :pain: 2
:missed: 0
:END: :END:
** <2022-10-03 Mon> ** <2022-10-03 Mon>
@ -142,6 +152,7 @@ data using 1:6 with lines title 'pain (scale)' lt 5
:nicotine: 5 :nicotine: 5
:distress: 2 :distress: 2
:pain: 2 :pain: 2
:missed: 0
:END: :END:
** <2022-10-04 Tue> ** <2022-10-04 Tue>
:PROPERTIES: :PROPERTIES:
@ -150,6 +161,7 @@ data using 1:6 with lines title 'pain (scale)' lt 5
:nicotine: 5 :nicotine: 5
:distress: 4 :distress: 4
:pain: 2 :pain: 2
:missed: 0
:END: :END:
** <2022-10-05 Wed> ** <2022-10-05 Wed>
:PROPERTIES: :PROPERTIES:
@ -158,6 +170,7 @@ data using 1:6 with lines title 'pain (scale)' lt 5
:nicotine: 5 :nicotine: 5
:distress: 4 :distress: 4
:pain: 2 :pain: 2
:missed: 0
:END: :END:
** <2022-10-06 Thu> ** <2022-10-06 Thu>
:PROPERTIES: :PROPERTIES:
@ -166,6 +179,7 @@ data using 1:6 with lines title 'pain (scale)' lt 5
:nicotine: 5 :nicotine: 5
:distress: 4 :distress: 4
:pain: 2 :pain: 2
:missed: 0
:END: :END:
** <2022-10-07 Fri> ** <2022-10-07 Fri>
:PROPERTIES: :PROPERTIES:
@ -174,6 +188,7 @@ data using 1:6 with lines title 'pain (scale)' lt 5
:nicotine: 5 :nicotine: 5
:distress: 3 :distress: 3
:pain: 2 :pain: 2
:missed: 0
:END: :END:
** <2022-10-08 Sat> ** <2022-10-08 Sat>
:PROPERTIES: :PROPERTIES:
@ -182,6 +197,7 @@ data using 1:6 with lines title 'pain (scale)' lt 5
:nicotine: 0 :nicotine: 0
:distress: 3 :distress: 3
:pain: 2 :pain: 2
:missed: 0
:END: :END:
** <2022-10-09 Sun> ** <2022-10-09 Sun>
:PROPERTIES: :PROPERTIES:
@ -191,6 +207,7 @@ data using 1:6 with lines title 'pain (scale)' lt 5
:distress: 4 :distress: 4
:pain: 2 :pain: 2
:meditation: 0 :meditation: 0
:missed: 0
:END: :END:
** <2022-10-10 Mon> ** <2022-10-10 Mon>
:PROPERTIES: :PROPERTIES:
@ -199,6 +216,7 @@ data using 1:6 with lines title 'pain (scale)' lt 5
:nicotine: 5 :nicotine: 5
:distress: 5 :distress: 5
:pain: 2 :pain: 2
:missed: 0
:END: :END:
** <2022-10-11 Tue> ** <2022-10-11 Tue>
:PROPERTIES: :PROPERTIES:
@ -207,6 +225,7 @@ data using 1:6 with lines title 'pain (scale)' lt 5
:nicotine: 4 :nicotine: 4
:distress: 4 :distress: 4
:pain: 2 :pain: 2
:missed: 0
:END: :END:
** <2022-10-12 Wed> ** <2022-10-12 Wed>
:PROPERTIES: :PROPERTIES:
@ -215,6 +234,7 @@ data using 1:6 with lines title 'pain (scale)' lt 5
:nicotine: 0 :nicotine: 0
:distress: 3 :distress: 3
:pain: 2 :pain: 2
:missed: 0
:END: :END:
** <2022-10-13 Thu> ** <2022-10-13 Thu>
:PROPERTIES: :PROPERTIES:
@ -223,6 +243,7 @@ data using 1:6 with lines title 'pain (scale)' lt 5
:nicotine: 0 :nicotine: 0
:distress: 3 :distress: 3
:pain: 3 :pain: 3
:missed: 0
:END: :END:
** <2022-10-14 Fri> ** <2022-10-14 Fri>
:PROPERTIES: :PROPERTIES:
@ -231,6 +252,7 @@ data using 1:6 with lines title 'pain (scale)' lt 5
:nicotine: 0 :nicotine: 0
:distress: 3 :distress: 3
:pain: 3 :pain: 3
:missed: 1
:END: :END:
** <2022-10-15 Sat> ** <2022-10-15 Sat>
:PROPERTIES: :PROPERTIES:
@ -239,26 +261,23 @@ data using 1:6 with lines title 'pain (scale)' lt 5
:nicotine: 0 :nicotine: 0
:distress: 3 :distress: 3
:pain: 2 :pain: 2
:missed: 0
:END: :END:
** <2022-10-16 Sun> ** <2022-10-16 Sun>
:PROPERTIES: :PROPERTIES:
:exercise: 0 :exercise: 0
:sleep: 2 :sleep: 2
:adl: 1
:nicotine: 0 :nicotine: 0
:distress: 4 :distress: 4
:missed: 0 :missed: 0
:pain: 1 :pain: 1
:meditation: 0
:END: :END:
** <2022-10-17 Mon> ** <2022-10-17 Mon>
:PROPERTIES: :PROPERTIES:
:exercise: 0 :exercise: 0
:sleep: 4.5 :sleep: 4.5
:adl: 1
:nicotine: 0 :nicotine: 0
:distress: 3 :distress: 3
:missed: 0 :missed: 0
:pain: 2 :pain: 2
:meditation: 0
:END: :END:

447
example.svg 100644
View File

@ -0,0 +1,447 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<svg
width="900" height="900"
viewBox="0 0 900 900"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
>
<title>Gnuplot</title>
<desc>Produced by GNUPLOT 5.4 patchlevel 2 </desc>
<g id="gnuplot_canvas">
<rect x="0" y="0" width="900" height="900" fill="none"/>
<defs>
<circle id='gpDot' r='0.5' stroke-width='0.5' stroke='currentColor'/>
<path id='gpPt0' stroke-width='0.222' stroke='currentColor' d='M-1,0 h2 M0,-1 v2'/>
<path id='gpPt1' stroke-width='0.222' stroke='currentColor' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
<path id='gpPt2' stroke-width='0.222' stroke='currentColor' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
<rect id='gpPt3' stroke-width='0.222' stroke='currentColor' x='-1' y='-1' width='2' height='2'/>
<rect id='gpPt4' stroke-width='0.222' stroke='currentColor' fill='currentColor' x='-1' y='-1' width='2' height='2'/>
<circle id='gpPt5' stroke-width='0.222' stroke='currentColor' cx='0' cy='0' r='1'/>
<use xlink:href='#gpPt5' id='gpPt6' fill='currentColor' stroke='none'/>
<path id='gpPt7' stroke-width='0.222' stroke='currentColor' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
<use xlink:href='#gpPt7' id='gpPt8' fill='currentColor' stroke='none'/>
<use xlink:href='#gpPt7' id='gpPt9' stroke='currentColor' transform='rotate(180)'/>
<use xlink:href='#gpPt9' id='gpPt10' fill='currentColor' stroke='none'/>
<use xlink:href='#gpPt3' id='gpPt11' stroke='currentColor' transform='rotate(45)'/>
<use xlink:href='#gpPt11' id='gpPt12' fill='currentColor' stroke='none'/>
<path id='gpPt13' stroke-width='0.222' stroke='currentColor' d='M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z'/>
<use xlink:href='#gpPt13' id='gpPt14' fill='currentColor' stroke='none'/>
<filter id='textbox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
<feFlood flood-color='white' flood-opacity='1' result='bgnd'/>
<feComposite in='SourceGraphic' in2='bgnd' operator='atop'/>
</filter>
<filter id='greybox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
<feFlood flood-color='lightgrey' flood-opacity='1' result='grey'/>
<feComposite in='SourceGraphic' in2='grey' operator='atop'/>
</filter>
</defs>
<g fill="none" color="white" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M46.14,816.61 L55.14,816.61 M874.82,816.61 L865.82,816.61 '/> <g transform="translate(37.75,820.51)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 0</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M46.14,716.78 L55.14,716.78 M874.82,716.78 L865.82,716.78 '/> <g transform="translate(37.75,720.68)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 5</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M46.14,616.96 L55.14,616.96 M874.82,616.96 L865.82,616.96 '/> <g transform="translate(37.75,620.86)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 10</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M46.14,517.13 L55.14,517.13 M874.82,517.13 L865.82,517.13 '/> <g transform="translate(37.75,521.03)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 15</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M46.14,417.31 L55.14,417.31 M874.82,417.31 L865.82,417.31 '/> <g transform="translate(37.75,421.21)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 20</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M46.14,317.48 L55.14,317.48 M874.82,317.48 L865.82,317.48 '/> <g transform="translate(37.75,321.38)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 25</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M46.14,217.66 L55.14,217.66 M874.82,217.66 L865.82,217.66 '/> <g transform="translate(37.75,221.56)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 30</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M46.14,117.83 L55.14,117.83 M874.82,117.83 L865.82,117.83 '/> <g transform="translate(37.75,121.73)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 35</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M46.14,18.01 L55.14,18.01 M874.82,18.01 L865.82,18.01 '/> <g transform="translate(37.75,21.91)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 40</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M46.14,816.61 L46.14,18.01 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M46.14,816.61 L46.14,807.61 M46.14,18.01 L46.14,27.01 '/> <g transform="translate(49.51,826.95) rotate(-60)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" >Fri 09/30</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M58.33,816.61 L58.33,812.11 M58.33,18.01 L58.33,22.51 M70.51,816.61 L70.51,812.11 M70.51,18.01 L70.51,22.51
M82.70,816.61 L82.70,812.11 M82.70,18.01 L82.70,22.51 '/></g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M94.89,816.61 L94.89,18.01 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M94.89,816.61 L94.89,807.61 M94.89,18.01 L94.89,27.01 '/> <g transform="translate(98.26,826.95) rotate(-60)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" >Sat 10/01</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M107.07,816.61 L107.07,812.11 M107.07,18.01 L107.07,22.51 M119.26,816.61 L119.26,812.11 M119.26,18.01 L119.26,22.51
M131.45,816.61 L131.45,812.11 M131.45,18.01 L131.45,22.51 '/></g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M143.63,816.61 L143.63,18.01 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M143.63,816.61 L143.63,807.61 M143.63,18.01 L143.63,27.01 '/> <g transform="translate(147.00,826.95) rotate(-60)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" >Sun 10/02</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M155.82,816.61 L155.82,812.11 M155.82,18.01 L155.82,22.51 M168.00,816.61 L168.00,812.11 M168.00,18.01 L168.00,22.51
M180.19,816.61 L180.19,812.11 M180.19,18.01 L180.19,22.51 '/></g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M192.38,816.61 L192.38,18.01 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M192.38,816.61 L192.38,807.61 M192.38,18.01 L192.38,27.01 '/> <g transform="translate(195.75,826.95) rotate(-60)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" >Mon 10/03</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M204.56,816.61 L204.56,812.11 M204.56,18.01 L204.56,22.51 M216.75,816.61 L216.75,812.11 M216.75,18.01 L216.75,22.51
M228.94,816.61 L228.94,812.11 M228.94,18.01 L228.94,22.51 '/></g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M241.12,816.61 L241.12,18.01 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M241.12,816.61 L241.12,807.61 M241.12,18.01 L241.12,27.01 '/> <g transform="translate(244.49,826.95) rotate(-60)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" >Tue 10/04</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M253.31,816.61 L253.31,812.11 M253.31,18.01 L253.31,22.51 M265.50,816.61 L265.50,812.11 M265.50,18.01 L265.50,22.51
M277.68,816.61 L277.68,812.11 M277.68,18.01 L277.68,22.51 '/></g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M289.87,816.61 L289.87,18.01 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M289.87,816.61 L289.87,807.61 M289.87,18.01 L289.87,27.01 '/> <g transform="translate(293.24,826.95) rotate(-60)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" >Wed 10/05</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M302.06,816.61 L302.06,812.11 M302.06,18.01 L302.06,22.51 M314.24,816.61 L314.24,812.11 M314.24,18.01 L314.24,22.51
M326.43,816.61 L326.43,812.11 M326.43,18.01 L326.43,22.51 '/></g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M338.62,816.61 L338.62,18.01 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M338.62,816.61 L338.62,807.61 M338.62,18.01 L338.62,27.01 '/> <g transform="translate(341.99,826.95) rotate(-60)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" >Thu 10/06</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M350.80,816.61 L350.80,812.11 M350.80,18.01 L350.80,22.51 M362.99,816.61 L362.99,812.11 M362.99,18.01 L362.99,22.51
M375.17,816.61 L375.17,812.11 M375.17,18.01 L375.17,22.51 '/></g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M387.36,816.61 L387.36,18.01 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M387.36,816.61 L387.36,807.61 M387.36,18.01 L387.36,27.01 '/> <g transform="translate(390.73,826.95) rotate(-60)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" >Fri 10/07</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M399.55,816.61 L399.55,812.11 M399.55,18.01 L399.55,22.51 M411.73,816.61 L411.73,812.11 M411.73,18.01 L411.73,22.51
M423.92,816.61 L423.92,812.11 M423.92,18.01 L423.92,22.51 '/></g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M436.11,816.61 L436.11,18.01 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M436.11,816.61 L436.11,807.61 M436.11,18.01 L436.11,27.01 '/> <g transform="translate(439.48,826.95) rotate(-60)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" >Sat 10/08</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M448.29,816.61 L448.29,812.11 M448.29,18.01 L448.29,22.51 M460.48,816.61 L460.48,812.11 M460.48,18.01 L460.48,22.51
M472.67,816.61 L472.67,812.11 M472.67,18.01 L472.67,22.51 '/></g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M484.85,816.61 L484.85,18.01 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M484.85,816.61 L484.85,807.61 M484.85,18.01 L484.85,27.01 '/> <g transform="translate(488.22,826.95) rotate(-60)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" >Sun 10/09</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M497.04,816.61 L497.04,812.11 M497.04,18.01 L497.04,22.51 M509.23,816.61 L509.23,812.11 M509.23,18.01 L509.23,22.51
M521.41,816.61 L521.41,812.11 M521.41,18.01 L521.41,22.51 '/></g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M533.60,816.61 L533.60,18.01 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M533.60,816.61 L533.60,807.61 M533.60,18.01 L533.60,27.01 '/> <g transform="translate(536.97,826.95) rotate(-60)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" >Mon 10/10</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M545.79,816.61 L545.79,812.11 M545.79,18.01 L545.79,22.51 M557.97,816.61 L557.97,812.11 M557.97,18.01 L557.97,22.51
M570.16,816.61 L570.16,812.11 M570.16,18.01 L570.16,22.51 '/></g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M582.34,816.61 L582.34,18.01 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M582.34,816.61 L582.34,807.61 M582.34,18.01 L582.34,27.01 '/> <g transform="translate(585.71,826.95) rotate(-60)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" >Tue 10/11</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M594.53,816.61 L594.53,812.11 M594.53,18.01 L594.53,22.51 M606.72,816.61 L606.72,812.11 M606.72,18.01 L606.72,22.51
M618.90,816.61 L618.90,812.11 M618.90,18.01 L618.90,22.51 '/></g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M631.09,816.61 L631.09,18.01 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M631.09,816.61 L631.09,807.61 M631.09,18.01 L631.09,27.01 '/> <g transform="translate(634.46,826.95) rotate(-60)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" >Wed 10/12</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M643.28,816.61 L643.28,812.11 M643.28,18.01 L643.28,22.51 M655.46,816.61 L655.46,812.11 M655.46,18.01 L655.46,22.51
M667.65,816.61 L667.65,812.11 M667.65,18.01 L667.65,22.51 '/></g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M679.84,816.61 L679.84,135.01 M679.84,27.01 L679.84,18.01 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M679.84,816.61 L679.84,807.61 M679.84,18.01 L679.84,27.01 '/> <g transform="translate(683.21,826.95) rotate(-60)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" >Thu 10/13</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M692.02,816.61 L692.02,812.11 M692.02,18.01 L692.02,22.51 M704.21,816.61 L704.21,812.11 M704.21,18.01 L704.21,22.51
M716.40,816.61 L716.40,812.11 M716.40,18.01 L716.40,22.51 '/></g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M728.58,816.61 L728.58,135.01 M728.58,27.01 L728.58,18.01 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M728.58,816.61 L728.58,807.61 M728.58,18.01 L728.58,27.01 '/> <g transform="translate(731.95,826.95) rotate(-60)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" >Fri 10/14</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M740.77,816.61 L740.77,812.11 M740.77,18.01 L740.77,22.51 M752.96,816.61 L752.96,812.11 M752.96,18.01 L752.96,22.51
M765.14,816.61 L765.14,812.11 M765.14,18.01 L765.14,22.51 '/></g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M777.33,816.61 L777.33,135.01 M777.33,27.01 L777.33,18.01 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M777.33,816.61 L777.33,807.61 M777.33,18.01 L777.33,27.01 '/> <g transform="translate(780.70,826.95) rotate(-60)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" >Sat 10/15</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M789.51,816.61 L789.51,812.11 M789.51,18.01 L789.51,22.51 M801.70,816.61 L801.70,812.11 M801.70,18.01 L801.70,22.51
M813.89,816.61 L813.89,812.11 M813.89,18.01 L813.89,22.51 '/></g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M826.07,816.61 L826.07,135.01 M826.07,27.01 L826.07,18.01 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M826.07,816.61 L826.07,807.61 M826.07,18.01 L826.07,27.01 '/> <g transform="translate(829.44,826.95) rotate(-60)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" >Sun 10/16</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M838.26,816.61 L838.26,812.11 M838.26,18.01 L838.26,22.51 M850.45,816.61 L850.45,812.11 M850.45,18.01 L850.45,22.51
M862.63,816.61 L862.63,812.11 M862.63,18.01 L862.63,22.51 '/></g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M874.82,816.61 L874.82,18.01 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M874.82,816.61 L874.82,807.61 M874.82,18.01 L874.82,27.01 '/> <g transform="translate(878.19,826.95) rotate(-60)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" >Mon 10/17</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M46.14,18.01 L46.14,816.61 L874.82,816.61 L874.82,18.01 L46.14,18.01 Z '/> <g transform="translate(477.05,422.51)" stroke="none" fill="rgb(34,139,34)" font-family="Arial" font-size="16.00" text-anchor="start">
<text><tspan font-family="Arial" >20</tspan></text>
</g>
<g transform="translate(477.05,662.09)" stroke="none" fill="rgb(192,128,255)" font-family="Arial" font-size="16.00" text-anchor="start">
<text><tspan font-family="Arial" >8</tspan></text>
</g>
<g transform="translate(477.05,721.98)" stroke="none" fill="rgb(200,200,0)" font-family="Arial" font-size="16.00" text-anchor="start">
<text><tspan font-family="Arial" >5</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb( 34, 139, 34)' stroke-dasharray='1.0,2.5,1.0,2.5' d='M857.45,421.95 L874.83,417.30 L857.45,412.65 M46.15,417.30 L874.83,417.30 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(192, 128, 255)' stroke-dasharray='1.0,2.5,1.0,2.5' d='M857.45,661.53 L874.83,656.88 L857.45,652.23 M46.15,656.88 L874.83,656.88 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(200, 200, 0)' stroke-dasharray='1.0,2.5,1.0,2.5' d='M857.45,721.42 L874.83,716.77 L857.45,712.12 M46.15,716.77 L874.83,716.77 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(153, 153, 153)' d='M656.07,135.01 L656.07,27.01 L866.43,27.01 L866.43,135.01 L656.07,135.01 Z '/></g>
<g id="gnuplot_plot_1" ><title>exercise (minutes)</title>
<g fill="none" color="white" stroke="rgb(153, 153, 153)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(807.09,39.91)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" >exercise (minutes)</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt8' transform='translate(46.14,417.31) scale(4.50)' color='rgb( 34, 139, 34)'/>
<use xlink:href='#gpPt8' transform='translate(94.89,616.96) scale(4.50)' color='rgb( 34, 139, 34)'/>
<use xlink:href='#gpPt8' transform='translate(143.63,517.13) scale(4.50)' color='rgb( 34, 139, 34)'/>
<use xlink:href='#gpPt8' transform='translate(289.87,517.13) scale(4.50)' color='rgb( 34, 139, 34)'/>
<use xlink:href='#gpPt8' transform='translate(338.62,317.48) scale(4.50)' color='rgb( 34, 139, 34)'/>
<use xlink:href='#gpPt8' transform='translate(387.36,317.48) scale(4.50)' color='rgb( 34, 139, 34)'/>
<use xlink:href='#gpPt8' transform='translate(436.11,417.31) scale(4.50)' color='rgb( 34, 139, 34)'/>
<use xlink:href='#gpPt8' transform='translate(836.76,36.01) scale(4.50)' color='rgb( 34, 139, 34)'/>
</g>
</g>
<g id="gnuplot_plot_2" ><title>sleep (hours)</title>
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(807.09,57.91)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" >sleep (hours)</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(192, 128, 255)' d='M815.48,54.01 L858.04,54.01 M46.14,696.82 L94.89,666.87 L143.63,656.89 L192.38,696.82 L241.12,646.91 L289.87,656.89
L338.62,646.91 L387.36,696.82 L436.11,636.92 L484.85,696.82 L533.60,696.82 L582.34,686.84 L631.09,756.71 L679.84,726.77
L728.58,736.75 L777.33,716.78 L826.07,776.68 L874.82,726.77 '/></g>
</g>
<g id="gnuplot_plot_3" ><title>nicotine (doses)</title>
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(807.09,75.91)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" >nicotine (doses)</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(200, 200, 0)' d='M815.48,72.01 L858.04,72.01 M46.14,736.75 L94.89,696.82 L143.63,676.85 L192.38,716.78 L241.12,716.78 L289.87,716.78
L338.62,716.78 L387.36,716.78 L436.11,816.61 L484.85,756.71 L533.60,716.78 L582.34,736.75 L631.09,816.61 L679.84,816.61
L728.58,816.61 L777.33,816.61 L826.07,816.61 L874.82,816.61 '/></g>
</g>
<g id="gnuplot_plot_4" ><title>distress (scale)</title>
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(807.09,93.91)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" >distress (scale)</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(255, 20, 147)' d='M815.48,90.01 L858.04,90.01 M46.14,736.75 L94.89,756.71 L143.63,776.68 L192.38,776.68 L241.12,736.75 L289.87,736.75
L338.62,736.75 L387.36,756.71 L436.11,756.71 L484.85,736.75 L533.60,716.78 L582.34,736.75 L631.09,756.71 L679.84,756.71
L728.58,756.71 L777.33,756.71 L826.07,736.75 L874.82,756.71 '/></g>
</g>
<g id="gnuplot_plot_5" ><title>missed (doses)</title>
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(807.09,111.91)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" >missed (doses)</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt10' transform='translate(728.58,796.64) scale(4.50)' color='rgb(255, 0, 0)'/>
<use xlink:href='#gpPt10' transform='translate(836.76,108.01) scale(4.50)' color='rgb(255, 0, 0)'/>
</g>
</g>
<g id="gnuplot_plot_6" ><title>pain (scale)</title>
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(807.09,129.91)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" >pain (scale)</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(255, 165, 0)' d='M815.48,126.01 L858.04,126.01 M46.14,776.68 L94.89,776.68 L143.63,776.68 L192.38,776.68 L241.12,776.68 L289.87,776.68
L338.62,776.68 L387.36,776.68 L436.11,776.68 L484.85,776.68 L533.60,776.68 L582.34,776.68 L631.09,776.68 L679.84,756.71
L728.58,756.71 L777.33,776.68 L826.07,796.64 L874.82,776.68 '/></g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M46.14,18.01 L46.14,816.61 L874.82,816.61 L874.82,18.01 L46.14,18.01 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 35 KiB

View File

@ -198,6 +198,7 @@ set label \"%d\" at graph 0.52, first %d font 'Arial,16' tc rgb '%s'\n"
(:name "sleep" :goal 8 :unit :hours :color "purple" :thickness 2 :plot-type :lines) (:name "sleep" :goal 8 :unit :hours :color "purple" :thickness 2 :plot-type :lines)
(:name "nicotine" :goal 5 :unit :doses :color "dark-yellow" :thickness 2 :plot-type :lines) (:name "nicotine" :goal 5 :unit :doses :color "dark-yellow" :thickness 2 :plot-type :lines)
(:name "distress" :unit :scale :color "dark-pink" :thickness 2 :plot-type :lines) (:name "distress" :unit :scale :color "dark-pink" :thickness 2 :plot-type :lines)
(:name "missed" :unit :doses :color "red" :thickness 2 :plot-type :points :point-type 11)
(:name "pain" :unit :scale :color "orange" :thickness 2 :plot-type :lines)))) (:name "pain" :unit :scale :color "orange" :thickness 2 :plot-type :lines))))
;; (health-generate-org-template) ;; (health-generate-org-template)

View File

@ -47,35 +47,45 @@
</g> </g>
</g> </g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M46.14,683.51 L55.14,683.51 M874.82,683.51 L865.82,683.51 '/> <g transform="translate(37.75,687.41)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end"> <path stroke='black' d='M46.14,716.78 L55.14,716.78 M874.82,716.78 L865.82,716.78 '/> <g transform="translate(37.75,720.68)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 5</tspan></text> <text><tspan font-family="Arial" > 5</tspan></text>
</g> </g>
</g> </g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M46.14,550.41 L55.14,550.41 M874.82,550.41 L865.82,550.41 '/> <g transform="translate(37.75,554.31)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end"> <path stroke='black' d='M46.14,616.96 L55.14,616.96 M874.82,616.96 L865.82,616.96 '/> <g transform="translate(37.75,620.86)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 10</tspan></text> <text><tspan font-family="Arial" > 10</tspan></text>
</g> </g>
</g> </g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M46.14,417.31 L55.14,417.31 M874.82,417.31 L865.82,417.31 '/> <g transform="translate(37.75,421.21)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end"> <path stroke='black' d='M46.14,517.13 L55.14,517.13 M874.82,517.13 L865.82,517.13 '/> <g transform="translate(37.75,521.03)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 15</tspan></text> <text><tspan font-family="Arial" > 15</tspan></text>
</g> </g>
</g> </g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M46.14,284.21 L55.14,284.21 M874.82,284.21 L865.82,284.21 '/> <g transform="translate(37.75,288.11)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end"> <path stroke='black' d='M46.14,417.31 L55.14,417.31 M874.82,417.31 L865.82,417.31 '/> <g transform="translate(37.75,421.21)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 20</tspan></text> <text><tspan font-family="Arial" > 20</tspan></text>
</g> </g>
</g> </g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M46.14,151.11 L55.14,151.11 M874.82,151.11 L865.82,151.11 '/> <g transform="translate(37.75,155.01)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end"> <path stroke='black' d='M46.14,317.48 L55.14,317.48 M874.82,317.48 L865.82,317.48 '/> <g transform="translate(37.75,321.38)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 25</tspan></text> <text><tspan font-family="Arial" > 25</tspan></text>
</g> </g>
</g> </g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M46.14,18.01 L55.14,18.01 M874.82,18.01 L865.82,18.01 '/> <g transform="translate(37.75,21.91)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end"> <path stroke='black' d='M46.14,217.66 L55.14,217.66 M874.82,217.66 L865.82,217.66 '/> <g transform="translate(37.75,221.56)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 30</tspan></text> <text><tspan font-family="Arial" > 30</tspan></text>
</g> </g>
</g> </g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M46.14,117.83 L55.14,117.83 M874.82,117.83 L865.82,117.83 '/> <g transform="translate(37.75,121.73)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 35</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M46.14,18.01 L55.14,18.01 M874.82,18.01 L865.82,18.01 '/> <g transform="translate(37.75,21.91)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 40</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g> </g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> <g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
@ -263,7 +273,7 @@
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> <g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g> </g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> <g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M679.84,816.61 L679.84,117.01 M679.84,27.01 L679.84,18.01 '/></g> <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M679.84,816.61 L679.84,135.01 M679.84,27.01 L679.84,18.01 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> <g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g> </g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
@ -277,7 +287,7 @@
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> <g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g> </g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> <g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M728.58,816.61 L728.58,117.01 M728.58,27.01 L728.58,18.01 '/></g> <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M728.58,816.61 L728.58,135.01 M728.58,27.01 L728.58,18.01 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> <g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g> </g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
@ -291,7 +301,7 @@
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> <g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g> </g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> <g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M777.33,816.61 L777.33,117.01 M777.33,27.01 L777.33,18.01 '/></g> <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M777.33,816.61 L777.33,135.01 M777.33,27.01 L777.33,18.01 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> <g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g> </g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
@ -305,7 +315,7 @@
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> <g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g> </g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> <g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M826.07,816.61 L826.07,117.01 M826.07,27.01 L826.07,18.01 '/></g> <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M826.07,816.61 L826.07,135.01 M826.07,27.01 L826.07,18.01 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> <g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g> </g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
@ -330,26 +340,26 @@
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g> </g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M46.14,18.01 L46.14,816.61 L874.82,816.61 L874.82,18.01 L46.14,18.01 Z '/> <g transform="translate(477.05,289.41)" stroke="none" fill="rgb(34,139,34)" font-family="Arial" font-size="16.00" text-anchor="start"> <path stroke='black' d='M46.14,18.01 L46.14,816.61 L874.82,816.61 L874.82,18.01 L46.14,18.01 Z '/> <g transform="translate(477.05,422.51)" stroke="none" fill="rgb(34,139,34)" font-family="Arial" font-size="16.00" text-anchor="start">
<text><tspan font-family="Arial" >20</tspan></text> <text><tspan font-family="Arial" >20</tspan></text>
</g> </g>
<g transform="translate(477.05,608.85)" stroke="none" fill="rgb(192,128,255)" font-family="Arial" font-size="16.00" text-anchor="start"> <g transform="translate(477.05,662.09)" stroke="none" fill="rgb(192,128,255)" font-family="Arial" font-size="16.00" text-anchor="start">
<text><tspan font-family="Arial" >8</tspan></text> <text><tspan font-family="Arial" >8</tspan></text>
</g> </g>
<g transform="translate(477.05,688.71)" stroke="none" fill="rgb(200,200,0)" font-family="Arial" font-size="16.00" text-anchor="start"> <g transform="translate(477.05,721.98)" stroke="none" fill="rgb(200,200,0)" font-family="Arial" font-size="16.00" text-anchor="start">
<text><tspan font-family="Arial" >5</tspan></text> <text><tspan font-family="Arial" >5</tspan></text>
</g> </g>
</g> </g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb( 34, 139, 34)' stroke-dasharray='1.0,2.5,1.0,2.5' d='M857.45,288.85 L874.83,284.20 L857.45,279.55 M46.15,284.20 L874.83,284.20 '/></g> <path stroke='rgb( 34, 139, 34)' stroke-dasharray='1.0,2.5,1.0,2.5' d='M857.45,421.95 L874.83,417.30 L857.45,412.65 M46.15,417.30 L874.83,417.30 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(192, 128, 255)' stroke-dasharray='1.0,2.5,1.0,2.5' d='M857.45,608.29 L874.83,603.64 L857.45,598.99 M46.15,603.64 L874.83,603.64 '/></g> <path stroke='rgb(192, 128, 255)' stroke-dasharray='1.0,2.5,1.0,2.5' d='M857.45,661.53 L874.83,656.88 L857.45,652.23 M46.15,656.88 L874.83,656.88 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(200, 200, 0)' stroke-dasharray='1.0,2.5,1.0,2.5' d='M857.45,688.15 L874.83,683.50 L857.45,678.85 M46.15,683.50 L874.83,683.50 '/></g> <path stroke='rgb(200, 200, 0)' stroke-dasharray='1.0,2.5,1.0,2.5' d='M857.45,721.42 L874.83,716.77 L857.45,712.12 M46.15,716.77 L874.83,716.77 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g> </g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(153, 153, 153)' d='M656.07,117.01 L656.07,27.01 L866.43,27.01 L866.43,117.01 L656.07,117.01 Z '/></g> <path stroke='rgb(153, 153, 153)' d='M656.07,135.01 L656.07,27.01 L866.43,27.01 L866.43,135.01 L656.07,135.01 Z '/></g>
<g id="gnuplot_plot_1" ><title>exercise (minutes)</title> <g id="gnuplot_plot_1" ><title>exercise (minutes)</title>
<g fill="none" color="white" stroke="rgb(153, 153, 153)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter"> <g fill="none" color="white" stroke="rgb(153, 153, 153)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
</g> </g>
@ -359,13 +369,13 @@
</g> </g>
</g> </g>
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter"> <g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt8' transform='translate(46.14,284.21) scale(4.50)' color='rgb( 34, 139, 34)'/> <use xlink:href='#gpPt8' transform='translate(46.14,417.31) scale(4.50)' color='rgb( 34, 139, 34)'/>
<use xlink:href='#gpPt8' transform='translate(94.89,550.41) scale(4.50)' color='rgb( 34, 139, 34)'/> <use xlink:href='#gpPt8' transform='translate(94.89,616.96) scale(4.50)' color='rgb( 34, 139, 34)'/>
<use xlink:href='#gpPt8' transform='translate(143.63,417.31) scale(4.50)' color='rgb( 34, 139, 34)'/> <use xlink:href='#gpPt8' transform='translate(143.63,517.13) scale(4.50)' color='rgb( 34, 139, 34)'/>
<use xlink:href='#gpPt8' transform='translate(289.87,417.31) scale(4.50)' color='rgb( 34, 139, 34)'/> <use xlink:href='#gpPt8' transform='translate(289.87,517.13) scale(4.50)' color='rgb( 34, 139, 34)'/>
<use xlink:href='#gpPt8' transform='translate(338.62,151.11) scale(4.50)' color='rgb( 34, 139, 34)'/> <use xlink:href='#gpPt8' transform='translate(338.62,317.48) scale(4.50)' color='rgb( 34, 139, 34)'/>
<use xlink:href='#gpPt8' transform='translate(387.36,151.11) scale(4.50)' color='rgb( 34, 139, 34)'/> <use xlink:href='#gpPt8' transform='translate(387.36,317.48) scale(4.50)' color='rgb( 34, 139, 34)'/>
<use xlink:href='#gpPt8' transform='translate(436.11,284.21) scale(4.50)' color='rgb( 34, 139, 34)'/> <use xlink:href='#gpPt8' transform='translate(436.11,417.31) scale(4.50)' color='rgb( 34, 139, 34)'/>
<use xlink:href='#gpPt8' transform='translate(836.76,36.01) scale(4.50)' color='rgb( 34, 139, 34)'/> <use xlink:href='#gpPt8' transform='translate(836.76,36.01) scale(4.50)' color='rgb( 34, 139, 34)'/>
</g> </g>
</g> </g>
@ -376,9 +386,9 @@
</g> </g>
</g> </g>
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter"> <g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(192, 128, 255)' d='M815.48,54.01 L858.04,54.01 M46.14,656.89 L94.89,616.96 L143.63,603.65 L192.38,656.89 L241.12,590.34 L289.87,603.65 <path stroke='rgb(192, 128, 255)' d='M815.48,54.01 L858.04,54.01 M46.14,696.82 L94.89,666.87 L143.63,656.89 L192.38,696.82 L241.12,646.91 L289.87,656.89
L338.62,590.34 L387.36,656.89 L436.11,577.03 L484.85,656.89 L533.60,656.89 L582.34,643.58 L631.09,736.75 L679.84,696.82 L338.62,646.91 L387.36,696.82 L436.11,636.92 L484.85,696.82 L533.60,696.82 L582.34,686.84 L631.09,756.71 L679.84,726.77
L728.58,710.13 L777.33,683.51 L826.07,763.37 L874.82,696.82 '/></g> L728.58,736.75 L777.33,716.78 L826.07,776.68 L874.82,726.77 '/></g>
</g> </g>
<g id="gnuplot_plot_3" ><title>nicotine (doses)</title> <g id="gnuplot_plot_3" ><title>nicotine (doses)</title>
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter"> <g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
@ -387,8 +397,8 @@
</g> </g>
</g> </g>
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter"> <g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(200, 200, 0)' d='M815.48,72.01 L858.04,72.01 M46.14,710.13 L94.89,656.89 L143.63,630.27 L192.38,683.51 L241.12,683.51 L289.87,683.51 <path stroke='rgb(200, 200, 0)' d='M815.48,72.01 L858.04,72.01 M46.14,736.75 L94.89,696.82 L143.63,676.85 L192.38,716.78 L241.12,716.78 L289.87,716.78
L338.62,683.51 L387.36,683.51 L436.11,816.61 L484.85,736.75 L533.60,683.51 L582.34,710.13 L631.09,816.61 L679.84,816.61 L338.62,716.78 L387.36,716.78 L436.11,816.61 L484.85,756.71 L533.60,716.78 L582.34,736.75 L631.09,816.61 L679.84,816.61
L728.58,816.61 L777.33,816.61 L826.07,816.61 L874.82,816.61 '/></g> L728.58,816.61 L777.33,816.61 L826.07,816.61 L874.82,816.61 '/></g>
</g> </g>
<g id="gnuplot_plot_4" ><title>distress (scale)</title> <g id="gnuplot_plot_4" ><title>distress (scale)</title>
@ -398,20 +408,31 @@
</g> </g>
</g> </g>
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter"> <g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(255, 20, 147)' d='M815.48,90.01 L858.04,90.01 M46.14,710.13 L94.89,736.75 L143.63,763.37 L192.38,763.37 L241.12,710.13 L289.87,710.13 <path stroke='rgb(255, 20, 147)' d='M815.48,90.01 L858.04,90.01 M46.14,736.75 L94.89,756.71 L143.63,776.68 L192.38,776.68 L241.12,736.75 L289.87,736.75
L338.62,710.13 L387.36,736.75 L436.11,736.75 L484.85,710.13 L533.60,683.51 L582.34,710.13 L631.09,736.75 L679.84,736.75 L338.62,736.75 L387.36,756.71 L436.11,756.71 L484.85,736.75 L533.60,716.78 L582.34,736.75 L631.09,756.71 L679.84,756.71
L728.58,736.75 L777.33,736.75 L826.07,710.13 L874.82,736.75 '/></g> L728.58,756.71 L777.33,756.71 L826.07,736.75 L874.82,756.71 '/></g>
</g> </g>
<g id="gnuplot_plot_5" ><title>pain (scale)</title> <g id="gnuplot_plot_5" ><title>missed (doses)</title>
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter"> <g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(807.09,111.91)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end"> <g transform="translate(807.09,111.91)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" >missed (doses)</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt10' transform='translate(728.58,796.64) scale(4.50)' color='rgb(255, 0, 0)'/>
<use xlink:href='#gpPt10' transform='translate(836.76,108.01) scale(4.50)' color='rgb(255, 0, 0)'/>
</g>
</g>
<g id="gnuplot_plot_6" ><title>pain (scale)</title>
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(807.09,129.91)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" >pain (scale)</tspan></text> <text><tspan font-family="Arial" >pain (scale)</tspan></text>
</g> </g>
</g> </g>
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter"> <g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(255, 165, 0)' d='M815.48,108.01 L858.04,108.01 M46.14,763.37 L94.89,763.37 L143.63,763.37 L192.38,763.37 L241.12,763.37 L289.87,763.37 <path stroke='rgb(255, 165, 0)' d='M815.48,126.01 L858.04,126.01 M46.14,776.68 L94.89,776.68 L143.63,776.68 L192.38,776.68 L241.12,776.68 L289.87,776.68
L338.62,763.37 L387.36,763.37 L436.11,763.37 L484.85,763.37 L533.60,763.37 L582.34,763.37 L631.09,763.37 L679.84,736.75 L338.62,776.68 L387.36,776.68 L436.11,776.68 L484.85,776.68 L533.60,776.68 L582.34,776.68 L631.09,776.68 L679.84,756.71
L728.58,736.75 L777.33,763.37 L826.07,789.99 L874.82,763.37 '/></g> L728.58,756.71 L777.33,776.68 L826.07,796.64 L874.82,776.68 '/></g>
</g> </g>
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter"> <g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
</g> </g>

Before

Width:  |  Height:  |  Size: 33 KiB

After

Width:  |  Height:  |  Size: 35 KiB