-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGeomComp_Plotting.nb
More file actions
3614 lines (3522 loc) · 172 KB
/
Copy pathGeomComp_Plotting.nb
File metadata and controls
3614 lines (3522 loc) · 172 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
(* Content-type: application/vnd.wolfram.mathematica *)
(*** Wolfram Notebook File ***)
(* http://www.wolfram.com/nb *)
(* CreatedBy='Mathematica 12.1' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 158, 7]
NotebookDataLength[ 176220, 3606]
NotebookOptionsPosition[ 169938, 3498]
NotebookOutlinePosition[ 170365, 3515]
CellTagsIndexPosition[ 170322, 3512]
WindowFrame->Normal*)
(* Beginning of Notebook Content *)
Notebook[{
Cell[CellGroupData[{
Cell["Plot results of GeomComp_Compute.nb", "Chapter",
CellChangeTimes->{{3.817324209740572*^9, 3.8173242232716637`*^9}, {
3.8208870668253*^9,
3.8208870710817127`*^9}},ExpressionUUID->"7282a4e2-e405-46c9-8993-\
7cd191e25542"],
Cell[CellGroupData[{
Cell["Preliminaries", "Section",
CellChangeTimes->{{3.817324230204371*^9,
3.81732423319531*^9}},ExpressionUUID->"7f7c2a79-7cbe-4a15-8122-\
e16ce1ee1f77"],
Cell[BoxData[
RowBox[{
RowBox[{"Clear", "[", "\"\<Global`*\>\"", "]"}], " "}]], "Input",
CellChangeTimes->{{3.824594680599511*^9, 3.8245946825669518`*^9}, {
3.824687417267387*^9, 3.824687419226223*^9}},
CellLabel->
"In[898]:=",ExpressionUUID->"f361dc58-05aa-44fc-aea2-59cce461e788"],
Cell[CellGroupData[{
Cell["Specify \"GoldenRatio\" or \"Arithmetic\"", "Subsubsection",
CellChangeTimes->{{3.821271309043584*^9,
3.8212713140251207`*^9}},ExpressionUUID->"ce7805b8-b297-4c34-ba41-\
b5a805b98bea"],
Cell[BoxData[
RowBox[{
RowBox[{"AbundSeries", "=", "\"\<GoldenRatio\>\""}], ";"}]], "Input",
CellChangeTimes->{{3.8212713047303743`*^9, 3.8212713050340557`*^9}, {
3.821283759293893*^9, 3.8212837704770403`*^9}, {3.8218387011392527`*^9,
3.8218387252182426`*^9}, 3.828091238049741*^9, 3.828091300590775*^9,
3.8285408418193274`*^9, 3.828540961877577*^9, 3.8285417012413673`*^9,
3.828541737199408*^9, 3.828720934268303*^9, 3.828734150649364*^9, {
3.828962513176929*^9, 3.8289625140594187`*^9}, 3.8289625540998497`*^9, {
3.829005448267043*^9, 3.8290054569685307`*^9}, {3.82907053133185*^9,
3.8290705398910103`*^9}, {3.829080235973919*^9, 3.829080244877302*^9}, {
3.8293302587005157`*^9, 3.8293302797503147`*^9}, {3.829937340078326*^9,
3.829937346957959*^9}, {3.834173122400419*^9, 3.834173132005831*^9}, {
3.834199569392289*^9, 3.834199578533309*^9}, {3.834693672641858*^9,
3.8346936834305897`*^9}, {3.913822546147348*^9, 3.913822547915121*^9},
3.913827444197576*^9},ExpressionUUID->"20e4ffb9-574c-48f0-b77e-\
8fa56001dd85"]
}, Open ]],
Cell[CellGroupData[{
Cell["Load results and set export directory", "Subsubsection",
CellChangeTimes->{{3.821271329681814*^9, 3.82127133637904*^9}, {
3.8212740360713367`*^9,
3.8212740400949183`*^9}},ExpressionUUID->"bc8af848-b53e-4060-b020-\
85a7beeb6c15"],
Cell[CellGroupData[{
Cell[BoxData[{
RowBox[{
RowBox[{"Which", "[", "\[IndentingNewLine]",
RowBox[{
RowBox[{"AbundSeries", "\[Equal]", "\"\<GoldenRatio\>\""}], ",",
"\[IndentingNewLine]", " ",
RowBox[{"SetDirectory", "[",
RowBox[{"FileNameJoin", "[",
RowBox[{"{",
RowBox[{
RowBox[{"NotebookDirectory", "[", "]"}], ",",
"\"\<../results/GoldenRatio/\>\""}], "}"}], "]"}], "]"}], " ", ",",
"\[IndentingNewLine]",
RowBox[{"AbundSeries", "\[Equal]", "\"\<Arithmetic\>\""}], ",",
"\[IndentingNewLine]", " ",
RowBox[{"SetDirectory", "[",
RowBox[{"FileNameJoin", "[",
RowBox[{"{",
RowBox[{
RowBox[{"NotebookDirectory", "[", "]"}], ",",
"\"\<../results/Arithmetic/\>\""}], "}"}], "]"}], "]"}]}], " ",
"\[IndentingNewLine]", "]"}],
"\[IndentingNewLine]"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"files", "=",
RowBox[{"FileNames", "[", "\"\<k*.txt\>\"", "]"}]}], " ",
RowBox[{"(*", " ",
RowBox[{
"Get", " ", "list", " ", "of", " ", "all", " ", "result", " ", "files"}],
" ", "*)"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{
RowBox[{
RowBox[{"Get", "[", "#", "]"}], "&"}], "/@", "files"}], ";"}], " ",
RowBox[{"(*", " ",
RowBox[{"Load", " ", "all", " ", "their", " ", "contents", " ",
RowBox[{"(",
RowBox[{"variable", " ", "definitions"}], ")"}]}], " ", "*)"}],
"\[IndentingNewLine]"}], "\[IndentingNewLine]",
RowBox[{"Which", "[", "\[IndentingNewLine]",
RowBox[{
RowBox[{"AbundSeries", "\[Equal]", "\"\<GoldenRatio\>\""}], ",",
"\[IndentingNewLine]", " ",
RowBox[{"SetDirectory", "[",
RowBox[{"FileNameJoin", "[",
RowBox[{"{",
RowBox[{
RowBox[{"NotebookDirectory", "[", "]"}], ",",
"\"\<../figs/GoldenRatio/\>\""}], "}"}], "]"}], "]"}], " ", ",",
"\[IndentingNewLine]",
RowBox[{"AbundSeries", "\[Equal]", "\"\<Arithmetic\>\""}], ",",
"\[IndentingNewLine]", " ",
RowBox[{"SetDirectory", "[",
RowBox[{"FileNameJoin", "[",
RowBox[{"{",
RowBox[{
RowBox[{"NotebookDirectory", "[", "]"}], ",",
"\"\<../figs/Arithmetic/\>\""}], "}"}], "]"}], "]"}]}], " ", " ",
"\[IndentingNewLine]", "]"}]}], "Input",
CellChangeTimes->{{3.815845773761799*^9, 3.815845794792083*^9},
3.815845828336257*^9, {3.815845919164629*^9, 3.815845969217094*^9}, {
3.8158463140365267`*^9, 3.815846322763195*^9}, {3.815846600891632*^9,
3.815846601136841*^9}, {3.815859554452115*^9, 3.815859555346654*^9}, {
3.8158596260911903`*^9, 3.8158596315359783`*^9}, {3.8167245449586353`*^9,
3.816724545445325*^9}, {3.819159023252349*^9, 3.8191590701353292`*^9}, {
3.819159123605939*^9, 3.819159129446034*^9}, {3.8191591637014837`*^9,
3.8191591673886347`*^9}, {3.819159481394524*^9, 3.8191594995206137`*^9}, {
3.819159785910326*^9, 3.819159791557094*^9}, {3.819159878970512*^9,
3.819159892730278*^9}, {3.819160223133183*^9, 3.8191602238770533`*^9}, {
3.8191602625077143`*^9, 3.819160263474534*^9}, {3.8192429647992563`*^9,
3.819242965366139*^9}, 3.820337765434568*^9, {3.8212692607490664`*^9,
3.8212692672232*^9}, {3.8212712748754873`*^9, 3.8212713166977987`*^9}, {
3.821274016632907*^9, 3.821274020287862*^9}, {3.821274056839178*^9,
3.8212740570623093`*^9}, {3.821276946095888*^9, 3.821276946894959*^9}, {
3.821305809039938*^9, 3.821305811772867*^9}, {3.821310616110869*^9,
3.8213106162546186`*^9}, 3.821356814505258*^9, {3.821356949970146*^9,
3.8213569519297657`*^9}, {3.821358056106718*^9, 3.8213580914701443`*^9},
3.8216475030242643`*^9, {3.8217078503386374`*^9, 3.8217078689861*^9}, {
3.821707921073057*^9, 3.8217079224407797`*^9}, {3.821736472522406*^9,
3.821736472657517*^9}, {3.82173667169103*^9, 3.8217367122083693`*^9}, {
3.821736744495926*^9, 3.821736746758956*^9}, {3.8280533726365147`*^9,
3.828053379213958*^9}, {3.828053415223789*^9, 3.82805344450725*^9}, {
3.828540968077846*^9, 3.828540976475685*^9}, {3.8285410114953203`*^9,
3.82854102495527*^9}, {3.828962275835258*^9, 3.828962280849587*^9}, {
3.828962342832528*^9, 3.828962354406781*^9}, {3.8289623888784113`*^9,
3.8289623890696697`*^9}, {3.828962423189495*^9, 3.828962428675982*^9}, {
3.828962467587946*^9, 3.828962509846354*^9}, {3.8289684539649687`*^9,
3.828968454116087*^9}, {3.828968488188654*^9, 3.828968498579129*^9}, {
3.8289685836088543`*^9, 3.828968584319419*^9}, {3.8290040397382727`*^9,
3.829004039896686*^9}, {3.829005471363661*^9, 3.829005524998588*^9}, {
3.8290705450269547`*^9, 3.8290705755586033`*^9}, {3.829070620264841*^9,
3.829070624866104*^9}, {3.8290802495055943`*^9, 3.829080317211588*^9}, {
3.829330284120459*^9, 3.829330334956232*^9}, {3.829937358524796*^9,
3.829937404047503*^9}, {3.8341731449104853`*^9, 3.834173195069927*^9}, {
3.834199582647949*^9, 3.83419965064032*^9}, {3.83469369146611*^9,
3.834693751271549*^9}, {3.834777315247904*^9, 3.8347773174709167`*^9}},
CellLabel->
"In[900]:=",ExpressionUUID->"6befdeee-d891-4598-9329-a7a3d2489bf3"],
Cell[BoxData["\<\"/Users/novakm/Git/GeometricComplexity/results/Arithmetic\"\>\
"], "Output",
CellChangeTimes->{
3.821283717913576*^9, 3.821283761793239*^9, 3.821358062749962*^9,
3.821473683265218*^9, 3.821489431458932*^9, 3.8217364428092422`*^9,
3.82173667533838*^9, {3.821736718943734*^9, 3.8217367480254097`*^9},
3.821837713022696*^9, 3.821837764670711*^9, {3.821838674578001*^9,
3.821838702580845*^9}, 3.821838777596634*^9, 3.821838811284667*^9,
3.821838892168049*^9, 3.821839229490798*^9, 3.821839289903377*^9,
3.821839989855959*^9, 3.821840139350628*^9, 3.824426325246872*^9,
3.824552939975606*^9, 3.824553047058134*^9, 3.824553113476007*^9, {
3.824553918211269*^9, 3.824553941929109*^9}, 3.8245713598982143`*^9,
3.824571615148594*^9, 3.824571733459551*^9, 3.824571821294758*^9,
3.824594572671687*^9, 3.824594656903871*^9, {3.824594692966066*^9,
3.824594736933958*^9}, 3.8245951236617002`*^9, {3.824595224013135*^9,
3.8245952436828127`*^9}, 3.824595320142049*^9, 3.824595373029558*^9,
3.824596827147439*^9, 3.824599290512032*^9, 3.8245993479112787`*^9,
3.824599392494898*^9, 3.8245994578752537`*^9, 3.824600459191856*^9,
3.824600556353489*^9, 3.8246723401942863`*^9, 3.824672449129015*^9,
3.824672492906993*^9, 3.824687181053759*^9, 3.824944073355034*^9,
3.8249441430130463`*^9, 3.824944196475874*^9, 3.824946231609867*^9,
3.8249978418052597`*^9, 3.825029725198988*^9, 3.825030812695064*^9,
3.825031082573687*^9, 3.825032037560668*^9, 3.8250322838822603`*^9,
3.825032433665989*^9, 3.825158737629599*^9, 3.825166101730838*^9,
3.825426069045907*^9, 3.82542663794422*^9, 3.8254279870785513`*^9,
3.825436397726921*^9, 3.8254385292151747`*^9, 3.825441763248808*^9,
3.8254493692769213`*^9, 3.8254638846260242`*^9, 3.825523336301756*^9,
3.825523463837887*^9, 3.82552351289047*^9, 3.8255525455054483`*^9,
3.825552578658648*^9, 3.82555282138538*^9, 3.825552890925305*^9,
3.825552968608398*^9, 3.8255530018323603`*^9, {3.8255531889818583`*^9,
3.825553217282958*^9}, 3.825553265179111*^9, 3.8255535357470512`*^9,
3.8255538214862413`*^9, 3.82555388736963*^9, 3.825553953269692*^9,
3.825638719999401*^9, {3.825638878849853*^9, 3.825638907989851*^9},
3.825638964364759*^9, 3.8256392585852213`*^9, 3.825639649953084*^9,
3.825639750144898*^9, 3.825639856808455*^9, 3.825639910461055*^9,
3.825640024502027*^9, 3.825640067559943*^9, {3.8256401798490353`*^9,
3.825640254466804*^9}, 3.828053020101777*^9, 3.828053140119223*^9,
3.828053281226755*^9, 3.828053381358287*^9, 3.828053419567129*^9,
3.8280912400055847`*^9, 3.828534012437327*^9, 3.828539949615505*^9,
3.8285404943655024`*^9, 3.828540564644112*^9, 3.8285406739927692`*^9,
3.828540979819414*^9, 3.828541016050722*^9, 3.828541702426591*^9,
3.828607837717664*^9, 3.828608451065131*^9, 3.828608633022655*^9,
3.828613038842651*^9, 3.82861409090543*^9, 3.828616859686411*^9,
3.8286219892580147`*^9, 3.828623485712482*^9, 3.828625478358981*^9, {
3.828641035870944*^9, 3.8286410599056683`*^9}, 3.828647641596143*^9,
3.8286600601587954`*^9, 3.82866055836465*^9, 3.828661685203168*^9, {
3.8286617692386293`*^9, 3.828661794450316*^9}, 3.82866264308572*^9,
3.8286630417960033`*^9, 3.828663679995862*^9, 3.8286639881715*^9,
3.828664492389189*^9, 3.828664868663672*^9, 3.828665167716435*^9,
3.8286654573151217`*^9, 3.82866554451665*^9, 3.828694601409953*^9,
3.828697340810833*^9, 3.828697373096623*^9, 3.828699157368094*^9,
3.8287000695629597`*^9, 3.828700421284803*^9, 3.828711298523411*^9,
3.8287209356236477`*^9, 3.828908660398972*^9, 3.828908755441113*^9,
3.828911040701927*^9, 3.828911386756925*^9, 3.828911470373048*^9,
3.828911557388294*^9, 3.828911977696866*^9, 3.828912173274919*^9,
3.828912269849279*^9, 3.828912475299453*^9, 3.8289126339228983`*^9,
3.8289573630558434`*^9, 3.8289622857786617`*^9, 3.8289623564263487`*^9,
3.828962391680706*^9, 3.828962434410884*^9, 3.828962471659651*^9, {
3.828962502104456*^9, 3.8289625314554234`*^9}, 3.8289684573200417`*^9,
3.828968491695799*^9, 3.82896853516324*^9, 3.8289686001823606`*^9,
3.829003856614623*^9, 3.8290040433813868`*^9, 3.829004245475973*^9,
3.829005449939274*^9, 3.829005483801612*^9, 3.8290055140404663`*^9,
3.829068479441791*^9, 3.829070145358726*^9, {3.829070234311528*^9,
3.829070244766986*^9}, 3.829070291055995*^9, 3.8290704063721247`*^9,
3.829070532607337*^9, 3.829070564848271*^9, 3.829070596010833*^9,
3.82908016804676*^9, 3.829080237315843*^9, {3.829080280590684*^9,
3.8290803397708263`*^9}, 3.8290806559485083`*^9, 3.829084703370414*^9,
3.829084767784116*^9, 3.829084851508293*^9, {3.8290848833707857`*^9,
3.829084911888357*^9}, 3.8290850357742767`*^9, 3.82908512314226*^9,
3.829091000845223*^9, 3.829091394445816*^9, 3.8290921262562723`*^9,
3.829092182281989*^9, {3.829330242578782*^9, 3.829330325725052*^9},
3.829936861065497*^9, 3.829936989625111*^9, 3.829937085785881*^9,
3.829937230686879*^9, 3.829937311263938*^9, {3.82993734157338*^9,
3.829937396200919*^9}, 3.834173007240198*^9, {3.834173094341731*^9,
3.834173124145454*^9}, {3.8341731575209627`*^9, 3.834173186309477*^9},
3.8341994548244753`*^9, 3.8341995712915077`*^9, 3.834199607978443*^9,
3.8341996410317173`*^9, 3.834693633823764*^9, 3.8346936747555933`*^9, {
3.834693711132259*^9, 3.834693738941004*^9}, 3.9138221720745907`*^9,
3.91382698471629*^9},
CellLabel->
"Out[900]=",ExpressionUUID->"b1c18577-a0f0-42b7-bc70-636252b45054"],
Cell[BoxData[
RowBox[{"{",
RowBox[{"\<\"k1fixBWL1.txt\"\>", ",", "\<\"k1fixH1.txt\"\>",
",", "\<\"k1fixLR.txt\"\>", ",", "\<\"k1varBWL1.txt\"\>",
",", "\<\"k1varH1.txt\"\>", ",", "\<\"k1varLR.txt\"\>",
",", "\<\"k2fixA0.txt\"\>", ",", "\<\"k2fixA1.txt\"\>",
",", "\<\"k2fixA3.txt\"\>", ",", "\<\"k2fixAGK.txt\"\>",
",", "\<\"k2fixAG.txt\"\>", ",", "\<\"k2fixCDAO.txt\"\>",
",", "\<\"k2fixGB.txt\"\>", ",", "\<\"k2fixGIA.txt\"\>",
",", "\<\"k2fixGI.txt\"\>", ",", "\<\"k2fixH2.txt\"\>",
",", "\<\"k2fixH3.txt\"\>", ",", "\<\"k2fixHTb.txt\"\>",
",", "\<\"k2fixHT.txt\"\>", ",", "\<\"k2fixHV.txt\"\>",
",", "\<\"k2fixMM.txt\"\>", ",", "\<\"k2fixR.txt\"\>",
",", "\<\"k2fixSHb.txt\"\>", ",", "\<\"k2fixSH.txt\"\>",
",", "\<\"k2varA0.txt\"\>", ",", "\<\"k2varA1.txt\"\>",
",", "\<\"k2varA3.txt\"\>", ",", "\<\"k2varAGK.txt\"\>",
",", "\<\"k2varAG.txt\"\>", ",", "\<\"k2varCDAO.txt\"\>",
",", "\<\"k2varGB.txt\"\>", ",", "\<\"k2varGIA.txt\"\>",
",", "\<\"k2varGI.txt\"\>", ",", "\<\"k2varH2.txt\"\>",
",", "\<\"k2varH3.txt\"\>", ",", "\<\"k2varHTb.txt\"\>",
",", "\<\"k2varHT.txt\"\>", ",", "\<\"k2varHV.txt\"\>",
",", "\<\"k2varMM.txt\"\>", ",", "\<\"k2varR.txt\"\>",
",", "\<\"k2varSHb.txt\"\>", ",", "\<\"k2varSH.txt\"\>",
",", "\<\"k3fixA2.txt\"\>", ",", "\<\"k3fixAA.txt\"\>",
",", "\<\"k3fixBD.txt\"\>", ",", "\<\"k3fixBWL2.txt\"\>",
",", "\<\"k3fixCM.txt\"\>", ",", "\<\"k3fixFHM.txt\"\>",
",", "\<\"k3fixH3R.txt\"\>", ",", "\<\"k3fixHLBb.txt\"\>",
",", "\<\"k3fixHLB.txt\"\>", ",", "\<\"k3fixMHb.txt\"\>",
",", "\<\"k3fixMHc.txt\"\>", ",", "\<\"k3fixMH.txt\"\>",
",", "\<\"k3fixRGD.txt\"\>", ",", "\<\"k3fixS3b.txt\"\>",
",", "\<\"k3fixS3.txt\"\>", ",", "\<\"k3fixSBB.txt\"\>",
",", "\<\"k3fixSSS.txt\"\>", ",", "\<\"k3fixTTA.txt\"\>",
",", "\<\"k3fixT.txt\"\>", ",", "\<\"k3fixW.txt\"\>",
",", "\<\"k3varA2.txt\"\>", ",", "\<\"k3varAA.txt\"\>",
",", "\<\"k3varBD.txt\"\>", ",", "\<\"k3varBWL2.txt\"\>",
",", "\<\"k3varCM.txt\"\>", ",", "\<\"k3varFHM.txt\"\>",
",", "\<\"k3varH3R.txt\"\>", ",", "\<\"k3varHLBb.txt\"\>",
",", "\<\"k3varHLB.txt\"\>", ",", "\<\"k3varMHb.txt\"\>",
",", "\<\"k3varMHc.txt\"\>", ",", "\<\"k3varMH.txt\"\>",
",", "\<\"k3varRGD.txt\"\>", ",", "\<\"k3varS3b.txt\"\>",
",", "\<\"k3varS3.txt\"\>", ",", "\<\"k3varSBB.txt\"\>",
",", "\<\"k3varSSS.txt\"\>", ",", "\<\"k3varTTA.txt\"\>",
",", "\<\"k3varT.txt\"\>", ",", "\<\"k3varW.txt\"\>",
",", "\<\"k4fixAAOR.txt\"\>", ",", "\<\"k4fixBDOR.txt\"\>",
",", "\<\"k4fixCMOR.txt\"\>", ",", "\<\"k4fixSN1.txt\"\>",
",", "\<\"k4fixSN2.txt\"\>", ",", "\<\"k4varAAOR.txt\"\>",
",", "\<\"k4varBDOR.txt\"\>", ",", "\<\"k4varCMOR.txt\"\>",
",", "\<\"k4varSN1.txt\"\>", ",", "\<\"k4varSN2.txt\"\>"}],
"}"}]], "Output",
CellChangeTimes->{
3.821283717913576*^9, 3.821283761793239*^9, 3.821358062749962*^9,
3.821473683265218*^9, 3.821489431458932*^9, 3.8217364428092422`*^9,
3.82173667533838*^9, {3.821736718943734*^9, 3.8217367480254097`*^9},
3.821837713022696*^9, 3.821837764670711*^9, {3.821838674578001*^9,
3.821838702580845*^9}, 3.821838777596634*^9, 3.821838811284667*^9,
3.821838892168049*^9, 3.821839229490798*^9, 3.821839289903377*^9,
3.821839989855959*^9, 3.821840139350628*^9, 3.824426325246872*^9,
3.824552939975606*^9, 3.824553047058134*^9, 3.824553113476007*^9, {
3.824553918211269*^9, 3.824553941929109*^9}, 3.8245713598982143`*^9,
3.824571615148594*^9, 3.824571733459551*^9, 3.824571821294758*^9,
3.824594572671687*^9, 3.824594656903871*^9, {3.824594692966066*^9,
3.824594736933958*^9}, 3.8245951236617002`*^9, {3.824595224013135*^9,
3.8245952436828127`*^9}, 3.824595320142049*^9, 3.824595373029558*^9,
3.824596827147439*^9, 3.824599290512032*^9, 3.8245993479112787`*^9,
3.824599392494898*^9, 3.8245994578752537`*^9, 3.824600459191856*^9,
3.824600556353489*^9, 3.8246723401942863`*^9, 3.824672449129015*^9,
3.824672492906993*^9, 3.824687181053759*^9, 3.824944073355034*^9,
3.8249441430130463`*^9, 3.824944196475874*^9, 3.824946231609867*^9,
3.8249978418052597`*^9, 3.825029725198988*^9, 3.825030812695064*^9,
3.825031082573687*^9, 3.825032037560668*^9, 3.8250322838822603`*^9,
3.825032433665989*^9, 3.825158737629599*^9, 3.825166101730838*^9,
3.825426069045907*^9, 3.82542663794422*^9, 3.8254279870785513`*^9,
3.825436397726921*^9, 3.8254385292151747`*^9, 3.825441763248808*^9,
3.8254493692769213`*^9, 3.8254638846260242`*^9, 3.825523336301756*^9,
3.825523463837887*^9, 3.82552351289047*^9, 3.8255525455054483`*^9,
3.825552578658648*^9, 3.82555282138538*^9, 3.825552890925305*^9,
3.825552968608398*^9, 3.8255530018323603`*^9, {3.8255531889818583`*^9,
3.825553217282958*^9}, 3.825553265179111*^9, 3.8255535357470512`*^9,
3.8255538214862413`*^9, 3.82555388736963*^9, 3.825553953269692*^9,
3.825638719999401*^9, {3.825638878849853*^9, 3.825638907989851*^9},
3.825638964364759*^9, 3.8256392585852213`*^9, 3.825639649953084*^9,
3.825639750144898*^9, 3.825639856808455*^9, 3.825639910461055*^9,
3.825640024502027*^9, 3.825640067559943*^9, {3.8256401798490353`*^9,
3.825640254466804*^9}, 3.828053020101777*^9, 3.828053140119223*^9,
3.828053281226755*^9, 3.828053381358287*^9, 3.828053419567129*^9,
3.8280912400055847`*^9, 3.828534012437327*^9, 3.828539949615505*^9,
3.8285404943655024`*^9, 3.828540564644112*^9, 3.8285406739927692`*^9,
3.828540979819414*^9, 3.828541016050722*^9, 3.828541702426591*^9,
3.828607837717664*^9, 3.828608451065131*^9, 3.828608633022655*^9,
3.828613038842651*^9, 3.82861409090543*^9, 3.828616859686411*^9,
3.8286219892580147`*^9, 3.828623485712482*^9, 3.828625478358981*^9, {
3.828641035870944*^9, 3.8286410599056683`*^9}, 3.828647641596143*^9,
3.8286600601587954`*^9, 3.82866055836465*^9, 3.828661685203168*^9, {
3.8286617692386293`*^9, 3.828661794450316*^9}, 3.82866264308572*^9,
3.8286630417960033`*^9, 3.828663679995862*^9, 3.8286639881715*^9,
3.828664492389189*^9, 3.828664868663672*^9, 3.828665167716435*^9,
3.8286654573151217`*^9, 3.82866554451665*^9, 3.828694601409953*^9,
3.828697340810833*^9, 3.828697373096623*^9, 3.828699157368094*^9,
3.8287000695629597`*^9, 3.828700421284803*^9, 3.828711298523411*^9,
3.8287209356236477`*^9, 3.828908660398972*^9, 3.828908755441113*^9,
3.828911040701927*^9, 3.828911386756925*^9, 3.828911470373048*^9,
3.828911557388294*^9, 3.828911977696866*^9, 3.828912173274919*^9,
3.828912269849279*^9, 3.828912475299453*^9, 3.8289126339228983`*^9,
3.8289573630558434`*^9, 3.8289622857786617`*^9, 3.8289623564263487`*^9,
3.828962391680706*^9, 3.828962434410884*^9, 3.828962471659651*^9, {
3.828962502104456*^9, 3.8289625314554234`*^9}, 3.8289684573200417`*^9,
3.828968491695799*^9, 3.82896853516324*^9, 3.8289686001823606`*^9,
3.829003856614623*^9, 3.8290040433813868`*^9, 3.829004245475973*^9,
3.829005449939274*^9, 3.829005483801612*^9, 3.8290055140404663`*^9,
3.829068479441791*^9, 3.829070145358726*^9, {3.829070234311528*^9,
3.829070244766986*^9}, 3.829070291055995*^9, 3.8290704063721247`*^9,
3.829070532607337*^9, 3.829070564848271*^9, 3.829070596010833*^9,
3.82908016804676*^9, 3.829080237315843*^9, {3.829080280590684*^9,
3.8290803397708263`*^9}, 3.8290806559485083`*^9, 3.829084703370414*^9,
3.829084767784116*^9, 3.829084851508293*^9, {3.8290848833707857`*^9,
3.829084911888357*^9}, 3.8290850357742767`*^9, 3.82908512314226*^9,
3.829091000845223*^9, 3.829091394445816*^9, 3.8290921262562723`*^9,
3.829092182281989*^9, {3.829330242578782*^9, 3.829330325725052*^9},
3.829936861065497*^9, 3.829936989625111*^9, 3.829937085785881*^9,
3.829937230686879*^9, 3.829937311263938*^9, {3.82993734157338*^9,
3.829937396200919*^9}, 3.834173007240198*^9, {3.834173094341731*^9,
3.834173124145454*^9}, {3.8341731575209627`*^9, 3.834173186309477*^9},
3.8341994548244753`*^9, 3.8341995712915077`*^9, 3.834199607978443*^9,
3.8341996410317173`*^9, 3.834693633823764*^9, 3.8346936747555933`*^9, {
3.834693711132259*^9, 3.834693738941004*^9}, 3.9138221720745907`*^9,
3.913826984717066*^9},
CellLabel->
"Out[901]=",ExpressionUUID->"ef9ddafa-13e7-435c-b141-2119439dd46c"],
Cell[BoxData["\<\"/Users/novakm/Git/GeometricComplexity/figs/Arithmetic\"\>"],\
"Output",
CellChangeTimes->{
3.821283717913576*^9, 3.821283761793239*^9, 3.821358062749962*^9,
3.821473683265218*^9, 3.821489431458932*^9, 3.8217364428092422`*^9,
3.82173667533838*^9, {3.821736718943734*^9, 3.8217367480254097`*^9},
3.821837713022696*^9, 3.821837764670711*^9, {3.821838674578001*^9,
3.821838702580845*^9}, 3.821838777596634*^9, 3.821838811284667*^9,
3.821838892168049*^9, 3.821839229490798*^9, 3.821839289903377*^9,
3.821839989855959*^9, 3.821840139350628*^9, 3.824426325246872*^9,
3.824552939975606*^9, 3.824553047058134*^9, 3.824553113476007*^9, {
3.824553918211269*^9, 3.824553941929109*^9}, 3.8245713598982143`*^9,
3.824571615148594*^9, 3.824571733459551*^9, 3.824571821294758*^9,
3.824594572671687*^9, 3.824594656903871*^9, {3.824594692966066*^9,
3.824594736933958*^9}, 3.8245951236617002`*^9, {3.824595224013135*^9,
3.8245952436828127`*^9}, 3.824595320142049*^9, 3.824595373029558*^9,
3.824596827147439*^9, 3.824599290512032*^9, 3.8245993479112787`*^9,
3.824599392494898*^9, 3.8245994578752537`*^9, 3.824600459191856*^9,
3.824600556353489*^9, 3.8246723401942863`*^9, 3.824672449129015*^9,
3.824672492906993*^9, 3.824687181053759*^9, 3.824944073355034*^9,
3.8249441430130463`*^9, 3.824944196475874*^9, 3.824946231609867*^9,
3.8249978418052597`*^9, 3.825029725198988*^9, 3.825030812695064*^9,
3.825031082573687*^9, 3.825032037560668*^9, 3.8250322838822603`*^9,
3.825032433665989*^9, 3.825158737629599*^9, 3.825166101730838*^9,
3.825426069045907*^9, 3.82542663794422*^9, 3.8254279870785513`*^9,
3.825436397726921*^9, 3.8254385292151747`*^9, 3.825441763248808*^9,
3.8254493692769213`*^9, 3.8254638846260242`*^9, 3.825523336301756*^9,
3.825523463837887*^9, 3.82552351289047*^9, 3.8255525455054483`*^9,
3.825552578658648*^9, 3.82555282138538*^9, 3.825552890925305*^9,
3.825552968608398*^9, 3.8255530018323603`*^9, {3.8255531889818583`*^9,
3.825553217282958*^9}, 3.825553265179111*^9, 3.8255535357470512`*^9,
3.8255538214862413`*^9, 3.82555388736963*^9, 3.825553953269692*^9,
3.825638719999401*^9, {3.825638878849853*^9, 3.825638907989851*^9},
3.825638964364759*^9, 3.8256392585852213`*^9, 3.825639649953084*^9,
3.825639750144898*^9, 3.825639856808455*^9, 3.825639910461055*^9,
3.825640024502027*^9, 3.825640067559943*^9, {3.8256401798490353`*^9,
3.825640254466804*^9}, 3.828053020101777*^9, 3.828053140119223*^9,
3.828053281226755*^9, 3.828053381358287*^9, 3.828053419567129*^9,
3.8280912400055847`*^9, 3.828534012437327*^9, 3.828539949615505*^9,
3.8285404943655024`*^9, 3.828540564644112*^9, 3.8285406739927692`*^9,
3.828540979819414*^9, 3.828541016050722*^9, 3.828541702426591*^9,
3.828607837717664*^9, 3.828608451065131*^9, 3.828608633022655*^9,
3.828613038842651*^9, 3.82861409090543*^9, 3.828616859686411*^9,
3.8286219892580147`*^9, 3.828623485712482*^9, 3.828625478358981*^9, {
3.828641035870944*^9, 3.8286410599056683`*^9}, 3.828647641596143*^9,
3.8286600601587954`*^9, 3.82866055836465*^9, 3.828661685203168*^9, {
3.8286617692386293`*^9, 3.828661794450316*^9}, 3.82866264308572*^9,
3.8286630417960033`*^9, 3.828663679995862*^9, 3.8286639881715*^9,
3.828664492389189*^9, 3.828664868663672*^9, 3.828665167716435*^9,
3.8286654573151217`*^9, 3.82866554451665*^9, 3.828694601409953*^9,
3.828697340810833*^9, 3.828697373096623*^9, 3.828699157368094*^9,
3.8287000695629597`*^9, 3.828700421284803*^9, 3.828711298523411*^9,
3.8287209356236477`*^9, 3.828908660398972*^9, 3.828908755441113*^9,
3.828911040701927*^9, 3.828911386756925*^9, 3.828911470373048*^9,
3.828911557388294*^9, 3.828911977696866*^9, 3.828912173274919*^9,
3.828912269849279*^9, 3.828912475299453*^9, 3.8289126339228983`*^9,
3.8289573630558434`*^9, 3.8289622857786617`*^9, 3.8289623564263487`*^9,
3.828962391680706*^9, 3.828962434410884*^9, 3.828962471659651*^9, {
3.828962502104456*^9, 3.8289625314554234`*^9}, 3.8289684573200417`*^9,
3.828968491695799*^9, 3.82896853516324*^9, 3.8289686001823606`*^9,
3.829003856614623*^9, 3.8290040433813868`*^9, 3.829004245475973*^9,
3.829005449939274*^9, 3.829005483801612*^9, 3.8290055140404663`*^9,
3.829068479441791*^9, 3.829070145358726*^9, {3.829070234311528*^9,
3.829070244766986*^9}, 3.829070291055995*^9, 3.8290704063721247`*^9,
3.829070532607337*^9, 3.829070564848271*^9, 3.829070596010833*^9,
3.82908016804676*^9, 3.829080237315843*^9, {3.829080280590684*^9,
3.8290803397708263`*^9}, 3.8290806559485083`*^9, 3.829084703370414*^9,
3.829084767784116*^9, 3.829084851508293*^9, {3.8290848833707857`*^9,
3.829084911888357*^9}, 3.8290850357742767`*^9, 3.82908512314226*^9,
3.829091000845223*^9, 3.829091394445816*^9, 3.8290921262562723`*^9,
3.829092182281989*^9, {3.829330242578782*^9, 3.829330325725052*^9},
3.829936861065497*^9, 3.829936989625111*^9, 3.829937085785881*^9,
3.829937230686879*^9, 3.829937311263938*^9, {3.82993734157338*^9,
3.829937396200919*^9}, 3.834173007240198*^9, {3.834173094341731*^9,
3.834173124145454*^9}, {3.8341731575209627`*^9, 3.834173186309477*^9},
3.8341994548244753`*^9, 3.8341995712915077`*^9, 3.834199607978443*^9,
3.8341996410317173`*^9, 3.834693633823764*^9, 3.8346936747555933`*^9, {
3.834693711132259*^9, 3.834693738941004*^9}, 3.9138221720745907`*^9,
3.913826985114304*^9},
CellLabel->
"Out[903]=",ExpressionUUID->"3c131810-996e-4123-9853-3e8204fc7d0e"]
}, Open ]],
Cell[TextData[{
"The data files each have four independent variables (",
StyleBox["\[CapitalNu]max, Pmax, number of prey levels, number of pred \
levels",
FontSlant->"Italic"],
") and one response variable (",
StyleBox["geometric complexity",
FontSlant->"Italic"],
")."
}], "Text",
CellChangeTimes->{{3.820337858246282*^9, 3.820337950466853*^9}, {
3.8246874503537617`*^9,
3.824687451752961*^9}},ExpressionUUID->"bc8521ce-46d4-43a3-aa01-\
fe4c426ca54f"],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"varH1", "//", "TableForm"}]], "Input",
CellChangeTimes->{{3.820337780033626*^9, 3.820337784888517*^9}, {
3.820337820480145*^9, 3.8203378405023317`*^9}, {3.820439358726396*^9,
3.8204393823725986`*^9}, {3.8205008267921247`*^9, 3.820500836135211*^9}},
CellLabel->
"In[904]:=",ExpressionUUID->"d4b5d756-95be-4b7b-a925-4481e703a331"],
Cell[BoxData[
TagBox[GridBox[{
{"21", "1", "5", "1", "1.6894212960396355`"},
{"21", "2", "5", "2", "1.4227130273084736`"},
{"21", "3", "5", "3", "1.2581098808738735`"},
{"21", "5", "5", "4", "1.0108543795779565`"},
{"21", "8", "5", "5", "0.6764043757802068`"},
{"34", "1", "6", "1", "1.9638958114015839`"},
{"34", "2", "6", "2", "1.7302839327615755`"},
{"34", "3", "6", "3", "1.5968386405238169`"},
{"34", "5", "6", "4", "1.4129511730332804`"},
{"34", "8", "6", "5", "1.1893870477965336`"},
{"55", "1", "7", "1", "2.23195430458178`"},
{"55", "2", "7", "2", "2.021377701628497`"},
{"55", "3", "7", "3", "1.9079206087640885`"},
{"55", "5", "7", "4", "1.7625459419046772`"},
{"55", "8", "7", "5", "1.5976043667457618`"},
{"89", "1", "8", "1", "2.4954185671963036`"},
{"89", "2", "8", "2", "2.3012180957565307`"},
{"89", "3", "8", "3", "2.2018881283084117`"},
{"89", "5", "8", "4", "2.081382780225769`"},
{"89", "8", "8", "5", "1.9521420049695113`"},
{"144", "1", "9", "1", "2.755155840909846`"},
{"144", "2", "9", "2", "2.572932167197103`"},
{"144", "3", "9", "3", "2.483555778119898`"},
{"144", "5", "9", "4", "2.380543398182587`"},
{"144", "8", "9", "5", "2.2743018655273293`"},
{"233", "1", "10", "1", "3.010729580610058`"},
{"233", "2", "10", "2", "2.837423243943025`"},
{"233", "3", "10", "3", "2.755316127674154`"},
{"233", "5", "10", "4", "2.6646790285330013`"},
{"233", "8", "10", "5", "2.5746400522534545`"}
},
GridBoxAlignment->{"Columns" -> {{Left}}, "Rows" -> {{Baseline}}},
GridBoxSpacings->{"Columns" -> {
Offset[0.27999999999999997`], {
Offset[2.0999999999999996`]},
Offset[0.27999999999999997`]}, "Rows" -> {
Offset[0.2], {
Offset[0.4]},
Offset[0.2]}}],
Function[BoxForm`e$,
TableForm[BoxForm`e$]]]], "Output",
CellChangeTimes->{{3.82033778158641*^9, 3.820337785157662*^9}, {
3.820337822131731*^9, 3.820337840775548*^9}, 3.820338717650605*^9,
3.820338754395858*^9, 3.820338830952116*^9, 3.820339007874772*^9,
3.820339569687216*^9, 3.8203396740961742`*^9, 3.820341250883626*^9,
3.8203599028302937`*^9, 3.820360131925*^9, 3.820361062447731*^9, {
3.820439371557496*^9, 3.820439382608864*^9}, 3.820439937262168*^9,
3.8204399704433107`*^9, 3.820440024356123*^9, 3.820442616695384*^9,
3.820454115464222*^9, 3.820454496201912*^9, 3.820495908187969*^9,
3.820495939098359*^9, 3.8205007948894663`*^9, 3.820501562490857*^9,
3.820509734914969*^9, 3.8205113598599*^9, 3.820512808355678*^9,
3.820530232568018*^9, 3.82053565282127*^9, 3.820535726164564*^9,
3.820535800409954*^9, 3.82053583812362*^9, {3.8205358848374023`*^9,
3.820535909265383*^9}, 3.820541485704562*^9, 3.8205415491451273`*^9,
3.8206060464349203`*^9, 3.820606431191064*^9, 3.820607059901902*^9,
3.8206074708864594`*^9, 3.820607754171915*^9, 3.8206208164672203`*^9,
3.82123089919978*^9, {3.821231159487288*^9, 3.821231176248639*^9},
3.821231247196108*^9, 3.8212313099745607`*^9, 3.8212692476932993`*^9,
3.821283717956232*^9, 3.821283762855603*^9, 3.82135806287204*^9,
3.821473683949266*^9, 3.821489431722806*^9, 3.821736443297641*^9,
3.821736675377301*^9, {3.8217367195355177`*^9, 3.821736748717246*^9},
3.821837713807292*^9, 3.821837764705482*^9, {3.821838674721981*^9,
3.821838703378603*^9}, 3.821838777629963*^9, 3.821838811323242*^9,
3.8218388922037687`*^9, 3.821839229524974*^9, 3.8218392899406652`*^9,
3.821839989928301*^9, 3.821840139385291*^9, 3.8244263260456257`*^9,
3.824552940900331*^9, 3.824553047096162*^9, 3.824553113508522*^9, {
3.8245539182625713`*^9, 3.8245539419652977`*^9}, 3.824571359931863*^9,
3.8245716152100267`*^9, 3.8245717334936733`*^9, 3.824571821328857*^9,
3.824594573537224*^9, 3.82459465696108*^9, {3.8245946930003653`*^9,
3.824594736968914*^9}, 3.824595123718832*^9, {3.824595224047467*^9,
3.824595243719143*^9}, 3.824595320176395*^9, 3.8245953730665493`*^9,
3.824596827181737*^9, 3.824599290546129*^9, 3.8245993479634027`*^9,
3.824599392527622*^9, 3.824599457909011*^9, 3.824600459224761*^9,
3.824600556385623*^9, 3.824672340459483*^9, 3.824672449162221*^9,
3.8246724929450073`*^9, 3.824687181095737*^9, 3.824944073595298*^9,
3.824944143048081*^9, 3.824944196510991*^9, 3.8249462317153473`*^9,
3.8249978422133093`*^9, 3.825029725771842*^9, 3.825030812760665*^9,
3.825031082607791*^9, 3.825032037600976*^9, 3.82503228391838*^9,
3.825032433701344*^9, 3.825158737762754*^9, 3.825166101887146*^9,
3.825426069300465*^9, 3.825426637997264*^9, 3.825427987120091*^9,
3.825436397843561*^9, 3.825438529258678*^9, 3.825441763300702*^9,
3.825449369320551*^9, 3.825463884701269*^9, 3.8255233363453712`*^9,
3.825523463894519*^9, 3.825523512928269*^9, 3.825552545640294*^9,
3.825552578696877*^9, 3.825552821449924*^9, 3.825552890968584*^9,
3.825552968651966*^9, 3.82555300187702*^9, {3.8255531890324373`*^9,
3.825553217321123*^9}, 3.8255532652194033`*^9, 3.825553535785808*^9,
3.825553821531786*^9, 3.825553887417225*^9, 3.825553953308833*^9,
3.8256387204284077`*^9, {3.8256388788929663`*^9, 3.825638908032943*^9},
3.8256389644045057`*^9, 3.825639258622986*^9, 3.825639649993222*^9,
3.825639750186604*^9, 3.825639856846714*^9, 3.82563991050348*^9,
3.825640024543242*^9, 3.8256400675976887`*^9, {3.825640179889205*^9,
3.8256402545107393`*^9}, 3.828053020240253*^9, 3.828053140161788*^9,
3.8280532812675877`*^9, 3.828053381397732*^9, 3.828053419604639*^9,
3.828091240045611*^9, 3.828534012495466*^9, 3.828539949655209*^9,
3.828540494405035*^9, 3.828540564683457*^9, 3.828540674031459*^9,
3.828540979881093*^9, 3.828541016111451*^9, 3.828541702749199*^9,
3.8286078380552063`*^9, 3.8286084511182137`*^9, 3.828608633061039*^9,
3.8286130389082127`*^9, 3.828614090948866*^9, 3.828616859847149*^9,
3.828621989359935*^9, 3.828623485752226*^9, 3.8286254784455748`*^9, {
3.828641037228958*^9, 3.828641060089971*^9}, 3.828660060305601*^9,
3.8286605584033422`*^9, 3.828661685263002*^9, {3.828661769283821*^9,
3.82866179449044*^9}, 3.828662643124731*^9, 3.8286630418360662`*^9,
3.828663680063953*^9, 3.828663988210682*^9, 3.828664492645586*^9,
3.828664868842709*^9, 3.828665167759027*^9, 3.828665457502544*^9,
3.828665544694915*^9, 3.828694601856969*^9, 3.828697340890676*^9,
3.828697373136376*^9, 3.8286991574166813`*^9, 3.828700069606575*^9,
3.828700421343384*^9, 3.828711299013188*^9, 3.828720935955974*^9,
3.828908661049205*^9, 3.828908755496995*^9, 3.8289110407460003`*^9,
3.828911386801015*^9, 3.82891147041848*^9, 3.828911557432712*^9,
3.8289119777419147`*^9, 3.828912173340164*^9, 3.828912269901966*^9,
3.828912475345752*^9, 3.828912633968581*^9, 3.828957363496744*^9,
3.828962285854274*^9, 3.828962356459971*^9, 3.828962391905064*^9,
3.8289624345156937`*^9, 3.828962471705957*^9, {3.8289625021487093`*^9,
3.8289625315017347`*^9}, 3.828968457369598*^9, 3.828968491841527*^9,
3.82896853523488*^9, 3.8289686003391857`*^9, 3.8290038569578743`*^9,
3.829004043957443*^9, 3.8290042455299683`*^9, 3.8290054500142393`*^9,
3.829005483883223*^9, 3.829005514134614*^9, 3.8290684806495733`*^9,
3.829070145405692*^9, {3.829070234358962*^9, 3.829070244813321*^9},
3.8290702911009808`*^9, 3.829070406417774*^9, 3.829070532791074*^9,
3.829070565063163*^9, 3.829070596109271*^9, 3.829080168154903*^9,
3.8290802374224987`*^9, {3.829080280711536*^9, 3.8290803398392487`*^9},
3.829080656001774*^9, 3.829084703417478*^9, 3.8290847678316813`*^9,
3.82908485156441*^9, {3.829084883428298*^9, 3.829084911935156*^9},
3.829085035822029*^9, 3.8290851231988087`*^9, 3.8290910009265127`*^9,
3.829091394492427*^9, 3.829092126306891*^9, 3.82909218233505*^9, {
3.829330243948474*^9, 3.829330325975507*^9}, 3.82993686233628*^9,
3.829936989669559*^9, 3.829937085830935*^9, 3.8299372307350187`*^9,
3.829937311308444*^9, {3.829937342033863*^9, 3.829937396742786*^9},
3.834173008718116*^9, 3.834173094387786*^9, 3.8341731246630993`*^9, {
3.834173157951282*^9, 3.834173186678156*^9}, 3.83419945513866*^9,
3.83419957147338*^9, 3.8341996082232924`*^9, 3.834199641199375*^9,
3.834693634244422*^9, 3.8346936750096684`*^9, {3.8346937113107653`*^9,
3.834693739149534*^9}, 3.913822172112466*^9, 3.9138269851227903`*^9},
CellLabel->
"Out[904]//TableForm=",ExpressionUUID->"4924adf7-d512-47ac-8ae0-\
e3bc55332bb6"]
}, Open ]]
}, Open ]],
Cell[CellGroupData[{
Cell["\<\
Convenience function to append complexity differences to independent variables\
\>", "Subsection",
CellChangeTimes->{{3.8173237788371153`*^9, 3.817323793621955*^9}, {
3.817324059777796*^9, 3.817324074832838*^9}, {3.817324480289125*^9,
3.817324481432638*^9}, {3.8192424586892*^9, 3.819242467642172*^9}, {
3.820338080974063*^9, 3.820338097549116*^9}, {3.8246874612092247`*^9,
3.8246874702080173`*^9}},ExpressionUUID->"0018b4b1-b12f-428f-9ef7-\
5389169b4ea7"],
Cell["\<\
Denom_ is the measure to which the Numer_ measure is relativized.
**Note that only real part of complex numbers are returned (i.e. we ignore \
what are usually small imaginary parts )**\
\>", "Text",
CellChangeTimes->{{3.817323812435058*^9, 3.817323855233652*^9}, {
3.81924247649813*^9, 3.819242514072391*^9}, {3.820337302291645*^9,
3.820337320401532*^9}, {3.820337993705056*^9, 3.820338004240802*^9}, {
3.820607425727882*^9,
3.820607462854632*^9}},ExpressionUUID->"4feccc87-384b-4496-acba-\
eba7f0fd4dc8"],
Cell[BoxData[
RowBox[{
RowBox[{
RowBox[{
RowBox[{"Relativize", "[",
RowBox[{"dataDenom_", ",", "dataNumer_"}], "]"}], ":=",
"\[IndentingNewLine]",
RowBox[{"Join", "[",
RowBox[{
RowBox[{"dataDenom", "[",
RowBox[{"[",
RowBox[{"All", ",",
RowBox[{"{",
RowBox[{"1", ",", "2", ",", "3", ",", "4"}], "}"}]}], "]"}], "]"}],
",", "\[IndentingNewLine]",
RowBox[{"Transpose", "[",
RowBox[{"{",
RowBox[{
RowBox[{"Re", "[",
RowBox[{"dataNumer", "[",
RowBox[{"[",
RowBox[{"All", ",", "5"}], "]"}], "]"}], "]"}], "-",
RowBox[{"dataDenom", "[",
RowBox[{"[",
RowBox[{"All", ",", "5"}], "]"}], "]"}]}], "}"}], "]"}], ",",
"2"}], "]"}]}], ";"}], " ",
RowBox[{"(*", " ",
RowBox[{
"Simply", " ", "replaces", " ", "division", " ", "by", " ",
"subtraction"}], " ", "*)"}]}]], "Input",
CellChangeTimes->{{3.81732299333392*^9, 3.81732302174054*^9}, {
3.8173230963865223`*^9, 3.8173231822366543`*^9}, {3.817323301664303*^9,
3.8173235226706944`*^9}, {3.8173239140725803`*^9, 3.817323992444365*^9},
3.817324084912911*^9, {3.817324498529277*^9, 3.817324500208415*^9}, {
3.817324654002639*^9, 3.817324755109481*^9}, {3.8192418315520678`*^9,
3.819241839571138*^9}, {3.819241882265332*^9, 3.819241952342764*^9}, {
3.819242021764966*^9, 3.819242068714172*^9}, {3.819242105137258*^9,
3.8192421510470057`*^9}, {3.819242201829896*^9, 3.819242236411672*^9}, {
3.819242422933255*^9, 3.819242448755464*^9}, {3.8203372907966948`*^9,
3.8203372935481586`*^9}, {3.8203373260588512`*^9,
3.8203373830575027`*^9}, {3.820337417743504*^9, 3.8203374295587463`*^9}, {
3.820360895274284*^9, 3.8203609064890327`*^9}, {3.820361051500152*^9,
3.820361052867422*^9}, {3.8204393422629538`*^9, 3.820439377868891*^9}, {
3.8204437813592043`*^9, 3.820443782198412*^9}, {3.8206071544916763`*^9,
3.820607156162504*^9}, {3.820607195545083*^9, 3.82060729044552*^9}, {
3.820607361540106*^9, 3.82060737279438*^9}, {3.8206074113051558`*^9,
3.820607423096562*^9}, {3.8211858804903297`*^9, 3.821185896496347*^9}},
CellLabel->
"In[905]:=",ExpressionUUID->"687b2a81-889a-4748-937a-9a078e6f818a"],
Cell[BoxData[""], "Input",
CellChangeTimes->{3.820607308316888*^9},
CellLabel->
"In[906]:=",ExpressionUUID->"65696f40-73a3-45ba-974c-c9072eba0f43"],
Cell[BoxData[{
RowBox[{
RowBox[{
RowBox[{"blankplot", " ", "=", " ",
RowBox[{"ListPlot", "[",
RowBox[{
RowBox[{"{", "0", "}"}], ",",
RowBox[{"Axes", "\[Rule]", "False"}], ",",
RowBox[{"PlotStyle", "\[Rule]", "None"}]}], "]"}]}], ";"}],
"\[IndentingNewLine]"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"MyListLinePlot", "[", "\[IndentingNewLine]",
RowBox[{
"data_", ",", "\[IndentingNewLine]", "predVars_", ",",
"\[IndentingNewLine]", "axislabels_", ",", "\[IndentingNewLine]",
"plotlabel_", ",", "\[IndentingNewLine]", "plotRange_", ",",
"\[IndentingNewLine]", "colors_"}], "]"}], ":=", "\[IndentingNewLine]",
RowBox[{"ListLinePlot", "[", "\[IndentingNewLine]",
RowBox[{
RowBox[{"Transpose", "[",
RowBox[{
RowBox[{"SplitBy", "[",
RowBox[{"data", ",",
RowBox[{
RowBox[{"Part", "[",
RowBox[{"#", ",",
RowBox[{"predVars", "[",
RowBox[{"[", "1", "]"}], "]"}]}], "]"}], "&"}]}], "]"}], "[",
RowBox[{"[",
RowBox[{"All", ",", "All", ",",
RowBox[{"{",
RowBox[{
RowBox[{"predVars", "[",
RowBox[{"[", "1", "]"}], "]"}], ",", "5"}], "}"}]}], "]"}], "]"}],
"]"}], ",", "\[IndentingNewLine]",
RowBox[{"ScalingFunctions", "\[Rule]",
RowBox[{"{",
RowBox[{"\"\<Log\>\"", ",", "\"\<Linear\>\""}], "}"}]}], ",",
"\[IndentingNewLine]",
RowBox[{"ColorFunction", "\[Rule]",
RowBox[{"Function", "[",
RowBox[{
RowBox[{"{",
RowBox[{"x", ",", "y"}], "}"}], ",",
RowBox[{"Which", "[",
RowBox[{
RowBox[{"y", "\[GreaterEqual]", " ", "0.02"}], ",",
RowBox[{"colors", "[",
RowBox[{"[", "1", "]"}], "]"}], ",",
RowBox[{"y", "\[LessEqual]", " ",
RowBox[{"-", "0.02"}]}], ",",
RowBox[{"colors", "[",
RowBox[{"[", "2", "]"}], "]"}], ",", "True", ",",
RowBox[{"colors", "[",
RowBox[{"[", "3", "]"}], "]"}]}], "]"}]}], "]"}]}], ",",
"\[IndentingNewLine]",
RowBox[{"ColorFunctionScaling", "\[Rule]", "False"}], ",",
"\[IndentingNewLine]",
RowBox[{"PlotRange", "\[Rule]", "plotRange"}], ",", "\[IndentingNewLine]",
RowBox[{"PlotRangePadding", "\[Rule]", "0.05"}], ",",
"\[IndentingNewLine]",
RowBox[{"PlotLegends", "\[Rule]", "False"}], ",", "\[IndentingNewLine]",
RowBox[{"Axes", "\[Rule]", " ", "False"}], ",", "\[IndentingNewLine]",
RowBox[{"Frame", "\[Rule]", " ", "True"}], ",", "\[IndentingNewLine]",
RowBox[{"PlotStyle", "\[Rule]",
RowBox[{"LineStyle", "[",
RowBox[{"[",
RowBox[{"1", ";;",
RowBox[{"Length", "[",
RowBox[{"DeleteDuplicates", "[",
RowBox[{"data", "[",
RowBox[{"[",
RowBox[{"All", ",",
RowBox[{"predVars", "[",
RowBox[{"[", "2", "]"}], "]"}]}], "]"}], "]"}], "]"}], "]"}]}],
"]"}], "]"}]}], ",", "\[IndentingNewLine]",
RowBox[{"FrameLabel", "\[Rule]", " ", "axislabels"}], ",",
"\[IndentingNewLine]",
RowBox[{"ImagePadding", "\[Rule]",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{"60", ",", "10"}], "}"}], ",", " ",
RowBox[{"{",
RowBox[{"40", ",", " ", "20"}], "}"}]}], "}"}]}], ",",
"\[IndentingNewLine]",
RowBox[{"PlotRangeClipping", "\[Rule]", "False"}], ",",
"\[IndentingNewLine]",
RowBox[{"Epilog", "\[Rule]",
RowBox[{"{",
RowBox[{"Text", "[",
RowBox[{
RowBox[{"Style", "[",
RowBox[{"plotlabel", ",", "12"}], "]"}], ",",
RowBox[{"Scaled", "[",
RowBox[{"{",
RowBox[{"0.5", ",", "1.1"}], "}"}], "]"}]}], "]"}], "}"}]}]}],
"\[IndentingNewLine]", "]"}]}]}], "Input",
CellChangeTimes->{{3.816306386124176*^9, 3.8163063921193*^9}, {
3.81630646630332*^9, 3.816306475540495*^9}, {3.816306787585993*^9,
3.816306837511751*^9}, {3.816306869095235*^9, 3.816306872300852*^9}, {
3.816345416327927*^9, 3.816345511670801*^9}, {3.816345782604364*^9,
3.81634578321037*^9}, {3.816349301228387*^9, 3.816349329072562*^9}, {
3.8163556140228443`*^9, 3.816355636099658*^9}, {3.816355917696817*^9,
3.81635592284031*^9}, {3.816355961502699*^9, 3.81635597149335*^9}, {
3.816358524923923*^9, 3.816358525721992*^9}, {3.816359428488605*^9,
3.81635947070394*^9}, 3.816359675425713*^9, {3.816359870433649*^9,
3.816359927460237*^9}, {3.81636001269092*^9, 3.816360012777248*^9}, {
3.816360206739526*^9, 3.816360219457468*^9}, {3.816360270784112*^9,
3.8163602727748623`*^9}, 3.8163604870577497`*^9, {3.8163606195387783`*^9,
3.81636065950366*^9}, {3.816362342585772*^9, 3.816362363174869*^9}, {
3.81636241519862*^9, 3.816362434021359*^9}, {3.816362464180767*^9,
3.8163624940572023`*^9}, {3.816362525202593*^9, 3.8163625764864283`*^9}, {
3.816362642803762*^9, 3.8163626798664837`*^9}, {3.8163628122957697`*^9,
3.8163629121313887`*^9}, 3.816363450662854*^9, {3.8163635355721407`*^9,
3.816363575623752*^9}, {3.816363620687318*^9, 3.8163636332951508`*^9}, {
3.8163637594505053`*^9, 3.816363898339398*^9}, {3.8163640877502728`*^9,
3.816364126770791*^9}, {3.816364228840251*^9, 3.81636423927822*^9}, {
3.816364834569112*^9, 3.816364931275236*^9}, {3.8163649816034*^9,
3.816365025431823*^9}, {3.816365096711343*^9, 3.816365123987855*^9}, {
3.8163660145616493`*^9, 3.816366032730111*^9}, {3.8163661318163548`*^9,
3.8163663052391768`*^9}, {3.816366340272155*^9, 3.8163663512949867`*^9}, {
3.816366428677466*^9, 3.8163664291628447`*^9}, {3.8163844454676733`*^9,
3.816384459481962*^9}, {3.816384592844125*^9, 3.816384593386145*^9}, {
3.816386710918906*^9, 3.816386760147542*^9}, {3.816386804381626*^9,
3.816386879095072*^9}, {3.816386923790298*^9, 3.816386941412841*^9}, {
3.816387032051032*^9, 3.8163870468006783`*^9}, {3.816444660443944*^9,
3.8164446652146587`*^9}, {3.816445660256682*^9, 3.816445677734663*^9}, {
3.8167260512764883`*^9, 3.816726051618678*^9}, {3.816781134540922*^9,
3.816781149211307*^9}, {3.8167812321954927`*^9, 3.816781262513309*^9}, {
3.816781305721952*^9, 3.816781371647234*^9}, {3.820337277216474*^9,
3.820337277253586*^9}, {3.820337467173953*^9, 3.820337531475625*^9},
3.820337599569209*^9, {3.820337651015842*^9, 3.820337659438446*^9}, {
3.820338225849972*^9, 3.820338226225193*^9}, {3.820338276744081*^9,
3.820338285110422*^9}, {3.820338342556929*^9, 3.8203383551479683`*^9},
3.820338398163212*^9, {3.8203384317452602`*^9, 3.8203384329213142`*^9}, {
3.820338745117367*^9, 3.820338746076757*^9}, 3.820338974845014*^9, {
3.820360028247098*^9, 3.820360031220089*^9}, {3.8203600618678913`*^9,
3.82036011984892*^9}, {3.820360217941765*^9, 3.820360332888473*^9}, {
3.8203606942913437`*^9, 3.820360717962308*^9}, {3.820360759969324*^9,
3.8203607601682463`*^9}, {3.820360910441826*^9, 3.8203609107618027`*^9}, {
3.820361158585142*^9, 3.820361253244957*^9}, {3.820361468813094*^9,
3.820361553848926*^9}, {3.820361601224601*^9, 3.82036166942852*^9},
3.820417983346447*^9, {3.82041806477503*^9, 3.8204181086601686`*^9}, {
3.820422134331917*^9, 3.820422212079978*^9}, {3.820427268753951*^9,
3.820427345541873*^9}, {3.820439440532199*^9, 3.820439448179399*^9}, {
3.820439893376903*^9, 3.8204399351763773`*^9}, {3.8204399670230093`*^9,
3.820439967350263*^9}, {3.8204400215487432`*^9, 3.8204400219157543`*^9}, {
3.8204423374108667`*^9, 3.820442343090352*^9}, {3.820442520321477*^9,
3.8204425207700987`*^9}, {3.820442598215561*^9, 3.820442598630766*^9}, {
3.8204427792967377`*^9, 3.820442779399762*^9}, {3.820442819390629*^9,
3.820442877724291*^9}, {3.820442999831573*^9, 3.820443025277974*^9}, {
3.8204448191585608`*^9, 3.820444821958654*^9}, {3.820450534069906*^9,
3.820450594347495*^9}, {3.820450778653612*^9, 3.820450786532168*^9}, {
3.820450919415773*^9, 3.820450970573242*^9}, {3.820453409086705*^9,
3.820453415549988*^9}, {3.820453456636615*^9, 3.8204535066735363`*^9}, {
3.820454365953689*^9, 3.820454366800994*^9}, {3.820454451581819*^9,
3.820454460404855*^9}, {3.820500866935145*^9, 3.8205009118927307`*^9}, {
3.820500959043461*^9, 3.820501007833465*^9}, {3.82050107684754*^9,
3.82050108167096*^9}, {3.820501423075223*^9, 3.820501423274784*^9},
3.820530241739563*^9, {3.8205352138509827`*^9, 3.820535252265112*^9}, {
3.820535317014792*^9, 3.820535336765746*^9}, {3.8205355318143883`*^9,
3.8205355359579906`*^9}, {3.820535567653222*^9, 3.8205355709968767`*^9}, {
3.820535720415329*^9, 3.820535723926764*^9}, {3.820535795932805*^9,
3.8205357961555977`*^9}, {3.8205358265370893`*^9, 3.820535907364373*^9}, {
3.820541476365152*^9, 3.820541482936976*^9}, 3.82054154698248*^9, {
3.820606927085288*^9, 3.82060694780324*^9}, {3.820607132678157*^9,
3.82060714305173*^9}, {3.8206077517730207`*^9, 3.820607752796213*^9}, {
3.821185915985458*^9, 3.821185926112294*^9}, {3.821231306413313*^9,
3.82123130868431*^9}, {3.8214910937290163`*^9, 3.82149109710454*^9}, {
3.8245529324949703`*^9, 3.824552935143895*^9}, {3.824553037426258*^9,
3.824553044785123*^9}, 3.8245537286614037`*^9, {3.8245539123122387`*^9,
3.824553956875152*^9}, 3.8245540743642073`*^9, 3.8245541146343107`*^9, {
3.824594753193099*^9, 3.824594755629755*^9}, {3.8245950304906607`*^9,
3.824595118022625*^9}, {3.824595155293981*^9, 3.8245952190672073`*^9}, {
3.824595277945094*^9, 3.824595303727584*^9}, {3.8245953453184643`*^9,
3.824595347469398*^9}, {3.8245956153880672`*^9, 3.824595710503183*^9}, {
3.82459577202985*^9, 3.824595937535811*^9}, {3.8245992829338007`*^9,
3.824599283268814*^9}, {3.824599318564372*^9, 3.8245993186834908`*^9}, {
3.8245993802099447`*^9, 3.824599384768923*^9}, {3.8245994427994623`*^9,
3.824599443487608*^9}, {3.824599993706237*^9, 3.82459999407364*^9}, {
3.82460008612654*^9, 3.824600104941216*^9}, {3.8246001666526833`*^9,
3.8246002130812798`*^9}, 3.824600260679771*^9, {3.824600294390551*^9,
3.824600322628461*^9}, {3.824600364947981*^9, 3.824600367570828*^9}, {
3.824600405225933*^9, 3.824600409817306*^9}, {3.8246005529484253`*^9,
3.8246005532034607`*^9}, {3.824672335507926*^9, 3.824672335723773*^9}, {
3.824672367315117*^9, 3.824672367682122*^9}, {3.824672421601008*^9,
3.824672473750689*^9}, {3.824672707846835*^9, 3.824672712165945*^9}, {
3.824687493496593*^9, 3.824687494048149*^9}, {3.824944105651989*^9,
3.8249441367299023`*^9}, {3.825031999596199*^9, 3.825032002098379*^9}, {
3.8254423652678432`*^9, 3.825442413265324*^9}, {3.8254424651519823`*^9,
3.825442504053473*^9}, {3.825442551972974*^9, 3.82544255269214*^9}, {
3.82555242732691*^9, 3.825552446701374*^9}, {3.825552476948642*^9,
3.8255525071151533`*^9}, {3.8255525394204397`*^9, 3.825552563169482*^9}, {
3.825552773219379*^9, 3.825552810999861*^9}, {3.825552884141718*^9,
3.8255528845888653`*^9}, {3.825552923876217*^9, 3.825552926955222*^9}, {
3.825552959818922*^9, 3.825552959906052*^9}, {3.825552999761211*^9,
3.8255530003124228`*^9}, {3.825553161682457*^9, 3.8255532154638042`*^9}, {
3.825553258935053*^9, 3.825553263030349*^9}, {3.825553335139789*^9,
3.825553395977063*^9}, {3.825639251260309*^9, 3.825639251262064*^9}, {
3.8256393141757603`*^9, 3.825639317070046*^9}, {3.829091007656226*^9,
3.8290910288892107`*^9}, {3.8290911140078583`*^9, 3.829091132647058*^9}, {
3.8299367237724133`*^9, 3.8299367911616983`*^9}, {3.829936987019359*^9,
3.829936987570436*^9}, {3.829937077216062*^9, 3.829937082062772*^9}, {
3.829937225434133*^9, 3.829937228777343*^9}},
CellLabel->
"In[907]:=",ExpressionUUID->"735164d9-3203-4292-ad14-44c18b28f061"]
}, Open ]]
}, Open ]],
Cell[CellGroupData[{
Cell["Varying max abundance, varying number of levels", "Section",
CellChangeTimes->{{3.815614457439783*^9, 3.815614522709207*^9}, {
3.815847343644085*^9, 3.8158473783070927`*^9}, {3.824686673679988*^9,
3.824686683623619*^9}},ExpressionUUID->"1dcf95c5-15ef-46c0-b417-\
f659bc7e29ef"],
Cell[BoxData[{
RowBox[{
RowBox[{"AxisFontSize", "=", "10"}], ";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"LegendFontSize", "=", "12"}], ";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"cm", " ", "=", " ",
RowBox[{"72", "/", "2.54"}]}], ";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"colors1", "=",
RowBox[{"{",
RowBox[{
RowBox[{"GrayLevel", "[", "0.4", "]"}], ",",
RowBox[{"GrayLevel", "[", "0.4", "]"}]}], "}"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"colors2", " ", "=", " ",
RowBox[{"Append", "[",
RowBox[{
RowBox[{
RowBox[{"ColorData", "[",
RowBox[{"97", ",", "\"\<ColorList\>\""}], "]"}], "[",
RowBox[{"[",
RowBox[{"{",
RowBox[{"1", ",", "2"}], "}"}], "]"}], "]"}], ",",
RowBox[{"GrayLevel", "[", "0.4", "]"}]}], "]"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"LineStyle", "=",
RowBox[{"{", "\[IndentingNewLine]",
RowBox[{
RowBox[{"Dashing", "[",
RowBox[{"{", "}"}], "]"}], ",", "\[IndentingNewLine]",
RowBox[{"Dashing", "[",
RowBox[{"{",
RowBox[{"0.05", ",", "0.01"}], "}"}], "]"}], ",",
"\[IndentingNewLine]", "Dashed", ",", "\[IndentingNewLine]", "DotDashed",
",", "\[IndentingNewLine]", "Dotted"}], "\[IndentingNewLine]", "}"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"legend", "=",
RowBox[{"SwatchLegend", "[",
RowBox[{"colors2", ",",
RowBox[{"{",
RowBox[{"\"\<More flexible\>\"", ",", "\"\<Less flexible\>\""}], "}"}],
",",
RowBox[{"LegendMarkers", "\[Rule]",
RowBox[{"Graphics", "[",
RowBox[{"{",
RowBox[{
RowBox[{"EdgeForm", "[", "Black", "]"}], ",",
RowBox[{"Rectangle", "[", "]"}]}], "}"}], "]"}]}], ",",
"\[IndentingNewLine]",
RowBox[{"LegendLabel", "\[Rule]", "\"\<Relative to baseline\>\""}], ",",
"\[IndentingNewLine]",
RowBox[{"LegendFunction", "\[Rule]",
RowBox[{"(",
RowBox[{
RowBox[{"Framed", "[",
RowBox[{"#", ",",
RowBox[{"RoundingRadius", "\[Rule]", "5"}]}], "]"}], "&"}], ")"}]}],
",",
RowBox[{"LegendMargins", "\[Rule]", "5"}]}], "]"}]}],
";"}], "\[IndentingNewLine]",