-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1096 lines (718 loc) · 76.2 KB
/
index.html
File metadata and controls
1096 lines (718 loc) · 76.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="" xml:lang="">
<head>
<title>A.D.H.D.</title>
<meta charset="utf-8" />
<meta name="date" content="2021-12-21" />
<script src="libs/header-attrs/header-attrs.js"></script>
<link href="libs/animate.css/animate.xaringan.css" rel="stylesheet" />
<link href="libs/tachyons/tachyons.min.css" rel="stylesheet" />
<link href="libs/tile-view/tile-view.css" rel="stylesheet" />
<script src="libs/tile-view/tile-view.js"></script>
<script src="libs/js-cookie/js.cookie.js"></script>
<script src="libs/peerjs/peerjs.min.js"></script>
<script src="libs/tiny.toast/toast.min.js"></script>
<link href="libs/xaringanExtra-broadcast/broadcast.css" rel="stylesheet" />
<script src="libs/xaringanExtra-broadcast/broadcast.js"></script>
<script src="libs/fabric/fabric.min.js"></script>
<link href="libs/xaringanExtra-scribble/scribble.css" rel="stylesheet" />
<script src="libs/xaringanExtra-scribble/scribble.js"></script>
<script>document.addEventListener('DOMContentLoaded', function() { window.xeScribble = new Scribble({"pen_color":["#FF0000"],"pen_size":3,"eraser_size":30,"palette":[]}) })</script>
<link href="libs/panelset/panelset.css" rel="stylesheet" />
<script src="libs/panelset/panelset.js"></script>
<script src="libs/xaringanExtra-webcam/webcam.js"></script>
<script id="xaringanExtra-webcam-options" type="application/json">{"width":"200","height":"200","margin":"1em"}</script>
<script src="libs/freezeframe/freezeframe.min.js"></script>
<script src="libs/xaringanExtra-freezeframe/freezeframe-init.js"></script>
<script id="xaringanExtra-freezeframe-options" type="application/json">{"selector":"img[src$=\"gif\"]","trigger":"click","overlay":false,"responsive":true,"warnings":true}</script>
<script src="libs/xaringanExtra_fit-screen/fit-screen.js"></script>
<link href="libs/xaringanExtra-extra-styles/xaringanExtra-extra-styles.css" rel="stylesheet" />
<script src="libs/htmlwidgets/htmlwidgets.js"></script>
<script src="libs/jquery/jquery.min.js"></script>
<script src="libs/proj4js/proj4.js"></script>
<link href="libs/highcharts/css/motion.css" rel="stylesheet" />
<script src="libs/highcharts/highcharts.js"></script>
<script src="libs/highcharts/highcharts-3d.js"></script>
<script src="libs/highcharts/highcharts-more.js"></script>
<script src="libs/highcharts/modules/stock.js"></script>
<script src="libs/highcharts/modules/map.js"></script>
<script src="libs/highcharts/modules/data.js"></script>
<script src="libs/highcharts/modules/exporting.js"></script>
<script src="libs/highcharts/modules/offline-exporting.js"></script>
<script src="libs/highcharts/modules/drilldown.js"></script>
<script src="libs/highcharts/modules/item-series.js"></script>
<script src="libs/highcharts/modules/overlapping-datalabels.js"></script>
<script src="libs/highcharts/modules/annotations.js"></script>
<script src="libs/highcharts/modules/export-data.js"></script>
<script src="libs/highcharts/modules/funnel.js"></script>
<script src="libs/highcharts/modules/heatmap.js"></script>
<script src="libs/highcharts/modules/treemap.js"></script>
<script src="libs/highcharts/modules/sankey.js"></script>
<script src="libs/highcharts/modules/dependency-wheel.js"></script>
<script src="libs/highcharts/modules/organization.js"></script>
<script src="libs/highcharts/modules/solid-gauge.js"></script>
<script src="libs/highcharts/modules/streamgraph.js"></script>
<script src="libs/highcharts/modules/sunburst.js"></script>
<script src="libs/highcharts/modules/vector.js"></script>
<script src="libs/highcharts/modules/wordcloud.js"></script>
<script src="libs/highcharts/modules/xrange.js"></script>
<script src="libs/highcharts/modules/tilemap.js"></script>
<script src="libs/highcharts/modules/venn.js"></script>
<script src="libs/highcharts/modules/gantt.js"></script>
<script src="libs/highcharts/modules/timeline.js"></script>
<script src="libs/highcharts/modules/parallel-coordinates.js"></script>
<script src="libs/highcharts/modules/bullet.js"></script>
<script src="libs/highcharts/modules/coloraxis.js"></script>
<script src="libs/highcharts/modules/dumbbell.js"></script>
<script src="libs/highcharts/modules/lollipop.js"></script>
<script src="libs/highcharts/modules/series-label.js"></script>
<script src="libs/highcharts/plugins/motion.js"></script>
<script src="libs/highcharts/custom/reset.js"></script>
<script src="libs/highcharts/modules/boost.js"></script>
<script src="libs/highchart-binding/highchart.js"></script>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css" integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous">
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css"/>
<link rel="stylesheet" href="assets/css/fighton-fonts.css" type="text/css" />
<link rel="stylesheet" href="assets/css/fighton-theme.css" type="text/css" />
</head>
<body>
<textarea id="source">
name: title
class: title-slide, left, middle
background-image: url(images/daftpunktocat-thomas.gif)
background-position: right
background-repeat: no-repeat
background-size: contain
background-color: var(--usc-black)
.pull-left[
# A.D.H.D.
## Neuropsychological assessment for diagnostic clarification and treatment planning
### Joey W. Trampush, Ph.D., Della Martin Assistant Professor of Psychiatry and the Behavioral Sciences
### Ashraf Elmashat, M.D., Clinical Professor of Psychiatry and the Behavioral Sciences, Associate Medical Director of Keck Outpatient Psychiatry and Behavioral Health Services
### Department of Psychiatry and the Behavioral Sciences
### 2021-12-21

]
---
name: hello
class: middle, center
background-color: var(--near-black)
## Hello.
???
Our department has grown since 2018
---
class: middle, center
background-color: var(--near-black)
.bg-near-light-green.b--dark-green.ba.bw2.br3.shadow-5.ph4.mt5[
If you cannot explain something in simple terms, you don't understand it.
.tr[
— Richard Feynman (probably)
]]
.center[]
.footnote[[source](https://twitter.com/proffeynman/status/1370595934191591430)]
???
Richard Feynman was an American theoretical physicist, known for his work in the path integral formulation of quantum mechanics, the theory of quantum electrodynamics, the physics of the superfluidity of supercooled liquid helium, as well as his work in particle physics for which he proposed the parton model.-Wikipedia
---
class: middle
What do we know about .big[ADHD]?
.footnote[
[<svg aria-hidden="true" role="img" viewBox="0 0 496 512" style="height:1em;width:0.97em;vertical-align:-0.125em;margin-left:auto;margin-right:auto;font-size:inherit;fill:currentColor;overflow:visible;position:relative;"><path d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"/></svg> @brainworkup](https://github.com/brainworkup)
[<svg aria-hidden="true" role="img" viewBox="0 0 512 512" style="height:1em;width:1em;vertical-align:-0.125em;margin-left:auto;margin-right:auto;font-size:inherit;fill:currentColor;overflow:visible;position:relative;"><path d="M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z"/></svg> @brainworkup](https://twitter.com/brainworkup)
[<svg aria-hidden="true" role="img" viewBox="0 0 512 512" style="height:1em;width:1em;vertical-align:-0.125em;margin-left:auto;margin-right:auto;font-size:inherit;fill:currentColor;overflow:visible;position:relative;"><path d="M326.612 185.391c59.747 59.809 58.927 155.698.36 214.59-.11.12-.24.25-.36.37l-67.2 67.2c-59.27 59.27-155.699 59.262-214.96 0-59.27-59.26-59.27-155.7 0-214.96l37.106-37.106c9.84-9.84 26.786-3.3 27.294 10.606.648 17.722 3.826 35.527 9.69 52.721 1.986 5.822.567 12.262-3.783 16.612l-13.087 13.087c-28.026 28.026-28.905 73.66-1.155 101.96 28.024 28.579 74.086 28.749 102.325.51l67.2-67.19c28.191-28.191 28.073-73.757 0-101.83-3.701-3.694-7.429-6.564-10.341-8.569a16.037 16.037 0 0 1-6.947-12.606c-.396-10.567 3.348-21.456 11.698-29.806l21.054-21.055c5.521-5.521 14.182-6.199 20.584-1.731a152.482 152.482 0 0 1 20.522 17.197zM467.547 44.449c-59.261-59.262-155.69-59.27-214.96 0l-67.2 67.2c-.12.12-.25.25-.36.37-58.566 58.892-59.387 154.781.36 214.59a152.454 152.454 0 0 0 20.521 17.196c6.402 4.468 15.064 3.789 20.584-1.731l21.054-21.055c8.35-8.35 12.094-19.239 11.698-29.806a16.037 16.037 0 0 0-6.947-12.606c-2.912-2.005-6.64-4.875-10.341-8.569-28.073-28.073-28.191-73.639 0-101.83l67.2-67.19c28.239-28.239 74.3-28.069 102.325.51 27.75 28.3 26.872 73.934-1.155 101.96l-13.087 13.087c-4.35 4.35-5.769 10.79-3.783 16.612 5.864 17.194 9.042 34.999 9.69 52.721.509 13.906 17.454 20.446 27.294 10.606l37.106-37.106c59.271-59.259 59.271-155.699.001-214.959z"/></svg> brainworkup.io](https://brainworkup.io)
]
.pull-right[]
???
## 80HD
- PATS preschool study
---
class: center, middle
### First pub (2003)
.pull-left[

]
.pull-right[

]
---
class: center, middle
### Cognitive Development in Preschoolers At-Risk for ADHD
.pull-left[

]
.pull-right[

]
???
#### Notes
- note
- note
---
class: center, middle, section
## Full Circle ...

[ADHD AHRQ Update 2022](https://effectivehealthcare.ahrq.gov/products/adhd-update/systematic-review-2018)
---
class: center, middle, section
.frame[
### Developmental Trajectory of ADHD
]
--
This is the model of ADHD from which I work ...

???
#### Notes
- note
- note
---
class: section middle center
## Clinical ADHD .red[vs.] Cognitive ADHD
.pull-left[
### inattention
### hyperactivity
### impulsivity
]
.pull-right[
### attentional fluency
### stimulus-boundedness
### emotion regulation
]
---
class: center, middle, f2
`Executive Dysfunction in ADHD`
Three core areas ...
---
class: center middle
.big[1.]
## attentional fluency
---
class: middle, center
### **Attentional Fluency** = Working Memory + Processing Speed
How .fat-font[much] and how .fat-font[fast] ...
.left.pull-left[
#### Working Memory
- Verbal WM
- Maintaining verbal information in conscious awareness
- Fluently retrieving information from LTM
- Nonverbal WM
- "Mind's eye"
- "Episodic future thinking"
]
.left.pull-right[
#### Processing Speed/Variability
- Regulating alertness
- Sustaining effort during repetitive, boring tasks
- Adjusting processing speed
- Completing tasks
- Maintaining performance consistency
]
???
- EFT: this is why planning is impaired
---
name: devsci
class: center, middle
#### Working Memory
#### Dopamine Genes
#### Remission of ADHD
.pull-left[]
.pull-right[]
---
class: center, middle
### GWAS of Working Memory Grant
Currently funded by NIMH to conduct large-scale genome-wide association study (GWAS) of working memory in >25,000 people & >70,000 WM phenotypes & >293,000,000 genetic variants
.pull-left[

]
.pull-right[

]
???
- interested in students to work on project
---
name: rtsd
class: bottom, left
.left-column[
### RTSD as a biomarker of lifelong ADHD
- Reaction time variability
- Response (in)consistency
- Attentional drift
- slow RTs
- Impulsive responding
- fast RTs
]
.right-column[

]
---
class: center, middle
background-color: var(--near-black)
.big[2.]
## stimulus-boundedness
---
**Stimulus-boundedness in ADHD**:
--
>...is an inappropriate response to a salient or nonsalient environmental or internal stimulus during cognitive/neuropsychological testing. Environmentally dependent behaviors occur often and cannot be easily redirected and/or environmental dependency makes task completion very difficult, e.g.:
--
>- environmental dependency (e.g., picking up a pen from the table and writing/fidgeting)
--
>- excessive attention to irrelevant objects (e.g., picking up objects from floor)
--
>- closing in on a stimulus or being distracted by adjacent stimuli
--
>- overtalkativeness, expressing everything that comes to mind
.footnote.small.red[NIH EXAMINER Behavior Rating Scale]
???
- stems from frontal lobe damaged pts
---
class: center, middle
background-color: var(--near-black)
.big[3.]
## emotional & affective
## regulation
---
name: bell
class: left, middle, fullscale
background-image: url(https://gifs.joelglovier.com/crying/laughing-crying.gif)
background-position: 50% 50%
background-size: 100%
## Emotional Control
.pull-left[
> **Emotion** 🔥
>
> **(Dys)Regulation**
>
> in **ADHD**
>
>
> Not part of DSM/ICD diagnostic criteria
>
> .big[BUT] ...
]
???
This is recognized on most rating scales e.g., brown
---
**Managing Frustration and Modulating Emotions in ADHD** (Brown Executive Function/Attention Scales)
--
>Individuals w/ ADHD often have difficulty with regulating emotional reactions .yellow[**to the extent that they take over much of what the individuals are thinking or doing**].
--
>Although the DSM-5 does not recognize any symptoms related to emotion management as an aspect of ADHD, many with the disorder describe chronic difficulties managing:
--
>- frustration, anger, worry, disappointment, desire, and other emotions
--
>- excessive irritability, sensitivity to criticism, overwhelming nervousness and worry, and unhappiness
--
>- They find it very difficult to put their emotions into perspective and get on with what they need to do.
---
class: center, middle
## Case Presentation

---
class: middle, center
# "Scout"
### Identifying Information
<style>
#id {
font-family: 'Alegreya', 'Spectral', 'STKaiti', serif;
}
</style>
<style>
.emphasized {
table-layout: auto;
width: 100%;
color: black;
font-size: 1.5em;
font-family: 'Roboto Condensed', 'Metrophobic', 'Aldrich';
break-inside: avoid;
}
</style>
| | |
|--------------------------|--------------------------------------------------------------------|
| **Age:** | 10-years, 1-month |
| **Sex:** | Female |
| **Ethnicity:** | White/Caucasian |
| **Handedness:** | Right |
| **Education:** | 4th Grade |
???
- 874. Scout
- 875. SL
---
class: middle, left
### Reason for Referral
* Scout presented for neuropsychological evaluation to determine her cognitive, academic, and emotional strengths and weaknesses.
* Referred by her parents for behavioral and academic concerns, including:
- behavioral immaturity
- defiance
- attention/executive problems
- reading/learning difficulties
* Purpose of eval was (shockingly) to clarify diagnoses and assist with educational and treatment planning
---
class: middle
### Background
- Scout requires frequent redirection and strong reinforcements and consequences in order to manage her behavior.
- She defies parent requests, engages her parents and sister in frequent arguments and periodic acts of aggression, and commits serious rule violations (e.g., lying, stealing).
- Parents struggle with discipline and feel frustrated.
- Behaviorally, she acts "immature" and will throw unprovoked tantrums.
---
class: middle
#### ...continued
- Parents describe Scout as having a "lack of executive functioning skills," including an unawareness for how loud she is talking, "squeals" to annoy people, has poor body and voice control, and is defiant.
- She is forgetful; e.g., forgetting a set of instructions "two-seconds later" such as her nightly bedtime routine.
- Scout has only recently started to .fat-font[look both ways before crossing the street] consistently
---
class: middle
#### ...continued
- Scout has a tendency to impulsively say things to others that are not true.
- For example, for unbeknownst reasons, she told folks that her .fat-font[dog had died], which was untrue.
- She has been accused of stealing on multiple occasions, behavior her mother said started to emerge around age 6.
- She has allegedly .fat-font[stolen money] multiple times, stolen her mothers shampoo, her grandmother's lipstick, and her sister's belongings.
- She has been accused of stealing money from a friends house ($50), an accusation Mrs. Scout feels is very much unfounded.
---
class: middle
#### ...continued
- In a separate incident, last year, she told her school psychologist/therapist her older sister "parents me" and that her parents "spank" her when she gets in trouble.
- She returned to class and repeated it to her teacher.
- A report was filed with child protective services (CPS) and the investigation was tabled.
- Her mother sometimes wonders if Scout has a "conscious" about the things she does and way she behaves at times.
---
class: middle
## Relevant History
### Developmental/Medical
- Product of a planned, 42-week pregnancy (11 days late) delivered via .fat-font[planned home birth].
- Preg notable for Rh incompatibility
- She was delivered after 4.5 hours of labor weighing 7 lb., 2 oz.
- Mom described it as "a short but intense natural delivery" that required the umbilical cord to stay connected until it was done pumping blood from mom to baby.
---
class: middle
#### ...continued
- S/p delivery complications included mild jaundice without phototherapy.
- Major developmental milestones (e.g., standing, walking, uttering first words, speaking in short sentences) were reached within expected time frames.
- Tantrums, loud screaming, and irritability emerged within the first four years as a toddler.
- Mom concerned with Scout's eating habits, as she can be a picky eater and is underweight.
---
class: middle
#### ...continued
- Mom has had concerns with Scout's poor posture/musculoskeletal stability and is accident prone ("she's falling and tripping all the time").
- Bites her finger nails throughout the day
- Gets chronic blood noses
- Scout is far sighted and has prescription eye glasses for reading, but does not like to wear them and .fat-font[refuses] to do so at times.
- Paternal family psych history of .fat-font[ADHD] and .fat-font[dyslexia]
---
class: middle
### Academics
- Fourth grade in a public elementary school
- School is excruciatingly challenging for Scout much of the time.
- She gets "lost" doing her schoolwork and constantly feels overwhelmed.
- She sometimes refuses to turn in her assignments and/or tests because she either didn't start them, didn't finish them, or didn't understand what was expected of her.
- She daydreams a lot in school and is always worrying about what everyone thinks.
- IEP for reading and attention problems since end of 2nd grade
---
class: middle
#### ...continued
- She has to "log out" of class for tutoring each day on Zoom.
- She "hates" being singled out everyday to leave class for an hour to work with her reading tutor.
- She is supposed to keep a reading log of her IEP work but won't do it.
- Even at home, Scout gets frustrated when doing her homework, yet will not let her mother help her.
---
class: middle
#### ...continued
- The cumulative impact of her school difficulties has crushed Scout's self-esteem and feelings of competency.
---
class: middle
### Behavioral/Emotional/Social
- At one point in second grade (~2019), Scout .fat-font[threatened to kill herself] in what seemed to be related to her feelings of school inadequacy.
- She began seeing the school counselor for therapy
- Scout recalls seeing her therapist at school and found it to be helpful.
- She has not seen any other outside counselor or psychologist.
- Scout relates well to her peers and is quite social.
---
class: middle
#### ...continued
Per mom:
>"She has tendency to lie, to make up little fibs to look smarter, more cool, or get attention. Then her friends find out its not true and they get upset with her.
>Or, Scout interrupts them when they are talking, she wants to change the rules to the game.
>She loves talking to and hanging out with adults, but loves playing with younger kids because she is in control. They look up to her and Scout can be the 'mommy.' She usually wants to be the leader of her peer group."
>"Scout has a huge heart! She cares strongly for the family dog-he is the only one that can help her calm down. They sleep together every night.
>She has a strong energy. People love talking with her, think she's funny and engaging. Scout loves giving compliments (whether they are genuine or she knows that it will make them like her more) again though... a strength. She has a lot of empathy for her peers/friends when they get hurt or are left out. She has been praised from teachers for her sweet nature."
---
class: middle
### Family
- Lives with her biological parents and older sister (14 yo)
- Mom graduated from high school and is employed in the entertainment industry
- Dad has an MFA and is employed in the film industry
- Her parents work opportunities were reduced during the early part of the COVID-19 pandemic and struggled financially for a while, but are now back on track and working steadily.
- Scout and her sister get along okay most of the time, but not always.
>"They love each other but have a very competitive relationship. When they get along... it's beautiful ... when they fight... it's all tears."
---
class: middle
#### ...continued
Mom made this comment about some of Scout's behavior at home:
> "Scout does odd things sometimes... like she doesn't think. For instance, pulled on her curtains and make the support come off the wall (9 years old); use a marker and write all over her dresser (9 years old); come in my room and take clothing or jewelry without asking then lie that she took it; .fat-font[not flush her toilet for days]; has to be reminded to brush her teeth; puts chewed gum on her bookshelf; the list goes on. And Dad and I get upset with her so much we can see .fat-font[it's wearing on her spirit]."
---
class: middle
## Behavioral Observations
### Testing
- Scout was seen in-person @ PBHS @ UPC, evaluated across two 4-hour testing sessions scheduled a week apart
- Brought several stuffed dolls (Yoda) and various other items (her "blanky") with her from home.
- Physically, Scout is exceptionally tall (>90th percentile in height), thin, pretty
- Interpersonally, she is friendly and engaging, and it was easy to establish rapport
---
class: middle
#### ...continued
- Spontaneous language is easy to elicit from her, as she is talkative and social, and hyper-expressive.
- Receptive language comprehension is variable.
- She unknowingly .fat-font[confabulates a lot] (i.e., makes up words and phrases that are unique to her mental lexicon such as "fratten" and "confrunkled" and "quimping").
- She uses "filler words" a lot such as "umm yeah," as if she goes blank for a second when trying to think of what to say and loses her train of thought briefly.
- Fine-motor dexterity is an area of weakness, as is .fat-font[motor persistence]; she stood up constantly during testing because it was hard for her to sit still seated for extended periods of time.
---
class: middle
### Child Interview
- Scout expressed wide ranging but predominantly negative feelings about everything we discussed over two days of testing.
- Very open and honest about her school difficulties.
- "hates" having to leave Zoom everyday for an hour to work with her reading tutor.
It makes her feel bad about herself and she wants no part of her IEP.
- Said her peers "make fun of me for my IEP." She said her teacher "hates me" and "won't call on me" on Zoom.
- "panics" before all of her tests because she is usually unprepared/didn't study.
---
class: middle
### Child Interview cont...
- Openly said she can be a .fat-font["very naughty child"] and is "only good about 1 day a week."
- Gets "excluded" by her friends sometimes, and said, "sometimes I feel like I"m not good enough."
- Has a "boyfriend" named Hank who is "cute, funny and puts a smile on my face."
- Loves her dog "Franky" who is "the only one who is nice to me."
---
name: gauss1
class: middle center
background-size: contain
### Distribution of Scores: _Population-level Interpretation_
<div class="figure">
<img src="images/plot_narrow.png" alt="Statistical classification of neuropsychological test scores in the general population." width="50%" />
<p class="caption">Statistical classification of neuropsychological test scores in the general population.</p>
</div>
---
class: animated slideInRight fadeOutLeft
background-color: var(--near-black)
### Cognitive Data
<div class="figure">
<div id="htmlwidget-3d8bc609114742cfb676" style="width:100%;height:432px;" class="highchart html-widget"></div>
<script type="application/json" data-for="htmlwidget-3d8bc609114742cfb676">{"x":{"hc_opts":{"chart":{"reflow":true,"style":{"fontFamily":"Cabin"},"backgroundColor":["gray"]},"title":{"text":"Scout","style":{"fontSize":"15px"}},"yAxis":{"title":{"text":"Z-Score (M = 0, SD = 1)"},"labels":{"format":"{value}"}},"credits":{"enabled":false},"exporting":{"enabled":false},"boost":{"enabled":false},"plotOptions":{"series":{"label":{"enabled":false},"turboThreshold":0,"colorByPoint":true,"allowPointSelect":true,"dataLabels":true},"treemap":{"layoutAlgorithm":"squarified"}},"series":[{"group":"group","data":[{"name":"Intelligence/General Ability","y":0.36,"y2":62,"range":"Average","drilldown":"intelligence/general ability"},{"name":"Visual Perception/Construction","y":0.27,"y2":59,"range":"Average","drilldown":"visual perception/construction"},{"name":"Memory","y":-0.08,"y2":49,"range":"Average","drilldown":"memory"},{"name":"Motor","y":-0.23,"y2":50,"range":"Average","drilldown":"motor"},{"name":"Verbal/Language","y":-0.27,"y2":42,"range":"Average","drilldown":"verbal/language"},{"name":"Academic Skills","y":-0.85,"y2":22,"range":"Low-Average","drilldown":"academic skills"},{"name":"Attention/Executive","y":-1.1,"y2":27,"range":"Average","drilldown":"attention/executive"}],"type":"bar","name":"Neuropsychological Test Scores"}],"xAxis":{"type":"category","title":{"text":"Domain"},"categories":null},"tooltip":{"pointFormat":"<table>\n <tr>\n <th>Name<\/th>\n <td>{point.name}<\/td>\n <\/tr>\n <tr>\n <th>Score<\/th>\n <td>{point.y}<\/td>\n <\/tr>\n <tr>\n <th>Percentile<\/th>\n <td>{point.y2}<\/td>\n <\/tr>\n <tr>\n <th>Range<\/th>\n <td>{point.range}<\/td>\n <\/tr>\n<\/table>","useHTML":true,"valueDecimals":1},"drilldown":{"allowPointDrilldown":true,"series":[{"id":"attention/executive","type":"column","data":[{"name":"Graphomotor Speed","y":0.33,"y2":56,"range":"Average","drilldown":"attention/executive_graphomotor speed"},{"name":"Cognitive Flexibility","y":-0.66,"y2":34,"range":"Average","drilldown":"attention/executive_cognitive flexibility"},{"name":"Working Memory","y":-0.83,"y2":20,"range":"Low-Average","drilldown":"attention/executive_working memory"},{"name":"Cognitive Control","y":-1.65,"y2":21,"range":"Low-Average","drilldown":"attention/executive_cognitive control"},{"name":"Processing Speed","y":-1.71,"y2":19,"range":"Low-Average","drilldown":"attention/executive_processing speed"},{"name":"Response Monitoring","y":-3.09,"y2":0,"range":"Exceptionally Low","drilldown":"attention/executive_response monitoring"}]},{"id":"intelligence/general ability","type":"column","data":[{"name":"Concept Formation","y":0.87,"y2":78,"range":"High-Average","drilldown":"intelligence/general ability_concept formation"},{"name":"Crystallized Intelligence","y":0.52,"y2":70,"range":"Average","drilldown":"intelligence/general ability_crystallized intelligence"},{"name":"General Intelligence","y":0.06,"y2":52,"range":"Average","drilldown":"intelligence/general ability_general intelligence"},{"name":"Fluid Intelligence","y":-0.2,"y2":42,"range":"Average","drilldown":"intelligence/general ability_fluid intelligence"}]},{"id":"academic skills","type":"column","data":[{"name":"Writing","y":-0.25,"y2":44,"range":"Average","drilldown":"academic skills_writing"},{"name":"Academic Fluency","y":-0.92,"y2":18,"range":"Low-Average","drilldown":"academic skills_academic fluency"},{"name":"Reading","y":-0.95,"y2":18,"range":"Low-Average","drilldown":"academic skills_reading"},{"name":"Math","y":-1.14,"y2":14,"range":"Low-Average","drilldown":"academic skills_math"}]},{"id":"visual perception/construction","type":"column","data":[{"name":"Visuoconstruction","y":0.83,"y2":80,"range":"High-Average","drilldown":"visual perception/construction_visuoconstruction"},{"name":"Fluid Reasoning","y":-0.11,"y2":46,"range":"Average","drilldown":"visual perception/construction_fluid reasoning"}]},{"id":"verbal/language","type":"column","data":[{"name":"Verbal Reasoning","y":0.5,"y2":67,"range":"Average","drilldown":"verbal/language_verbal reasoning"},{"name":"Expressive Language","y":0.33,"y2":56,"range":"Average","drilldown":"verbal/language_expressive language"},{"name":"Automatic Language","y":-1.64,"y2":5,"range":"Below Average","drilldown":"verbal/language_automatic language"},{"name":"Receptive Language","y":-1.64,"y2":5,"range":"Below Average","drilldown":"verbal/language_receptive language"}]},{"id":"memory","type":"column","data":[{"name":"Verbal Memory","y":1.01,"y2":83,"range":"High-Average","drilldown":"memory_verbal memory"},{"name":"Nonverbal Memory","y":-1.16,"y2":15,"range":"Low-Average","drilldown":"memory_nonverbal memory"}]},{"id":"motor","type":"column","data":[{"name":"Finger Dexterity","y":0.84,"y2":77,"range":"High-Average","drilldown":"motor_finger dexterity"},{"name":"Bilateral Motor Imitation","y":-0.33,"y2":37,"range":"Average","drilldown":"motor_bilateral motor imitation"},{"name":"Fine Motor Dexterity","y":-2.33,"y2":1,"range":"Exceptionally Low","drilldown":"motor_fine motor dexterity"}]},{"id":"attention/executive_working memory","type":"column","data":[{"name":"Verbal Working Memory","y":-0.67,"y2":25,"range":"Average","drilldown":"attention/executive_working memory_verbal working memory"},{"name":"Nonverbal Working Memory","y":-0.99,"y2":16,"range":"Low-Average","drilldown":"attention/executive_working memory_nonverbal working memory"}]},{"id":"attention/executive_cognitive flexibility","type":"column","data":[{"name":"Set-Shifting/Switching (Nonverbal)","y":0.33,"y2":63,"range":"Average","drilldown":"attention/executive_cognitive flexibility_set-shifting/switching (nonverbal)"},{"name":"Set-Shifting/Switching","y":-1.64,"y2":5,"range":"Below Average","drilldown":"attention/executive_cognitive flexibility_set-shifting/switching"}]},{"id":"attention/executive_cognitive control","type":"column","data":[{"name":"Response Inhibition","y":-1.65,"y2":21,"range":"Low-Average","drilldown":"attention/executive_cognitive control_response inhibition"}]},{"id":"attention/executive_processing speed","type":"column","data":[{"name":"Psychomotor Speed","y":-0.33,"y2":37,"range":"Average","drilldown":"attention/executive_processing speed_psychomotor speed"},{"name":"Naming Facility","y":-3.09,"y2":0,"range":"Exceptionally Low","drilldown":"attention/executive_processing speed_naming facility"}]},{"id":"attention/executive_response monitoring","type":"column","data":[{"name":"Self-Awareness","y":-3.09,"y2":0,"range":"Exceptionally Low","drilldown":"attention/executive_response monitoring_self-awareness"}]},{"id":"attention/executive_graphomotor speed","type":"column","data":[{"name":"Graphomotor Speed","y":1.64,"y2":95,"range":"Above Average","drilldown":"attention/executive_graphomotor speed_graphomotor speed"},{"name":"Graphomotor Control","y":-0.99,"y2":16,"range":"Low-Average","drilldown":"attention/executive_graphomotor speed_graphomotor control"}]},{"id":"intelligence/general ability_concept formation","type":"column","data":[{"name":"Planning/Organization","y":1.41,"y2":92,"range":"Above Average","drilldown":"intelligence/general ability_concept formation_planning/organization"},{"name":"Abstract Reasoning","y":0.33,"y2":63,"range":"Average","drilldown":"intelligence/general ability_concept formation_abstract reasoning"}]},{"id":"intelligence/general ability_crystallized intelligence","type":"column","data":[{"name":"Crystallized Intelligence","y":0.52,"y2":70,"range":"Average","drilldown":"intelligence/general ability_crystallized intelligence_crystallized intelligence"}]},{"id":"intelligence/general ability_fluid intelligence","type":"column","data":[{"name":"Fluid Intelligence","y":-0.2,"y2":42,"range":"Average","drilldown":"intelligence/general ability_fluid intelligence_fluid intelligence"}]},{"id":"intelligence/general ability_general intelligence","type":"column","data":[{"name":"General Intelligence","y":0.06,"y2":52,"range":"Average","drilldown":"intelligence/general ability_general intelligence_general intelligence"}]},{"id":"academic skills_reading","type":"column","data":[{"name":"Reading Comprehension","y":-0.41,"y2":34,"range":"Average","drilldown":"academic skills_reading_reading comprehension"},{"name":"General Reading","y":-0.88,"y2":19,"range":"Low-Average","drilldown":"academic skills_reading_general reading"},{"name":"Reading Decoding","y":-1.15,"y2":12,"range":"Low-Average","drilldown":"academic skills_reading_reading decoding"},{"name":"Reading Fluency","y":-1.17,"y2":12,"range":"Low-Average","drilldown":"academic skills_reading_reading fluency"}]},{"id":"academic skills_academic fluency","type":"column","data":[{"name":"Rate of Test-Taking","y":-0.92,"y2":18,"range":"Low-Average","drilldown":"academic skills_academic fluency_rate of test-taking"}]},{"id":"academic skills_writing","type":"column","data":[{"name":"Writing Fluency","y":0.67,"y2":75,"range":"High-Average","drilldown":"academic skills_writing_writing fluency"},{"name":"Writing Decoding","y":-1.17,"y2":12,"range":"Low-Average","drilldown":"academic skills_writing_writing decoding"}]},{"id":"academic skills_math","type":"column","data":[{"name":"Math Decoding","y":-0.88,"y2":19,"range":"Low-Average","drilldown":"academic skills_math_math decoding"},{"name":"Math Fluency","y":-1.41,"y2":8,"range":"Below Average","drilldown":"academic skills_math_math fluency"}]},{"id":"visual perception/construction_visuoconstruction","type":"column","data":[{"name":"Visuomotor Integration","y":0.99,"y2":84,"range":"High-Average","drilldown":"visual perception/construction_visuoconstruction_visuomotor integration"},{"name":"Time Perception","y":0.67,"y2":75,"range":"High-Average","drilldown":"visual perception/construction_visuoconstruction_time perception"}]},{"id":"visual perception/construction_fluid reasoning","type":"column","data":[{"name":"Perceptual Reasoning","y":0,"y2":50,"range":"Average","drilldown":"visual perception/construction_fluid reasoning_perceptual reasoning"},{"name":"Visuomotor Integration","y":0,"y2":50,"range":"Average","drilldown":"visual perception/construction_fluid reasoning_visuomotor integration"},{"name":"Quantitative Reasoning","y":-0.33,"y2":37,"range":"Average","drilldown":"visual perception/construction_fluid reasoning_quantitative reasoning"}]},{"id":"verbal/language_receptive language","type":"column","data":[{"name":"Auditory Attention","y":-1.64,"y2":5,"range":"Below Average","drilldown":"verbal/language_receptive language_auditory attention"}]},{"id":"verbal/language_automatic language","type":"column","data":[{"name":"Rapid Automatic Naming","y":-1.64,"y2":5,"range":"Below Average","drilldown":"verbal/language_automatic language_rapid automatic naming"}]},{"id":"verbal/language_expressive language","type":"column","data":[{"name":"Semantic Word Fluency","y":1.64,"y2":95,"range":"Above Average","drilldown":"verbal/language_expressive language_semantic word fluency"},{"name":"Phonemic Word Fluency","y":-0.99,"y2":16,"range":"Low-Average","drilldown":"verbal/language_expressive language_phonemic word fluency"}]},{"id":"verbal/language_verbal reasoning","type":"column","data":[{"name":"Word Knowledge","y":0.99,"y2":84,"range":"High-Average","drilldown":"verbal/language_verbal reasoning_word knowledge"},{"name":"Word Reasoning","y":0,"y2":50,"range":"Average","drilldown":"verbal/language_verbal reasoning_word reasoning"}]},{"id":"memory_verbal memory","type":"column","data":[{"name":"Story Memory","y":1.34,"y2":91,"range":"Above Average","drilldown":"memory_verbal memory_story memory"},{"name":"Word List Memory","y":0.67,"y2":75,"range":"High-Average","drilldown":"memory_verbal memory_word list memory"}]},{"id":"memory_nonverbal memory","type":"column","data":[{"name":"Visual Memory Immediate Recall","y":-0.67,"y2":25,"range":"Average","drilldown":"memory_nonverbal memory_visual memory immediate recall"},{"name":"Visual Memory Delayed Recall","y":-1.64,"y2":5,"range":"Below Average","drilldown":"memory_nonverbal memory_visual memory delayed recall"}]},{"id":"motor_finger dexterity","type":"column","data":[{"name":"Finger Dexterity Nondominant Hand","y":1.34,"y2":91,"range":"Above Average","drilldown":"motor_finger dexterity_finger dexterity nondominant hand"},{"name":"Motor Sequencing","y":1.34,"y2":91,"range":"Above Average","drilldown":"motor_finger dexterity_motor sequencing"},{"name":"Finger Dexterity Dominant Hand","y":0.33,"y2":63,"range":"Average","drilldown":"motor_finger dexterity_finger dexterity dominant hand"},{"name":"Motor Control","y":0.33,"y2":63,"range":"Average","drilldown":"motor_finger dexterity_motor control"}]},{"id":"motor_bilateral motor imitation","type":"column","data":[{"name":"Praxis/Imitation","y":-0.33,"y2":37,"range":"Average","drilldown":"motor_bilateral motor imitation_praxis/imitation"}]},{"id":"motor_fine motor dexterity","type":"column","data":[{"name":"LH Dexterity","y":-2.33,"y2":1,"range":"Exceptionally Low","drilldown":"motor_fine motor dexterity_lh dexterity"},{"name":"RH Dexterity","y":-2.33,"y2":1,"range":"Exceptionally Low","drilldown":"motor_fine motor dexterity_rh dexterity"}]},{"id":"attention/executive_working memory_nonverbal working memory","type":"column","data":[{"name":"Dot Counting Task","y":-0.99,"y2":16,"range":"Low-Average"}]},{"id":"attention/executive_working memory_verbal working memory","type":"column","data":[{"name":"Letter-Number Sequencing","y":-0.67,"y2":25,"range":"Average"}]},{"id":"attention/executive_cognitive flexibility_set-shifting/switching (nonverbal)","type":"column","data":[{"name":"Set-Shifting Task","y":0.33,"y2":63,"range":"Average"}]},{"id":"attention/executive_cognitive flexibility_set-shifting/switching","type":"column","data":[{"name":"Switching","y":-1.64,"y2":5,"range":"Below Average"}]},{"id":"attention/executive_cognitive control_response inhibition","type":"column","data":[{"name":"Flanker Task","y":-0.2,"y2":42,"range":"Average"},{"name":"Inhibition","y":-3.09,"y2":0,"range":"Exceptionally Low"}]},{"id":"attention/executive_processing speed_naming facility","type":"column","data":[{"name":"Naming","y":-3.09,"y2":0,"range":"Exceptionally Low"}]},{"id":"attention/executive_processing speed_psychomotor speed","type":"column","data":[{"name":"Coding","y":-0.33,"y2":37,"range":"Average"}]},{"id":"attention/executive_response monitoring_self-awareness","type":"column","data":[{"name":"Inhibition Total Errors","y":-3.09,"y2":0,"range":"Exceptionally Low"}]},{"id":"attention/executive_graphomotor speed_graphomotor speed","type":"column","data":[{"name":"Visuomotor Precision Time","y":1.64,"y2":95,"range":"Above Average"}]},{"id":"attention/executive_graphomotor speed_graphomotor control","type":"column","data":[{"name":"Visuomotor Precision","y":-0.99,"y2":16,"range":"Low-Average"}]},{"id":"intelligence/general ability_concept formation_planning/organization","type":"column","data":[{"name":"Unstructured Task","y":1.41,"y2":92,"range":"Above Average"}]},{"id":"intelligence/general ability_concept formation_abstract reasoning","type":"column","data":[{"name":"Animal Sorting","y":0.33,"y2":63,"range":"Average"}]},{"id":"intelligence/general ability_crystallized intelligence_crystallized intelligence","type":"column","data":[{"name":"Verbal Comprehension (VCI)","y":0.52,"y2":70,"range":"Average"}]},{"id":"intelligence/general ability_fluid intelligence_fluid intelligence","type":"column","data":[{"name":"Fluid Reasoning (FRI)","y":-0.2,"y2":42,"range":"Average"}]},{"id":"intelligence/general ability_general intelligence_general intelligence","type":"column","data":[{"name":"General Ability (GAI)","y":0.2,"y2":58,"range":"Average"},{"name":"Full Scale IQ (FSIQ)","y":-0.08,"y2":47,"range":"Average"}]},{"id":"academic skills_reading_reading decoding","type":"column","data":[{"name":"Nonsense Word Decoding","y":-1.13,"y2":13,"range":"Low-Average"},{"name":"Word Reading","y":-1.17,"y2":12,"range":"Low-Average"}]},{"id":"academic skills_reading_reading fluency","type":"column","data":[{"name":"Decoding Fluency","y":-1.17,"y2":12,"range":"Low-Average"}]},{"id":"academic skills_reading_reading comprehension","type":"column","data":[{"name":"Sentence Comprehension","y":-0.41,"y2":34,"range":"Average"}]},{"id":"academic skills_reading_general reading","type":"column","data":[{"name":"Reading Composite","y":-0.88,"y2":19,"range":"Low-Average"}]},{"id":"academic skills_academic fluency_rate of test-taking","type":"column","data":[{"name":"Academic Fluency Composite","y":-0.92,"y2":18,"range":"Low-Average"}]},{"id":"academic skills_writing_writing fluency","type":"column","data":[{"name":"Writing Fluency","y":0.67,"y2":75,"range":"High-Average"}]},{"id":"academic skills_writing_writing decoding","type":"column","data":[{"name":"Spelling","y":-1.17,"y2":12,"range":"Low-Average"}]},{"id":"academic skills_math_math fluency","type":"column","data":[{"name":"Math Fluency","y":-1.41,"y2":8,"range":"Below Average"}]},{"id":"academic skills_math_math decoding","type":"column","data":[{"name":"Math Computation","y":-0.88,"y2":19,"range":"Low-Average"}]},{"id":"visual perception/construction_visuoconstruction_time perception","type":"column","data":[{"name":"Clocks","y":0.67,"y2":75,"range":"High-Average"}]},{"id":"visual perception/construction_visuoconstruction_visuomotor integration","type":"column","data":[{"name":"Design Copying Process","y":0.99,"y2":84,"range":"High-Average"}]},{"id":"visual perception/construction_fluid reasoning_visuomotor integration","type":"column","data":[{"name":"Block Design","y":0,"y2":50,"range":"Average"}]},{"id":"visual perception/construction_fluid reasoning_perceptual reasoning","type":"column","data":[{"name":"Matrix Reasoning","y":0,"y2":50,"range":"Average"}]},{"id":"visual perception/construction_fluid reasoning_quantitative reasoning","type":"column","data":[{"name":"Figure Weights","y":-0.33,"y2":37,"range":"Average"}]},{"id":"verbal/language_receptive language_auditory attention","type":"column","data":[{"name":"Comprehension of Instructions","y":-1.64,"y2":5,"range":"Below Average"}]},{"id":"verbal/language_automatic language_rapid automatic naming","type":"column","data":[{"name":"Speeded Naming","y":-1.64,"y2":5,"range":"Below Average"}]},{"id":"verbal/language_expressive language_semantic word fluency","type":"column","data":[{"name":"Word Generation-Semantic","y":1.64,"y2":95,"range":"Above Average"}]},{"id":"verbal/language_expressive language_phonemic word fluency","type":"column","data":[{"name":"Word Generation-Initial Letter","y":-0.99,"y2":16,"range":"Low-Average"}]},{"id":"verbal/language_verbal reasoning_word reasoning","type":"column","data":[{"name":"Similarities","y":0,"y2":50,"range":"Average"}]},{"id":"verbal/language_verbal reasoning_word knowledge","type":"column","data":[{"name":"Vocabulary","y":0.99,"y2":84,"range":"High-Average"}]},{"id":"memory_verbal memory_word list memory","type":"column","data":[{"name":"List Memory Learning and Recall","y":0.67,"y2":75,"range":"High-Average"}]},{"id":"memory_verbal memory_story memory","type":"column","data":[{"name":"Narrative Memory Free Recall","y":1.34,"y2":91,"range":"Above Average"}]},{"id":"memory_nonverbal memory_visual memory immediate recall","type":"column","data":[{"name":"Memory for Designs","y":-0.67,"y2":25,"range":"Average"}]},{"id":"memory_nonverbal memory_visual memory delayed recall","type":"column","data":[{"name":"Memory for Designs Delayed","y":-1.64,"y2":5,"range":"Below Average"}]},{"id":"motor_finger dexterity_finger dexterity dominant hand","type":"column","data":[{"name":"Fingertip Tapping-Dominant Hand","y":0.33,"y2":63,"range":"Average"}]},{"id":"motor_finger dexterity_finger dexterity nondominant hand","type":"column","data":[{"name":"Fingertip Tapping-Nondominant Hand","y":1.34,"y2":91,"range":"Above Average"}]},{"id":"motor_finger dexterity_motor control","type":"column","data":[{"name":"Fingertip Tapping-Repetitions","y":0.33,"y2":63,"range":"Average"}]},{"id":"motor_finger dexterity_motor sequencing","type":"column","data":[{"name":"Fingertip Tapping-Sequences","y":1.34,"y2":91,"range":"Above Average"}]},{"id":"motor_bilateral motor imitation_praxis/imitation","type":"column","data":[{"name":"Imitating Hand Positions","y":-0.33,"y2":37,"range":"Average"}]},{"id":"motor_fine motor dexterity_rh dexterity","type":"column","data":[{"name":"Dominant Hand","y":-2.33,"y2":1,"range":"Exceptionally Low"}]},{"id":"motor_fine motor dexterity_lh dexterity","type":"column","data":[{"name":"Nondominant Hand","y":-2.33,"y2":1,"range":"Exceptionally Low"}]}]},"colorAxis":{"minColor":"red","maxColor":"blue"}},"theme":{"colors":["#2b908f","#90ee7e","#f45b5b","#7798BF","#aaeeee","#ff0066","#eeaaee","#55BF3B"],"chart":{"backgroundColor":{"linearGradient":{"x1":0,"y1":0,"x2":1,"y2":1},"stops":[[0,"#2a2a2b"],[1,"#3e3e40"]]},"style":{"fontFamily":"Unica One, sans-serif","color":"#A2A39C"},"plotBorderColor":"#606063"},"title":{"style":{"color":"#E0E0E3","textTransform":"uppercase","fontSize":"20px"},"align":"left"},"subtitle":{"style":{"color":"#E0E0E3","textTransform":"uppercase"},"align":"left"},"legend":{"align":"right","verticalAlign":"bottom","itemStyle":{"fontWeight":"normal","color":"#E0E0E3"},"itemHoverStyle":{"color":"#FFF"},"itemHiddenStyle":{"color":"#606063"}},"xAxis":{"gridLineDashStyle":"Dot","gridLineWidth":1,"gridLineColor":"#707073","lineColor":"#707073","minorGridLineColor":"#505053","tickColor":"#707073","tickWidth":1,"labels":{"style":{"color":"#E0E0E3"}},"title":{"style":{"color":"#A0A0A3"}}},"yAxis":{"gridLineDashStyle":"Dot","gridLineColor":"#707073","lineColor":"#707073","minorGridLineColor":"#505053","tickColor":"#707073","tickWidth":1,"labels":{"style":{"color":"#E0E0E3"}},"title":{"style":{"color":"#A0A0A3"}}},"tooltip":{"backgroundColor":"rgba(0, 0, 0, 0.85)","style":{"color":"#F0F0F0"}},"plotOptions":{"series":{"dataLabels":{"color":"#B0B0B3"},"marker":{"lineColor":"#333"}},"boxplot":{"fillColor":"#505053"},"candlestick":{"lineColor":"white"},"errorbar":{"color":"white"}},"credits":{"style":{"color":"#666"}},"labels":{"style":{"color":"#707073"}},"drilldown":{"activeAxisLabelStyle":{"color":"#F0F0F3"},"activeDataLabelStyle":{"color":"#F0F0F3"}},"navigation":{"buttonOptions":{"symbolStroke":"#DDDDDD","theme":{"fill":"#505053"}}},"rangeSelector":{"buttonTheme":{"fill":"#505053","stroke":"#000000","style":{"color":"#CCC"},"states":{"hover":{"fill":"#707073","stroke":"#000000","style":{"color":"white"}},"select":{"fill":"#000003","stroke":"#000000","style":{"color":"white"}}}},"inputBoxBorderColor":"#505053","inputStyle":{"backgroundColor":"#333","color":"silver"},"labelStyle":{"color":"silver"}},"navigator":{"handles":{"backgroundColor":"#666","borderColor":"#AAA"},"outlineColor":"#CCC","maskFill":"rgba(255,255,255,0.1)","series":{"color":"#7798BF","lineColor":"#A6C7ED"},"xAxis":{"gridLineColor":"#505053"}},"scrollbar":{"barBackgroundColor":"#808083","barBorderColor":"#808083","buttonArrowColor":"#CCC","buttonBackgroundColor":"#606063","buttonBorderColor":"#606063","rifleColor":"#FFF","trackBackgroundColor":"#404043","trackBorderColor":"#404043"},"legendBackgroundColor":"rgba(0, 0, 0, 0.5)","background2":"#505053","dataLabelsColor":"#B0B0B3","textColor":"#C0C0C0","contrastTextColor":"#F0F0F3","maskColor":"rgba(255,255,255,0.3)"},"conf_opts":{"global":{"Date":null,"VMLRadialGradientURL":"http =//code.highcharts.com/list(version)/gfx/vml-radial-gradient.png","canvasToolsURL":"http =//code.highcharts.com/list(version)/modules/canvas-tools.js","getTimezoneOffset":null,"timezoneOffset":0,"useUTC":true},"lang":{"contextButtonTitle":"Chart context menu","decimalPoint":".","downloadCSV":"Download CSV","downloadJPEG":"Download JPEG image","downloadPDF":"Download PDF document","downloadPNG":"Download PNG image","downloadSVG":"Download SVG vector image","downloadXLS":"Download XLS","drillUpText":"◁ Back to {series.name}","exitFullscreen":"Exit from full screen","exportData":{"annotationHeader":"Annotations","categoryDatetimeHeader":"DateTime","categoryHeader":"Category"},"hideData":"Hide data table","invalidDate":null,"loading":"Loading...","months":["January","February","March","April","May","June","July","August","September","October","November","December"],"noData":"No data to display","numericSymbolMagnitude":1000,"numericSymbols":["k","M","G","T","P","E"],"printChart":"Print chart","resetZoom":"Reset zoom","resetZoomTitle":"Reset zoom level 1:1","shortMonths":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"shortWeekdays":["Sat","Sun","Mon","Tue","Wed","Thu","Fri"],"thousandsSep":" ","viewData":"View data table","viewFullscreen":"View in full screen","weekdays":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]}},"type":"chart","fonts":["Unica+One","Cabin"],"debug":false},"evals":[],"jsHooks":[]}</script>
<p class="caption">HighchartR Drilldown on Cognitive Scores</p>
</div>
???
- These are her cognitive scores
## MOTOR
- motor impersistence
- sequencing vs tapping
- dominant vs nondominant hand dexterity; atypical laterlization
---
class: animated slideInLeft fadeOutRight
background-color: var(--near-black)
### Behavioral Data
<div class="figure">
<div id="htmlwidget-049dcebb52a940b1114a" style="width:100%;height:432px;" class="highchart html-widget"></div>
<script type="application/json" data-for="htmlwidget-049dcebb52a940b1114a">{"x":{"hc_opts":{"chart":{"reflow":true,"style":{"fontFamily":"Cabin"},"backgroundColor":["gray"]},"title":{"text":"Scout","style":{"fontSize":"15px"}},"yAxis":{"title":{"text":"Z-Score (M = 0, SD = 1)"},"labels":{"format":"{value}"}},"credits":{"enabled":false},"exporting":{"enabled":false},"boost":{"enabled":false},"plotOptions":{"series":{"label":{"enabled":false},"turboThreshold":0,"colorByPoint":true,"allowPointSelect":true,"dataLabels":true},"treemap":{"layoutAlgorithm":"squarified"}},"series":[{"group":"group","data":[{"name":"Behavioral/Emotional/Social","y":1,"y2":74,"range":"Mildly Elevated","drilldown":"behavioral/emotional/social"}],"type":"bar","name":"Behavioral Rating Scales"}],"xAxis":{"type":"category","title":{"text":"Domain"},"categories":null},"tooltip":{"pointFormat":"<table>\n <tr>\n <th>Name<\/th>\n <td>{point.name}<\/td>\n <\/tr>\n <tr>\n <th>Score<\/th>\n <td>{point.y}<\/td>\n <\/tr>\n <tr>\n <th>Percentile<\/th>\n <td>{point.y2}<\/td>\n <\/tr>\n <tr>\n <th>Range<\/th>\n <td>{point.range}<\/td>\n <\/tr>\n<\/table>","useHTML":true,"valueDecimals":1},"drilldown":{"allowPointDrilldown":true,"series":[{"id":"behavioral/emotional/social","type":"column","data":[{"name":"Behavioral Symptoms Index (PR)","y":2,"y2":90,"range":"Significantly Elevated","drilldown":"behavioral/emotional/social_behavioral symptoms index (pr)"},{"name":"Executive Function (PR)","y":2,"y2":99,"range":"Significantly Elevated","drilldown":"behavioral/emotional/social_executive function (pr)"},{"name":"Externalizing Problems (PR)","y":2,"y2":99,"range":"Significantly Elevated","drilldown":"behavioral/emotional/social_externalizing problems (pr)"},{"name":"Inattention/Hyperactivity (SR)","y":2,"y2":98,"range":"Significantly Elevated","drilldown":"behavioral/emotional/social_inattention/hyperactivity (sr)"},{"name":"Innattention/Hyperactivity (SR)","y":2,"y2":99,"range":"Significantly Elevated","drilldown":"behavioral/emotional/social_innattention/hyperactivity (sr)"},{"name":"Internalizing Problems (SR)","y":2,"y2":98,"range":"Significantly Elevated","drilldown":"behavioral/emotional/social_internalizing problems (sr)"},{"name":"School Problems (SR)","y":2,"y2":99,"range":"Significantly Elevated","drilldown":"behavioral/emotional/social_school problems (sr)"},{"name":"Internalizing Problems (PR)","y":1,"y2":78,"range":"Mildly Elevated","drilldown":"behavioral/emotional/social_internalizing problems (pr)"},{"name":"Adaptive Skills (PR)","y":-1,"y2":16,"range":"Average","drilldown":"behavioral/emotional/social_adaptive skills (pr)"},{"name":"Emotional Symptoms Index (SR)","y":-1,"y2":27,"range":"Average","drilldown":"behavioral/emotional/social_emotional symptoms index (sr)"},{"name":"Personal Adjustment (SR)","y":-2,"y2":1,"range":"Below Average","drilldown":"behavioral/emotional/social_personal adjustment (sr)"}]},{"id":"behavioral/emotional/social_externalizing problems (pr)","type":"column","data":[{"name":"Behavioral (PR)","y":2,"y2":99,"range":"Significantly Elevated","drilldown":"behavioral/emotional/social_externalizing problems (pr)_behavioral (pr)"}]},{"id":"behavioral/emotional/social_internalizing problems (pr)","type":"column","data":[{"name":"Emotional (PR)","y":1,"y2":78,"range":"Mildly Elevated","drilldown":"behavioral/emotional/social_internalizing problems (pr)_emotional (pr)"}]},{"id":"behavioral/emotional/social_behavioral symptoms index (pr)","type":"column","data":[{"name":"Behavioral (PR)","y":2,"y2":99,"range":"Significantly Elevated","drilldown":"behavioral/emotional/social_behavioral symptoms index (pr)_behavioral (pr)"},{"name":"Social (PR)","y":1,"y2":81,"range":"Mildly Elevated","drilldown":"behavioral/emotional/social_behavioral symptoms index (pr)_social (pr)"}]},{"id":"behavioral/emotional/social_adaptive skills (pr)","type":"column","data":[{"name":"Adaptive (PR)","y":-1,"y2":16,"range":"Average","drilldown":"behavioral/emotional/social_adaptive skills (pr)_adaptive (pr)"}]},{"id":"behavioral/emotional/social_school problems (sr)","type":"column","data":[{"name":"Learning (SR)","y":2,"y2":99,"range":"Significantly Elevated","drilldown":"behavioral/emotional/social_school problems (sr)_learning (sr)"}]},{"id":"behavioral/emotional/social_internalizing problems (sr)","type":"column","data":[{"name":"Emotional (SR)","y":2,"y2":99,"range":"Significantly Elevated","drilldown":"behavioral/emotional/social_internalizing problems (sr)_emotional (sr)"},{"name":"Self (SR)","y":2,"y2":99,"range":"Significantly Elevated","drilldown":"behavioral/emotional/social_internalizing problems (sr)_self (sr)"},{"name":"Social (SR)","y":2,"y2":97,"range":"Significantly Elevated","drilldown":"behavioral/emotional/social_internalizing problems (sr)_social (sr)"}]},{"id":"behavioral/emotional/social_innattention/hyperactivity (sr)","type":"column","data":[{"name":"Behavioral (SR)","y":2,"y2":99,"range":"Significantly Elevated","drilldown":"behavioral/emotional/social_innattention/hyperactivity (sr)_behavioral (sr)"}]},{"id":"behavioral/emotional/social_emotional symptoms index (sr)","type":"column","data":[{"name":"Emotional (SR)","y":2,"y2":99,"range":"Significantly Elevated","drilldown":"behavioral/emotional/social_emotional symptoms index (sr)_emotional (sr)"},{"name":"Self (SR)","y":-1,"y2":16,"range":"Average","drilldown":"behavioral/emotional/social_emotional symptoms index (sr)_self (sr)"},{"name":"Home (SR)","y":-2,"y2":2,"range":"Below Average","drilldown":"behavioral/emotional/social_emotional symptoms index (sr)_home (sr)"},{"name":"Social (SR)","y":-2,"y2":1,"range":"Below Average","drilldown":"behavioral/emotional/social_emotional symptoms index (sr)_social (sr)"}]},{"id":"behavioral/emotional/social_personal adjustment (sr)","type":"column","data":[{"name":"Self (SR)","y":-2,"y2":1,"range":"Below Average","drilldown":"behavioral/emotional/social_personal adjustment (sr)_self (sr)"}]},{"id":"behavioral/emotional/social_inattention/hyperactivity (sr)","type":"column","data":[{"name":"Behavioral (SR)","y":2,"y2":98,"range":"Significantly Elevated","drilldown":"behavioral/emotional/social_inattention/hyperactivity (sr)_behavioral (sr)"}]},{"id":"behavioral/emotional/social_executive function (pr)","type":"column","data":[{"name":"Action","y":2,"y2":99,"range":"Significantly Elevated","drilldown":"behavioral/emotional/social_executive function (pr)_action"},{"name":"Activation","y":2,"y2":99,"range":"Significantly Elevated","drilldown":"behavioral/emotional/social_executive function (pr)_activation"},{"name":"Effort","y":2,"y2":99,"range":"Significantly Elevated","drilldown":"behavioral/emotional/social_executive function (pr)_effort"},{"name":"Emotion","y":2,"y2":98,"range":"Significantly Elevated","drilldown":"behavioral/emotional/social_executive function (pr)_emotion"},{"name":"Focus","y":2,"y2":99,"range":"Significantly Elevated","drilldown":"behavioral/emotional/social_executive function (pr)_focus"},{"name":"Memory","y":2,"y2":99,"range":"Significantly Elevated","drilldown":"behavioral/emotional/social_executive function (pr)_memory"},{"name":"Total Composite","y":2,"y2":99,"range":"Significantly Elevated","drilldown":"behavioral/emotional/social_executive function (pr)_total composite"}]},{"id":"behavioral/emotional/social_externalizing problems (pr)_behavioral (pr)","type":"column","data":[{"name":"Aggression (PR)","y":2,"y2":99,"range":"Significantly Elevated"},{"name":"Conduct Problems (PR)","y":2,"y2":99,"range":"Significantly Elevated"},{"name":"Externalizing Problems (PR)","y":2,"y2":99,"range":"Significantly Elevated"},{"name":"Hyperactivity (PR)","y":2,"y2":99,"range":"Significantly Elevated"}]},{"id":"behavioral/emotional/social_internalizing problems (pr)_emotional (pr)","type":"column","data":[{"name":"Depression (PR)","y":2,"y2":99,"range":"Significantly Elevated"},{"name":"Internalizing Problems (PR)","y":1,"y2":93,"range":"Mildly Elevated"},{"name":"Anxiety (PR)","y":0,"y2":60,"range":"Average"},{"name":"Somatization (PR)","y":0,"y2":62,"range":"Average"}]},{"id":"behavioral/emotional/social_behavioral symptoms index (pr)_behavioral (pr)","type":"column","data":[{"name":"Attention Problems (PR)","y":2,"y2":99,"range":"Significantly Elevated"},{"name":"Behavioral Symptoms Index (PR)","y":2,"y2":99,"range":"Significantly Elevated"}]},{"id":"behavioral/emotional/social_behavioral symptoms index (pr)_social (pr)","type":"column","data":[{"name":"Atypicality (PR)","y":2,"y2":98,"range":"Significantly Elevated"},{"name":"Withdrawal (PR)","y":0,"y2":64,"range":"Average"}]},{"id":"behavioral/emotional/social_adaptive skills (pr)_adaptive (pr)","type":"column","data":[{"name":"Leadership (PR)","y":-0,"y2":37,"range":"Average"},{"name":"Social Skills (PR)","y":-0,"y2":43,"range":"Average"},{"name":"Adaptive Skills (PR)","y":-1,"y2":8,"range":"Average"},{"name":"Activities of Daily Living (PR)","y":-2,"y2":1,"range":"Below Average"},{"name":"Adaptability (PR)","y":-2,"y2":3,"range":"Below Average"},{"name":"Functional Communication (PR)","y":-2,"y2":5,"range":"Below Average"}]},{"id":"behavioral/emotional/social_school problems (sr)_learning (sr)","type":"column","data":[{"name":"Attitude to School (SR)","y":2,"y2":98,"range":"Significantly Elevated"},{"name":"Attitude to Teachers (SR)","y":2,"y2":99,"range":"Significantly Elevated"},{"name":"School Problems (SR)","y":2,"y2":99,"range":"Significantly Elevated"}]},{"id":"behavioral/emotional/social_internalizing problems (sr)_emotional (sr)","type":"column","data":[{"name":"Anxiety (SR)","y":2,"y2":99,"range":"Significantly Elevated"},{"name":"Depression (SR)","y":2,"y2":99,"range":"Significantly Elevated"},{"name":"Internalizing Problems (SR)","y":2,"y2":99,"range":"Significantly Elevated"}]},{"id":"behavioral/emotional/social_internalizing problems (sr)_social (sr)","type":"column","data":[{"name":"Atypicality (SR)","y":2,"y2":97,"range":"Significantly Elevated"},{"name":"Social Stress (SR)","y":2,"y2":97,"range":"Significantly Elevated"}]},{"id":"behavioral/emotional/social_internalizing problems (sr)_self (sr)","type":"column","data":[{"name":"Locus of Control (SR)","y":2,"y2":99,"range":"Significantly Elevated"},{"name":"Sense of Inadequacy (SR)","y":2,"y2":99,"range":"Significantly Elevated"}]},{"id":"behavioral/emotional/social_innattention/hyperactivity (sr)_behavioral (sr)","type":"column","data":[{"name":"Inattention/Hyperactivity (SR)","y":2,"y2":99,"range":"Significantly Elevated"}]},{"id":"behavioral/emotional/social_emotional symptoms index (sr)_emotional (sr)","type":"column","data":[{"name":"Emotional Symptoms Index (SR)","y":2,"y2":99,"range":"Significantly Elevated"}]},{"id":"behavioral/emotional/social_emotional symptoms index (sr)_home (sr)","type":"column","data":[{"name":"Relations with Parents (SR)","y":-2,"y2":2,"range":"Below Average"}]},{"id":"behavioral/emotional/social_emotional symptoms index (sr)_social (sr)","type":"column","data":[{"name":"Interpersonal Relations (SR)","y":-2,"y2":1,"range":"Below Average"}]},{"id":"behavioral/emotional/social_emotional symptoms index (sr)_self (sr)","type":"column","data":[{"name":"Self-Reliance (SR)","y":-0,"y2":31,"range":"Average"},{"name":"Self-Esteem (SR)","y":-2,"y2":1,"range":"Below Average"}]},{"id":"behavioral/emotional/social_personal adjustment (sr)_self (sr)","type":"column","data":[{"name":"Personal Adjustment (SR)","y":-2,"y2":1,"range":"Below Average"}]},{"id":"behavioral/emotional/social_inattention/hyperactivity (sr)_behavioral (sr)","type":"column","data":[{"name":"Attention Problems (SR)","y":2,"y2":99,"range":"Significantly Elevated"},{"name":"Hyperactivity (SR)","y":2,"y2":98,"range":"Significantly Elevated"}]},{"id":"behavioral/emotional/social_executive function (pr)_activation","type":"column","data":[{"name":"Activation","y":2,"y2":99,"range":"Significantly Elevated"}]},{"id":"behavioral/emotional/social_executive function (pr)_focus","type":"column","data":[{"name":"Focus","y":2,"y2":99,"range":"Significantly Elevated"}]},{"id":"behavioral/emotional/social_executive function (pr)_effort","type":"column","data":[{"name":"Effort","y":2,"y2":99,"range":"Significantly Elevated"}]},{"id":"behavioral/emotional/social_executive function (pr)_emotion","type":"column","data":[{"name":"Emotion","y":2,"y2":98,"range":"Significantly Elevated"}]},{"id":"behavioral/emotional/social_executive function (pr)_memory","type":"column","data":[{"name":"Memory","y":2,"y2":99,"range":"Significantly Elevated"}]},{"id":"behavioral/emotional/social_executive function (pr)_action","type":"column","data":[{"name":"Action","y":2,"y2":99,"range":"Significantly Elevated"}]},{"id":"behavioral/emotional/social_executive function (pr)_total composite","type":"column","data":[{"name":"Total Composite","y":2,"y2":99,"range":"Significantly Elevated"}]}]},"colorAxis":{"minColor":"red","maxColor":"blue"}},"theme":{"colors":["#2b908f","#90ee7e","#f45b5b","#7798BF","#aaeeee","#ff0066","#eeaaee","#55BF3B"],"chart":{"backgroundColor":{"linearGradient":{"x1":0,"y1":0,"x2":1,"y2":1},"stops":[[0,"#2a2a2b"],[1,"#3e3e40"]]},"style":{"fontFamily":"Unica One, sans-serif","color":"#A2A39C"},"plotBorderColor":"#606063"},"title":{"style":{"color":"#E0E0E3","textTransform":"uppercase","fontSize":"20px"},"align":"left"},"subtitle":{"style":{"color":"#E0E0E3","textTransform":"uppercase"},"align":"left"},"legend":{"align":"right","verticalAlign":"bottom","itemStyle":{"fontWeight":"normal","color":"#E0E0E3"},"itemHoverStyle":{"color":"#FFF"},"itemHiddenStyle":{"color":"#606063"}},"xAxis":{"gridLineDashStyle":"Dot","gridLineWidth":1,"gridLineColor":"#707073","lineColor":"#707073","minorGridLineColor":"#505053","tickColor":"#707073","tickWidth":1,"labels":{"style":{"color":"#E0E0E3"}},"title":{"style":{"color":"#A0A0A3"}}},"yAxis":{"gridLineDashStyle":"Dot","gridLineColor":"#707073","lineColor":"#707073","minorGridLineColor":"#505053","tickColor":"#707073","tickWidth":1,"labels":{"style":{"color":"#E0E0E3"}},"title":{"style":{"color":"#A0A0A3"}}},"tooltip":{"backgroundColor":"rgba(0, 0, 0, 0.85)","style":{"color":"#F0F0F0"}},"plotOptions":{"series":{"dataLabels":{"color":"#B0B0B3"},"marker":{"lineColor":"#333"}},"boxplot":{"fillColor":"#505053"},"candlestick":{"lineColor":"white"},"errorbar":{"color":"white"}},"credits":{"style":{"color":"#666"}},"labels":{"style":{"color":"#707073"}},"drilldown":{"activeAxisLabelStyle":{"color":"#F0F0F3"},"activeDataLabelStyle":{"color":"#F0F0F3"}},"navigation":{"buttonOptions":{"symbolStroke":"#DDDDDD","theme":{"fill":"#505053"}}},"rangeSelector":{"buttonTheme":{"fill":"#505053","stroke":"#000000","style":{"color":"#CCC"},"states":{"hover":{"fill":"#707073","stroke":"#000000","style":{"color":"white"}},"select":{"fill":"#000003","stroke":"#000000","style":{"color":"white"}}}},"inputBoxBorderColor":"#505053","inputStyle":{"backgroundColor":"#333","color":"silver"},"labelStyle":{"color":"silver"}},"navigator":{"handles":{"backgroundColor":"#666","borderColor":"#AAA"},"outlineColor":"#CCC","maskFill":"rgba(255,255,255,0.1)","series":{"color":"#7798BF","lineColor":"#A6C7ED"},"xAxis":{"gridLineColor":"#505053"}},"scrollbar":{"barBackgroundColor":"#808083","barBorderColor":"#808083","buttonArrowColor":"#CCC","buttonBackgroundColor":"#606063","buttonBorderColor":"#606063","rifleColor":"#FFF","trackBackgroundColor":"#404043","trackBorderColor":"#404043"},"legendBackgroundColor":"rgba(0, 0, 0, 0.5)","background2":"#505053","dataLabelsColor":"#B0B0B3","textColor":"#C0C0C0","contrastTextColor":"#F0F0F3","maskColor":"rgba(255,255,255,0.3)"},"conf_opts":{"global":{"Date":null,"VMLRadialGradientURL":"http =//code.highcharts.com/list(version)/gfx/vml-radial-gradient.png","canvasToolsURL":"http =//code.highcharts.com/list(version)/modules/canvas-tools.js","getTimezoneOffset":null,"timezoneOffset":0,"useUTC":true},"lang":{"contextButtonTitle":"Chart context menu","decimalPoint":".","downloadCSV":"Download CSV","downloadJPEG":"Download JPEG image","downloadPDF":"Download PDF document","downloadPNG":"Download PNG image","downloadSVG":"Download SVG vector image","downloadXLS":"Download XLS","drillUpText":"◁ Back to {series.name}","exitFullscreen":"Exit from full screen","exportData":{"annotationHeader":"Annotations","categoryDatetimeHeader":"DateTime","categoryHeader":"Category"},"hideData":"Hide data table","invalidDate":null,"loading":"Loading...","months":["January","February","March","April","May","June","July","August","September","October","November","December"],"noData":"No data to display","numericSymbolMagnitude":1000,"numericSymbols":["k","M","G","T","P","E"],"printChart":"Print chart","resetZoom":"Reset zoom","resetZoomTitle":"Reset zoom level 1:1","shortMonths":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"shortWeekdays":["Sat","Sun","Mon","Tue","Wed","Thu","Fri"],"thousandsSep":" ","viewData":"View data table","viewFullscreen":"View in full screen","weekdays":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]}},"type":"chart","fonts":["Unica+One","Cabin"],"debug":false},"evals":[],"jsHooks":[]}</script>
<p class="caption">HighchartR Drilldown on Behavioral Ratings</p>
</div>
???
## Behavioral
- make 3 groups (parent, self, basc vs brown)
- ADLs very impaired
- collapsed across all domains is 1.2 SDs
---
### Diagnostic Impression
- F90.2 Attention-deficit/hyperactivity disorder, combined type
- F81.0 Specific reading disorder (decoding and fluency)
- F81.81 Disorder of written expression (spelling)
- F43.25 Adjustment Disorder with mixed disturbance of emotions and conduct
- Rule out Oppositional defiant disorder
- Rule out Conduct disorder
- Rule out Disruptive mood dysregulation disorder
- Rule out Developmental coordination disorder (dyspraxia)
---
class: center, middle
## Referral to Dr. Elmashat ...
---
class: center, top
background-size: contain
`Postscript`
### Follow-Up from Mom ...

???
- mom emailed about 2-3 months later
---
name: snoop
class: middle, right, lbc
background-image: url(https://gifs.joelglovier.com/favs/snoop-turning-the-wheel-big.gif)
background-color: #FFFFFF
background-size: auto
.lbc.pull-right[
"There are three ways to ultimate success:
The first way is to be kind.
The second way is to be kind.
The third way is to be kind."
]
???
- Mr Rogers
[](https://jasonstcyr.com/2019/11/27/building-trust-have-you-been-kind-today/)
</textarea>
<style data-target="print-only">@media screen {.remark-slide-container{display:block;}.remark-slide-scaler{box-shadow:none;}}</style>
<script src="libs/remark-latest.min.js"></script>
<script src="libs/macros.js"></script>
<script>var slideshow = remark.create({
"highlightStyle": "monokai",
"highlightLanguage": ["r", "css", "yaml"],
"highlightLines": true,
"countIncrementalSlides": true,
"ratio": "16:9",
"navigation": "list(click = true)",
"slideNumberFormat": "<div class=\"progress-bar-container\">\n <div class=\"progress-bar\" style=\"width: calc(%current% / %total% * 100%);\">\n </div>\n</div>\n",
"includePresenterNotes": true
});
if (window.HTMLWidgets) slideshow.on('afterShowSlide', function (slide) {
window.dispatchEvent(new Event('resize'));
});
(function(d) {
var s = d.createElement("style"), r = d.querySelector(".remark-slide-scaler");
if (!r) return;
s.type = "text/css"; s.innerHTML = "@page {size: " + r.style.width + " " + r.style.height +"; }";
d.head.appendChild(s);
})(document);
(function(d) {
var el = d.getElementsByClassName("remark-slides-area");
if (!el) return;
var slide, slides = slideshow.getSlides(), els = el[0].children;
for (var i = 1; i < slides.length; i++) {
slide = slides[i];
if (slide.properties.continued === "true" || slide.properties.count === "false") {
els[i - 1].className += ' has-continuation';
}
}
var s = d.createElement("style");
s.type = "text/css"; s.innerHTML = "@media print { .has-continuation { display: none; } }";
d.head.appendChild(s);
})(document);
// delete the temporary CSS (for displaying all slides initially) when the user
// starts to view slides
(function() {
var deleted = false;
slideshow.on('beforeShowSlide', function(slide) {
if (deleted) return;
var sheets = document.styleSheets, node;
for (var i = 0; i < sheets.length; i++) {
node = sheets[i].ownerNode;
if (node.dataset["target"] !== "print-only") continue;
node.parentNode.removeChild(node);
}
deleted = true;
});
})();
(function() {
"use strict"
// Replace <script> tags in slides area to make them executable
var scripts = document.querySelectorAll(
'.remark-slides-area .remark-slide-container script'
);
if (!scripts.length) return;
for (var i = 0; i < scripts.length; i++) {
var s = document.createElement('script');
var code = document.createTextNode(scripts[i].textContent);
s.appendChild(code);
var scriptAttrs = scripts[i].attributes;
for (var j = 0; j < scriptAttrs.length; j++) {
s.setAttribute(scriptAttrs[j].name, scriptAttrs[j].value);
}
scripts[i].parentElement.replaceChild(s, scripts[i]);
}
})();
(function() {
var links = document.getElementsByTagName('a');
for (var i = 0; i < links.length; i++) {
if (/^(https?:)?\/\//.test(links[i].getAttribute('href'))) {
links[i].target = '_blank';
}
}