-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalibrationV8-um.nb
2583 lines (2538 loc) · 120 KB
/
calibrationV8-um.nb
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 11.1' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 158, 7]
NotebookDataLength[ 122364, 2575]
NotebookOptionsPosition[ 119170, 2497]
NotebookOutlinePosition[ 119504, 2512]
CellTagsIndexPosition[ 119461, 2509]
WindowFrame->Normal*)
(* Beginning of Notebook Content *)
Notebook[{
Cell[CellGroupData[{
Cell[BoxData[{
RowBox[{"Clear", "[", "\"\<Global`*\>\"", "]"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Off", "[",
RowBox[{"DeleteDirectory", "::", "nodir"}], "]"}], "\[IndentingNewLine]",
RowBox[{"(*",
RowBox[{"Required", " ", "Package"}], "*)"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Needs", "[", "\"\<ErrorBarPlots`\>\"", "]"}],
"\[IndentingNewLine]",
RowBox[{"(*",
RowBox[{"Required", " ", "Folder"}], "*)"}]}], "\[IndentingNewLine]",
RowBox[{"SetDirectory", "[",
RowBox[{"NotebookDirectory", "[", "]"}], "]"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"DeleteDirectory", "[",
RowBox[{"\"\<Resultsum\>\"", ",",
RowBox[{"DeleteContents", "\[Rule]", "True"}]}], "]"}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"CreateDirectory", "[", "\"\<Resultsum\>\"", "]"}], ";"}],
"\[IndentingNewLine]",
RowBox[{"(*",
RowBox[{"Dataset", " ", "Folder", " ", "Path"}],
"*)"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
"dataPath", "=",
"\"\</home/edwin/Dropbox/Cinvestav \
Experiments/Project/Results/down/2*/seq*/reParticula*.dat\>\""}],
";"}]}], "Input",
CellChangeTimes->{{3.897050167792068*^9, 3.897050167980356*^9}, {
3.8974189984719543`*^9, 3.897418999445661*^9}, {3.89809056258147*^9,
3.898090603628419*^9}, {3.898090843436068*^9, 3.8980908750675507`*^9}, {
3.898091205586952*^9, 3.898091308075817*^9}, {3.898091354836885*^9,
3.898091394377548*^9}, {3.898091494779606*^9, 3.898091498954399*^9}, {
3.898093295066371*^9, 3.8980932987025347`*^9}, 3.898093652230329*^9, {
3.898116279497744*^9, 3.898116284390321*^9}, {3.898131669866302*^9,
3.898131690869083*^9}, {3.89813199814686*^9, 3.898132036272077*^9}, {
3.898192398177083*^9, 3.8981924211803226`*^9}, {3.898193920845455*^9,
3.8981939632204103`*^9}, {3.898194064191955*^9, 3.898194093089072*^9}, {
3.898194361221929*^9, 3.898194361883153*^9}, {3.8981944565481977`*^9,
3.898194478722657*^9}, {3.898263917303484*^9,
3.898263925643898*^9}},ExpressionUUID->"f10e30c1-3602-4466-bed7-\
66b87cbfd081"],
Cell[BoxData["\<\"/home/edwin/Dropbox/Cinvestav \
Experiments/Project/Computational/Modules\"\>"], "Output",
CellChangeTimes->{
3.898093652757856*^9, 3.898108955366081*^9, 3.898114855734393*^9,
3.898115092729344*^9, 3.898115494150049*^9, 3.898116246360914*^9,
3.8981181248560266`*^9, 3.898130366386634*^9, 3.898131038535861*^9,
3.898131091783163*^9, 3.89813169464426*^9, 3.898192425545561*^9,
3.898192481692215*^9, 3.898192616289742*^9, 3.898192735339658*^9,
3.898193967394415*^9, {3.8981940698040743`*^9, 3.898194095776335*^9},
3.898194287540264*^9, 3.898194365460384*^9, {3.898194459419936*^9,
3.898194482538764*^9}, 3.898261359365616*^9, 3.898263754973065*^9,
3.898263929762796*^9, 3.898265019424992*^9, 3.898270861884438*^9,
3.898270925531369*^9, 3.898272424692512*^9,
3.898272637814836*^9},ExpressionUUID->"51348760-4ccf-45f6-ab15-\
8893c5eaffde"]
}, Open ]],
Cell[CellGroupData[{
Cell["Calibration", "Subsubsection",
CellChangeTimes->{{3.897080650541477*^9, 3.8970806600797377`*^9}, {
3.897141716935377*^9,
3.897141720049444*^9}},ExpressionUUID->"efd3c296-3988-45aa-b4ab-\
54c4b4965a9b"],
Cell[BoxData[
RowBox[{
RowBox[{"(*",
RowBox[{"z", " ", "Steps", " ", "in", " ", "\[Mu]m"}], "*)"}],
"\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"zStep", "=", "0.5"}], ";"}], "\[IndentingNewLine]",
RowBox[{"(*",
RowBox[{"Px", " ", "to", " ", "\[Mu]m"}], "*)"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Px", "=", "0.127735"}],
RowBox[{"(*", "\[Mu]m", "*)"}], ";"}], "\[IndentingNewLine]",
RowBox[{"(*",
RowBox[{"Carvajal", " ", "Parameters"}], "*)"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"\[Alpha]1", "=", "30.8437"}], " ",
RowBox[{"(*", "Px", "*)"}], ";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"\[Alpha]2", "=",
RowBox[{"1", "/", "145.2783"}]}], " ",
RowBox[{"(*",
SuperscriptBox["\[Mu]m",
RowBox[{"-", "1"}]], "*)"}], ";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"\[Alpha]3", "=",
RowBox[{"-", "31.0573"}]}],
RowBox[{"(*", "Px", "*)"}], ";"}]}]}]], "Input",
CellChangeTimes->{{3.897052721968832*^9, 3.8970527304073544`*^9}, {
3.897052807677116*^9, 3.897052807820506*^9}, {3.8971408989922867`*^9,
3.8971409022731447`*^9}, 3.897141171776352*^9, {3.897411466948674*^9,
3.8974114907722473`*^9}, {3.8975903200217733`*^9,
3.8975903742815857`*^9}, {3.897766959112567*^9, 3.897766959492331*^9}, {
3.898192662140564*^9, 3.8981926969356737`*^9}, {3.898193512765726*^9,
3.898193519252286*^9}, {3.8981935910968637`*^9, 3.8981936088816843`*^9}, {
3.898261308491823*^9, 3.8982613086465693`*^9}, {3.898264295877437*^9,
3.898264298319017*^9}},ExpressionUUID->"f9d53e53-6f1f-4f33-8e40-\
554ffe7c33de"],
Cell[BoxData[
RowBox[{
RowBox[{"(*",
RowBox[{"Number", " ", "of", " ", "Particles"}], "*)"}],
"\[IndentingNewLine]",
RowBox[{
RowBox[{"nFile", "=",
RowBox[{"Length", "@",
RowBox[{"FileNames", "[", "dataPath", "]"}]}]}], ";"}]}]], "Input",
CellChangeTimes->{{3.8974115645308313`*^9, 3.89741161266199*^9},
3.898091681795123*^9,
3.8981303763448763`*^9},ExpressionUUID->"a5460eb8-70c2-4008-ab41-\
86fdbb1e0ee9"],
Cell[BoxData[
RowBox[{
RowBox[{"(*",
RowBox[{"Import", " ", "Data"}], "*)"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"data", "=",
RowBox[{"Table", "[",
RowBox[{
RowBox[{"Import", "[",
RowBox[{
RowBox[{
RowBox[{"FileNames", "[", "dataPath", "]"}], "[",
RowBox[{"[", "i", "]"}], "]"}], ",", "\"\<Data\>\""}], "]"}], ",",
RowBox[{"{",
RowBox[{"i", ",", "nFile"}], "}"}]}], "]"}]}], ";"}]}]], "Input",Expres\
sionUUID->"f11653a3-fbd1-46c9-9980-20593737d40a"],
Cell[BoxData[
RowBox[{
RowBox[{"(*",
RowBox[{"Radius", " ", "List"}], "*)"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"RListRaw", "=",
RowBox[{"Table", "[",
RowBox[{
RowBox[{"Last", "/@",
RowBox[{"data", "[",
RowBox[{"[", "i", "]"}], "]"}]}], ",",
RowBox[{"{",
RowBox[{"i", ",", "nFile"}], "}"}]}], "]"}]}], ";"}],
"\[IndentingNewLine]",
RowBox[{
RowBox[{"RList", "=",
RowBox[{"Table", "[", "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"aux", "=",
RowBox[{"RListRaw", "[",
RowBox[{"[", "i", "]"}], "]"}]}], ";",
RowBox[{"\[Theta]", "=", "1"}], ";", "\[IndentingNewLine]",
RowBox[{"While", "[", "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"RListRaw", "[",
RowBox[{"[",
RowBox[{"i", ",", "\[Theta]"}], "]"}], "]"}], "\[Equal]", "0."}],
",", "\[IndentingNewLine]",
RowBox[{
RowBox[{"aux", "=",
RowBox[{"Drop", "[",
RowBox[{"aux", ",", "1"}], "]"}]}], ";",
RowBox[{"\[Theta]", "++"}]}]}], "]"}], ";", "\[IndentingNewLine]",
"aux"}], ",", "\[IndentingNewLine]",
RowBox[{"{",
RowBox[{"i", ",", "nFile"}], "}"}]}], "]"}]}], ";"}]}]}]], "Input",
CellChangeTimes->{3.898192611645083*^9,
3.898192662146378*^9},ExpressionUUID->"f38af264-9ea4-49b7-874f-\
8d20fee69a5a"],
Cell[BoxData[
RowBox[{
RowBox[{"(*",
RowBox[{"Match", " ", "Dataset", " ", "Lengths"}], "*)"}],
"\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"Lengths", "=",
RowBox[{"Table", "[",
RowBox[{
RowBox[{"Length", "@",
RowBox[{"RList", "[",
RowBox[{"[", "i", "]"}], "]"}]}], ",",
RowBox[{"{",
RowBox[{"i", ",", "nFile"}], "}"}]}], "]"}]}], ";"}],
"\[IndentingNewLine]",
RowBox[{
RowBox[{"RList", "=",
RowBox[{"Px", " ",
RowBox[{"Map", "[",
RowBox[{
RowBox[{
RowBox[{"Take", "[",
RowBox[{"#", ",",
RowBox[{"Min", "@", "Lengths"}]}], "]"}], "&"}], ",", "RList"}],
"]"}]}]}], ";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"zList", "=",
RowBox[{"Range", "[",
RowBox[{"0.5", ",",
RowBox[{
RowBox[{"Min", "@", "Lengths"}], " ", "zStep"}], ",", "zStep"}],
"]"}]}], ";"}]}]}]], "Input",
CellChangeTimes->{{3.897050146038492*^9, 3.897050149138932*^9}, {
3.8970502587302217`*^9, 3.897050342524042*^9}, {3.897050383190118*^9,
3.8970504562600727`*^9}, {3.897050502111178*^9, 3.897050558469019*^9}, {
3.897051985009411*^9, 3.897052018916128*^9}, {3.897052253654716*^9,
3.897052254862934*^9}, {3.897052389595187*^9, 3.897052443245496*^9}, {
3.89705276709101*^9, 3.897052854090671*^9}, 3.897052981172195*^9, {
3.897053039376954*^9, 3.8970530590975103`*^9}, {3.897053102484981*^9,
3.8970531081210823`*^9}, {3.89705316462803*^9, 3.897053214641295*^9}, {
3.8970824520182333`*^9, 3.897082484215201*^9}, {3.8971409263047943`*^9,
3.8971409429501343`*^9}, {3.897141171782823*^9, 3.897141171786645*^9}, {
3.897411630083494*^9, 3.8974116408326693`*^9}, {3.897411865143632*^9,
3.89741186719862*^9}, {3.897411948593055*^9, 3.897411950214559*^9}, {
3.897411983790441*^9, 3.8974120205551987`*^9}, {3.897418329951823*^9,
3.8974183299721117`*^9}, {3.897589860097665*^9, 3.897589860458984*^9}, {
3.897757900728861*^9, 3.897757903352355*^9}, {3.897758105329048*^9,
3.8977581056009903`*^9}, {3.897758152834296*^9, 3.897758208066103*^9}, {
3.897758340846999*^9, 3.897758375641246*^9}, 3.8981151023104773`*^9,
3.898115178419263*^9, {3.898128490392324*^9, 3.8981286365590887`*^9}, {
3.898129593721933*^9, 3.898129608005172*^9}, {3.898129699140024*^9,
3.898129700698819*^9}, {3.898129747866561*^9, 3.898129761462537*^9}, {
3.89812979588835*^9, 3.8981298418878403`*^9}, {3.898129928462591*^9,
3.8981299288632107`*^9}, {3.898130109912383*^9, 3.8981301184147*^9},
3.898130354270438*^9, {3.89813038686121*^9, 3.898130430251863*^9},
3.898192662148677*^9, 3.8981927061640463`*^9, {3.898261941050212*^9,
3.898261958347597*^9}},ExpressionUUID->"d952e387-8d70-457a-9300-\
cda09be1247d"],
Cell[BoxData[
RowBox[{
RowBox[{"(*", "Calibration", "*)"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"zRList", "=",
RowBox[{"Table", "[",
RowBox[{
RowBox[{"DeleteCases", "[",
RowBox[{
RowBox[{"Transpose", "[",
RowBox[{"{",
RowBox[{"zList", ",",
RowBox[{"RList", "[",
RowBox[{"[", "i", "]"}], "]"}]}], "}"}], "]"}], ",",
RowBox[{"{",
RowBox[{"_", ",", "0."}], "}"}]}], "]"}], ",",
RowBox[{"{",
RowBox[{"i", ",", "nFile"}], "}"}]}], "]"}]}], ";"}]}]], "Input",
CellChangeTimes->{3.898192611647587*^9,
3.898192662151063*^9},ExpressionUUID->"21d3ddde-1d0d-4f0c-b865-\
b75bb6255adb"],
Cell[BoxData[
RowBox[{
RowBox[{"(*",
RowBox[{"Calibration", " ", "Fits"}], "*)"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"zRFits", "=",
RowBox[{"Table", "[",
RowBox[{
RowBox[{"LinearModelFit", "[",
RowBox[{
RowBox[{"zRList", "[",
RowBox[{"[", "i", "]"}], "]"}], ",",
RowBox[{"{", "x", "}"}], ",", "x"}], "]"}], ",",
RowBox[{"{",
RowBox[{"i", ",", "nFile"}], "}"}]}], "]"}]}], ";"}],
"\[IndentingNewLine]",
RowBox[{
RowBox[{"RMeanList", "=",
RowBox[{"Mean", "/@",
RowBox[{"Transpose", "[",
RowBox[{"Table", "[",
RowBox[{
RowBox[{"Table", "[",
RowBox[{
RowBox[{
RowBox[{"zRFits", "[",
RowBox[{"[", "j", "]"}], "]"}], "[",
RowBox[{"zList", "[",
RowBox[{"[", "i", "]"}], "]"}], "]"}], ",",
RowBox[{"{",
RowBox[{"i", ",",
RowBox[{"Length", "@", "zList"}]}], "}"}]}], "]"}], ",",
RowBox[{"{",
RowBox[{"j", ",", "nFile"}], "}"}]}], "]"}], "]"}]}]}], ";"}],
"\[IndentingNewLine]",
RowBox[{
RowBox[{"\[Sigma]MeanList", "=",
RowBox[{"StandardDeviation", "/@",
RowBox[{"Transpose", "[",
RowBox[{"Table", "[",
RowBox[{
RowBox[{"Table", "[",
RowBox[{
RowBox[{
RowBox[{"zRFits", "[",
RowBox[{"[", "j", "]"}], "]"}], "[",
RowBox[{"zList", "[",
RowBox[{"[", "i", "]"}], "]"}], "]"}], ",",
RowBox[{"{",
RowBox[{"i", ",",
RowBox[{"Length", "@", "zList"}]}], "}"}]}], "]"}], ",",
RowBox[{"{",
RowBox[{"j", ",", "nFile"}], "}"}]}], "]"}], "]"}]}]}], ";"}],
"\[IndentingNewLine]",
RowBox[{
RowBox[{"zRMeanList", "=",
RowBox[{"Transpose", "[",
RowBox[{"{",
RowBox[{"zList", ",", "RMeanList"}], "}"}], "]"}]}], ";"}],
"\[IndentingNewLine]",
RowBox[{
RowBox[{"zRFit", "=",
RowBox[{"LinearModelFit", "[",
RowBox[{"zRMeanList", ",",
RowBox[{"{", "x", "}"}], ",", "x", ",",
RowBox[{"Weights", "\[Rule]",
RowBox[{"1", "/",
SuperscriptBox["\[Sigma]MeanList", "2"]}]}]}], "]"}]}],
";"}]}]}]], "Input",
CellChangeTimes->{{3.897053144269908*^9, 3.8970531457048683`*^9}, {
3.897053233174429*^9, 3.8970532637809553`*^9}, {3.897053378490964*^9,
3.897053387852062*^9}, {3.8970535871207647`*^9, 3.897053636936788*^9}, {
3.8970547971502333`*^9, 3.89705481447606*^9}, 3.897054872799739*^9,
3.897055239209627*^9, {3.897055324930314*^9, 3.8970553286059637`*^9}, {
3.897055463531629*^9, 3.8970554741621647`*^9}, {3.897055523470275*^9,
3.8970556161394672`*^9}, {3.897057641532015*^9, 3.897057650768716*^9}, {
3.897074316853888*^9, 3.897074324613974*^9}, {3.8970806829190702`*^9,
3.897080700844604*^9}, {3.897080752248378*^9, 3.897080753404572*^9}, {
3.897080804796321*^9, 3.897080824417015*^9}, {3.897080863990787*^9,
3.8970809295281677`*^9}, {3.897081026396469*^9, 3.89708110604414*^9},
3.897140520387413*^9, 3.897140962144318*^9, {3.897412243231524*^9,
3.8974122460466423`*^9}, {3.897412496272784*^9, 3.897412542788863*^9}, {
3.897412591754882*^9, 3.897412618565827*^9}, {3.897412723261599*^9,
3.897412771976207*^9}, {3.897413033628065*^9, 3.897413035824667*^9}, {
3.897413071979224*^9, 3.89741328667566*^9}, {3.897414220251145*^9,
3.897414267501617*^9}, {3.8974147803698473`*^9, 3.8974147815328503`*^9}, {
3.897414844017424*^9, 3.897414855523127*^9}, {3.897415153455907*^9,
3.897415155484433*^9}, 3.897415201912632*^9, 3.897415262528707*^9, {
3.897415307845449*^9, 3.89741534086025*^9}, {3.8974157124351807`*^9,
3.8974157785209513`*^9}, {3.8974165454396143`*^9, 3.897416590619484*^9}, {
3.897416664679603*^9, 3.8974166715825863`*^9}, 3.897416716294858*^9, {
3.897417164039925*^9, 3.897417166434363*^9}, {3.897417940869314*^9,
3.897417942668434*^9}, 3.8974180577531357`*^9, {3.897418215370502*^9,
3.897418349697322*^9}, {3.897418414107175*^9, 3.897418496984838*^9}, {
3.897418827562181*^9, 3.897418849612068*^9}, {3.897419070935704*^9,
3.8974190946944933`*^9}, {3.897419274461918*^9, 3.897419309183927*^9}, {
3.897590146739924*^9, 3.89759015423279*^9}, {3.897590225179058*^9,
3.897590263534449*^9}, {3.8975902999539413`*^9, 3.897590313370121*^9}, {
3.897590380023155*^9, 3.897590428860283*^9}, {3.897591601758091*^9,
3.897591610739068*^9}, {3.8975916597979317`*^9, 3.897591663500733*^9}, {
3.89759170067976*^9, 3.897591715516039*^9}, {3.8975918963849382`*^9,
3.8975919376514587`*^9}, {3.897591996518497*^9, 3.897592017850913*^9}, {
3.897592186388232*^9, 3.897592196724247*^9}, {3.8975922510947866`*^9,
3.897592278876278*^9}, {3.8977399180287437`*^9, 3.897739951394547*^9}, {
3.898107885123914*^9, 3.898107886559214*^9}, {3.8981085955289507`*^9,
3.8981086327631702`*^9}, {3.89810867743266*^9, 3.898108701409216*^9}, {
3.8981087425674257`*^9, 3.898108749290863*^9}, {3.89811482212122*^9,
3.898114845433607*^9}, {3.898115436692141*^9, 3.898115480963622*^9}, {
3.898115605507392*^9, 3.8981156093434353`*^9}, {3.898115756147991*^9,
3.898115762320733*^9}, {3.898116035185511*^9, 3.898116035291677*^9}, {
3.898116146693014*^9, 3.898116236334961*^9}, {3.8981310451656017`*^9,
3.8981310738646*^9}},ExpressionUUID->"118d8910-d13d-4b9b-9708-\
a016b61b0a78"],
Cell[BoxData[
RowBox[{
RowBox[{"(*",
RowBox[{"Degrees", " ", "of", " ", "Freedom"}], "*)"}],
"\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"\[Nu]", "=",
RowBox[{
RowBox[{"zRFit", "[", "\"\<ANOVATableDegreesOfFreedom\>\"", "]"}], "[",
RowBox[{"[", "2", "]"}], "]"}]}], ";"}], "\[IndentingNewLine]",
RowBox[{"(*",
RowBox[{"Reduced", " ",
SuperscriptBox["\[Chi]", "2"]}], "*)"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"\[Chi]2\[Nu]", "=",
RowBox[{
RowBox[{"Total", "[",
SuperscriptBox[
RowBox[{"zRFit", "[", "\"\<StandardizedResiduals\>\"", "]"}], "2"],
"]"}], "/", "\[Nu]"}]}], ";"}], "\[IndentingNewLine]",
RowBox[{"(*", "Probability", "*)"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"P", "=",
RowBox[{"SurvivalFunction", "[",
RowBox[{
RowBox[{"ChiSquareDistribution", "[", "\[Nu]", "]"}], ",",
RowBox[{"\[Chi]2\[Nu]", " ", "\[Nu]"}]}], "]"}]}], ";"}],
"\[IndentingNewLine]",
RowBox[{"(*",
RowBox[{"Autocorrelation", " ", "Test"}], "*)"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"d", "=",
RowBox[{
RowBox[{"Total", "[",
SuperscriptBox[
RowBox[{"Differences", "[",
RowBox[{"zRFit", "[", "\"\<StandardizedResiduals\>\"", "]"}], "]"}],
"2"], "]"}], "/",
RowBox[{"Total", "[",
SuperscriptBox[
RowBox[{"zRFit", "[", "\"\<StandardizedResiduals\>\"", "]"}], "2"],
"]"}]}]}], ";"}]}]}]], "Input",
CellChangeTimes->{{3.897418527823969*^9, 3.8974185278322372`*^9}, {
3.89774035500245*^9, 3.897740366257155*^9}, {3.8977404643555937`*^9,
3.8977404654605227`*^9}, {3.8980933200780354`*^9, 3.898093320275874*^9}, {
3.898093387472559*^9, 3.898093398085627*^9}, {3.8981187500893106`*^9,
3.898118769697132*^9}},ExpressionUUID->"badee4e4-887b-4eca-bed6-\
3158d1555b71"]
}, Open ]],
Cell[CellGroupData[{
Cell["Print Results", "Subsubsection",
CellChangeTimes->{{3.89707440099155*^9,
3.897074404777425*^9}},ExpressionUUID->"25458495-adf9-409c-ad2a-\
d426bccebb5c"],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{
RowBox[{"(*",
RowBox[{"Print", " ", "Results"}], "*)"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Print", "[", "]"}], "\[IndentingNewLine]",
RowBox[{"Print", "[",
RowBox[{"Style", "[",
RowBox[{"\"\<Statistical Parameters\>\"", ",", "Underlined"}], "]"}],
"]"}], "\[IndentingNewLine]",
RowBox[{"Print", "[",
RowBox[{"\"\<\!\(\*SuperscriptBox[\(R\), \(2\)]\) = \>\"", ",", " ",
RowBox[{"SetPrecision", "[",
RowBox[{
RowBox[{"zRFit", "[", "\"\<RSquared\>\"", "]"}], ",", "4"}], "]"}]}],
"]"}], "\[IndentingNewLine]",
RowBox[{"Print", "[",
RowBox[{"\"\<\[Nu] = \>\"", ",", " ",
RowBox[{"SetPrecision", "[",
RowBox[{"\[Nu]", ",", "4"}], "]"}]}], "]"}], "\[IndentingNewLine]",
RowBox[{"Print", "[",
RowBox[{
"\"\<\!\(\*SuperscriptBox[SubscriptBox[\(\[Chi]\), \(\[Nu]\)], \(2\)]\) = \
\>\"", ",", " ",
RowBox[{"SetPrecision", "[",
RowBox[{"\[Chi]2\[Nu]", ",", "4"}], "]"}]}], "]"}],
"\[IndentingNewLine]",
RowBox[{"Print", "[",
RowBox[{
"\"\<P(\!\(\*SuperscriptBox[SubscriptBox[\(\[Chi]\), \(\[Nu]\)], \
\(2\)]\);\[Nu]) = \>\"", ",", " ",
RowBox[{"SetPrecision", "[",
RowBox[{"P", ",", "4"}], "]"}]}], "]"}], "\[IndentingNewLine]",
RowBox[{"Print", "[",
RowBox[{"\"\<D = \>\"", ",", " ",
RowBox[{"SetPrecision", "[",
RowBox[{"d", ",", "4"}], "]"}]}], "]"}], "\[IndentingNewLine]",
RowBox[{"Print", "[",
RowBox[{"zRFit", "[", "\"\<ParameterTable\>\"", "]"}], "]"}],
"\[IndentingNewLine]",
RowBox[{"Print", "[", "]"}], "\[IndentingNewLine]",
RowBox[{"(*",
RowBox[{"Fit", " ", "Plot"}], "*)"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"zRMeanList\[Sigma]", "=",
RowBox[{"MapAt", "[",
RowBox[{"ErrorBar", ",",
RowBox[{"Transpose", "[",
RowBox[{"{",
RowBox[{"zRMeanList", ",", "\[Sigma]MeanList"}], "}"}], "]"}], ",",
RowBox[{"{",
RowBox[{"All", ",", "2"}], "}"}]}], "]"}]}], ";"}],
"\[IndentingNewLine]",
RowBox[{"plot", "=",
RowBox[{"Legended", "[",
RowBox[{
RowBox[{"Show", "[", "\[IndentingNewLine]",
RowBox[{
RowBox[{"ErrorListPlot", "[", "zRMeanList\[Sigma]", "]"}], ",",
"\[IndentingNewLine]",
RowBox[{"Plot", "[",
RowBox[{
RowBox[{"zRFit", "[", "x", "]"}], ",",
RowBox[{"{",
RowBox[{"x", ",",
RowBox[{"First", "@", "zList"}], ",",
RowBox[{"Last", "@", "zList"}]}], "}"}], ",",
RowBox[{"PlotStyle", "\[Rule]",
RowBox[{"{",
RowBox[{"Red", ",", "Dashed"}], "}"}]}]}], "]"}], ",",
"\[IndentingNewLine]",
RowBox[{"Frame", "\[Rule]", "True"}], ",", "\[IndentingNewLine]",
RowBox[{"FrameLabel", "\[Rule]",
RowBox[{"{",
RowBox[{"None", ",", "\"\<R (\[Mu]m)\>\""}], "}"}]}], ",",
"\[IndentingNewLine]",
RowBox[{"PlotLabel", "\[Rule]", "\"\<Calibration\>\""}], ",",
"\[IndentingNewLine]",
RowBox[{"PlotRange", "\[Rule]",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"Min", "[",
RowBox[{"First", "/@", "zRMeanList"}], "]"}], ",",
RowBox[{"Max", "[",
RowBox[{"First", "/@", "zRMeanList"}], "]"}]}], "}"}], ",",
RowBox[{"{",
RowBox[{
RowBox[{"Min", "@",
RowBox[{"DeleteCases", "[",
RowBox[{"RMeanList", ",", "0."}], "]"}]}], ",",
RowBox[{"Max", "@", "RMeanList"}]}], "}"}]}], "}"}]}]}], "]"}],
",", "\[IndentingNewLine]",
RowBox[{"Placed", "[",
RowBox[{
RowBox[{"LineLegend", "[",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{
RowBox[{"ColorData", "[", "97", "]"}], "[", "1", "]"}], ",",
RowBox[{"{",
RowBox[{"Red", ",", "Dashed"}], "}"}]}], "}"}], ",",
RowBox[{"{",
RowBox[{"\"\<Dataset\>\"", ",", "\"\<BestFit\>\""}], "}"}], ",",
RowBox[{"LegendFunction", "->", "Panel"}]}], "]"}], ",",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{"0.05", ",", "0.7"}], "}"}], ",",
RowBox[{"{",
RowBox[{"0", ",", "0"}], "}"}]}], "}"}]}], "]"}]}], "]"}]}],
"\[IndentingNewLine]",
RowBox[{"(*",
RowBox[{"Residuals", " ", "Plot"}], "*)"}], "\[IndentingNewLine]",
RowBox[{"ResPlot", "=",
RowBox[{"ListLinePlot", "[",
RowBox[{
RowBox[{"Transpose", "[",
RowBox[{"{",
RowBox[{
RowBox[{"First", "/@", "zRMeanList"}], ",",
RowBox[{"zRFit", "[", "\"\<StandardizedResiduals\>\"", "]"}]}],
"}"}], "]"}], ",", " ", "\[IndentingNewLine]",
RowBox[{"AspectRatio", "\[Rule]",
RowBox[{"1", "/", "5"}]}], ",", "\[IndentingNewLine]",
RowBox[{"Frame", "\[Rule]", "True"}], ",", "\[IndentingNewLine]",
RowBox[{"Filling", "\[Rule]", "Axis"}], ",", "\[IndentingNewLine]",
RowBox[{"FrameLabel", "\[Rule]",
RowBox[{"{",
RowBox[{"\"\<z (\[Mu]m)\>\"", ",", "\"\<Residuals\>\""}], "}"}]}],
",", "\[IndentingNewLine]",
RowBox[{"PlotRange", "\[Rule]",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"Min", "[",
RowBox[{"First", "/@", "zRMeanList"}], "]"}], ",",
RowBox[{"Max", "[",
RowBox[{"First", "/@", "zRMeanList"}], "]"}]}], "}"}], ",",
"Automatic"}], "}"}]}]}], "]"}]}]}]}]], "Input",
CellChangeTimes->{{3.89705489186969*^9, 3.897054901905694*^9}, {
3.897054980468507*^9, 3.8970550037599277`*^9}, {3.8970551245187817`*^9,
3.897055126379683*^9}, {3.8970556541000147`*^9, 3.897055659903884*^9}, {
3.8970557200574827`*^9, 3.8970557387645817`*^9}, {3.897055821087817*^9,
3.897055832817995*^9}, {3.897055880364205*^9, 3.897055889570777*^9}, {
3.8970560084302177`*^9, 3.8970560832787933`*^9}, {3.8970562672109833`*^9,
3.897056320591157*^9}, {3.89705635668176*^9, 3.897056437229364*^9}, {
3.8970564973591347`*^9, 3.897056567801815*^9}, {3.897056706671378*^9,
3.8970567735802402`*^9}, {3.8970568643387117`*^9, 3.897056962228826*^9}, {
3.897057162336144*^9, 3.8970572126854973`*^9}, {3.897057306103808*^9,
3.8970573361236753`*^9}, {3.897057460731963*^9, 3.897057482564755*^9}, {
3.897057556109251*^9, 3.897057602895411*^9}, {3.897074365821213*^9,
3.897074381450069*^9}, {3.897074435000045*^9, 3.897074471693438*^9}, {
3.8970745311577883`*^9, 3.897074533146134*^9}, {3.8970745891397753`*^9,
3.897074589381736*^9}, {3.897076111556308*^9, 3.897076145529462*^9}, {
3.897076249699292*^9, 3.8970762545001707`*^9}, {3.897076304731386*^9,
3.897076363789113*^9}, {3.897076437745552*^9, 3.8970764462784777`*^9}, {
3.897076585657364*^9, 3.897076611070167*^9}, {3.897076980946991*^9,
3.897077162242497*^9}, 3.897077309872497*^9, {3.897414330035624*^9,
3.8974143370390053`*^9}, {3.89741479061795*^9, 3.897414790844017*^9}, {
3.897414870122733*^9, 3.8974149251048307`*^9}, {3.897414957225521*^9,
3.897414961634975*^9}, {3.897415015743845*^9, 3.897415024540285*^9}, {
3.897415057975647*^9, 3.897415063362731*^9}, {3.897415112954666*^9,
3.897415114484638*^9}, {3.897418330012623*^9, 3.897418330070643*^9}, {
3.8974185278396683`*^9, 3.897418527851295*^9}, {3.897418570746874*^9,
3.897418607278789*^9}, {3.897418649410537*^9, 3.8974187040275784`*^9}, {
3.897418821330752*^9, 3.897418821996269*^9}, 3.897418951313223*^9, {
3.897419340764542*^9, 3.8974194598481092`*^9}, {3.898093342170403*^9,
3.898093342456005*^9}, {3.898131155988915*^9, 3.8981311662011127`*^9},
3.8981312083966503`*^9, {3.8981316409699173`*^9, 3.898131646304962*^9}, {
3.898131727713625*^9, 3.89813177331034*^9}, {3.89813187263575*^9,
3.898131878725471*^9}, {3.898131931161325*^9, 3.898131934120285*^9}, {
3.898192455658874*^9, 3.8981924615531187`*^9}, {3.8981925032053547`*^9,
3.898192513742675*^9}, 3.898192565193616*^9, 3.898192662161562*^9,
3.898192718450633*^9, {3.898261391318375*^9, 3.898261398434943*^9}, {
3.898261490194764*^9, 3.898261498299573*^9}, {3.898261976930544*^9,
3.8982620351303*^9}, {3.898262260408361*^9, 3.898262362623143*^9}, {
3.898262419803975*^9, 3.898262559657558*^9}, {3.898262824746579*^9,
3.898262901321473*^9}, {3.8982629624252453`*^9, 3.898262970873177*^9},
3.8982630863974257`*^9, {3.898263169864142*^9, 3.898263183486265*^9}, {
3.898263294798265*^9, 3.898263309565727*^9}, {3.898263388319229*^9,
3.898263409893342*^9}, {3.898263441641746*^9, 3.898263550712381*^9}, {
3.898263585166692*^9, 3.898263642156149*^9}, 3.89826369371316*^9, {
3.8982723928317003`*^9, 3.898272398532227*^9}, {3.898272580089971*^9,
3.898272581374444*^9}, {3.898272626340077*^9, 3.8982726286608763`*^9}, {
3.8982727072477837`*^9, 3.8982727081379957`*^9}, {3.898354773495696*^9,
3.8983548177958717`*^9}, {3.898354852366912*^9, 3.898354867336375*^9}, {
3.8983549047225037`*^9,
3.8983549054422083`*^9}},ExpressionUUID->"025c5697-27a1-47b0-8c63-\
ea50df8730d1"],
Cell[CellGroupData[{
Cell[BoxData["\<\"\"\>"], "Print",
CellChangeTimes->{
3.898192776284973*^9, 3.89819396866855*^9, {3.8981940702729197`*^9,
3.8981940973118477`*^9}, 3.898194288851715*^9, 3.8981943666606092`*^9, {
3.89819446080826*^9, 3.898194483550201*^9}, 3.89826136135879*^9,
3.898261399245029*^9, 3.8982615259382353`*^9, {3.8982620016825457`*^9,
3.898262036969986*^9}, {3.898262307216998*^9, 3.898262328842853*^9},
3.898262363565793*^9, 3.898262440162705*^9, {3.8982624726694803`*^9,
3.898262524230679*^9}, 3.898262560052281*^9, {3.89826288118497*^9,
3.89826290170049*^9}, 3.8982629714233217`*^9, 3.8982630867932043`*^9,
3.898263186178502*^9, {3.898263295320239*^9, 3.898263310315226*^9},
3.89826341020076*^9, 3.898263501167222*^9, {3.898263589072443*^9,
3.898263643397456*^9}, 3.8982636949189367`*^9, 3.898263759169777*^9,
3.8982639309179792`*^9, 3.8982650203654423`*^9, 3.898270865569737*^9,
3.898270926507717*^9, {3.898272399540291*^9, 3.8982724259205627`*^9},
3.898272583126238*^9, {3.898272628997323*^9, 3.898272639092102*^9},
3.898272708561779*^9, 3.898354869044565*^9,
3.898354909419202*^9},ExpressionUUID->"dea66a17-baef-4e64-b8ed-\
09079189f9bf"],
Cell[BoxData[
StyleBox["\<\"Statistical Parameters\"\>",
StripOnInput->False,
FontVariations->{"Underline"->True}]], "Print",
CellChangeTimes->{
3.898192776284973*^9, 3.89819396866855*^9, {3.8981940702729197`*^9,
3.8981940973118477`*^9}, 3.898194288851715*^9, 3.8981943666606092`*^9, {
3.89819446080826*^9, 3.898194483550201*^9}, 3.89826136135879*^9,
3.898261399245029*^9, 3.8982615259382353`*^9, {3.8982620016825457`*^9,
3.898262036969986*^9}, {3.898262307216998*^9, 3.898262328842853*^9},
3.898262363565793*^9, 3.898262440162705*^9, {3.8982624726694803`*^9,
3.898262524230679*^9}, 3.898262560052281*^9, {3.89826288118497*^9,
3.89826290170049*^9}, 3.8982629714233217`*^9, 3.8982630867932043`*^9,
3.898263186178502*^9, {3.898263295320239*^9, 3.898263310315226*^9},
3.89826341020076*^9, 3.898263501167222*^9, {3.898263589072443*^9,
3.898263643397456*^9}, 3.8982636949189367`*^9, 3.898263759169777*^9,
3.8982639309179792`*^9, 3.8982650203654423`*^9, 3.898270865569737*^9,
3.898270926507717*^9, {3.898272399540291*^9, 3.8982724259205627`*^9},
3.898272583126238*^9, {3.898272628997323*^9, 3.898272639092102*^9},
3.898272708561779*^9, 3.898354869044565*^9,
3.898354909420781*^9},ExpressionUUID->"03369dd5-d01c-462b-be52-\
f3a2a66292ba"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"\\!\\(\\*SuperscriptBox[\\(R\\), \\(2\\)]\\) = \"\>",
"\[InvisibleSpace]", "1.`4."}],
SequenceForm["\!\(\*SuperscriptBox[\(R\), \(2\)]\) = ", 1.`4.],
Editable->False]], "Print",
CellChangeTimes->{
3.898192776284973*^9, 3.89819396866855*^9, {3.8981940702729197`*^9,
3.8981940973118477`*^9}, 3.898194288851715*^9, 3.8981943666606092`*^9, {
3.89819446080826*^9, 3.898194483550201*^9}, 3.89826136135879*^9,
3.898261399245029*^9, 3.8982615259382353`*^9, {3.8982620016825457`*^9,
3.898262036969986*^9}, {3.898262307216998*^9, 3.898262328842853*^9},
3.898262363565793*^9, 3.898262440162705*^9, {3.8982624726694803`*^9,
3.898262524230679*^9}, 3.898262560052281*^9, {3.89826288118497*^9,
3.89826290170049*^9}, 3.8982629714233217`*^9, 3.8982630867932043`*^9,
3.898263186178502*^9, {3.898263295320239*^9, 3.898263310315226*^9},
3.89826341020076*^9, 3.898263501167222*^9, {3.898263589072443*^9,
3.898263643397456*^9}, 3.8982636949189367`*^9, 3.898263759169777*^9,
3.8982639309179792`*^9, 3.8982650203654423`*^9, 3.898270865569737*^9,
3.898270926507717*^9, {3.898272399540291*^9, 3.8982724259205627`*^9},
3.898272583126238*^9, {3.898272628997323*^9, 3.898272639092102*^9},
3.898272708561779*^9, 3.898354869044565*^9,
3.898354909422443*^9},ExpressionUUID->"e0c7176c-3245-4da5-af4a-\
14f518bc8114"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"\[Nu] = \"\>", "\[InvisibleSpace]", "16.`4."}],
SequenceForm["\[Nu] = ", 16.`4.],
Editable->False]], "Print",
CellChangeTimes->{
3.898192776284973*^9, 3.89819396866855*^9, {3.8981940702729197`*^9,
3.8981940973118477`*^9}, 3.898194288851715*^9, 3.8981943666606092`*^9, {
3.89819446080826*^9, 3.898194483550201*^9}, 3.89826136135879*^9,
3.898261399245029*^9, 3.8982615259382353`*^9, {3.8982620016825457`*^9,
3.898262036969986*^9}, {3.898262307216998*^9, 3.898262328842853*^9},
3.898262363565793*^9, 3.898262440162705*^9, {3.8982624726694803`*^9,
3.898262524230679*^9}, 3.898262560052281*^9, {3.89826288118497*^9,
3.89826290170049*^9}, 3.8982629714233217`*^9, 3.8982630867932043`*^9,
3.898263186178502*^9, {3.898263295320239*^9, 3.898263310315226*^9},
3.89826341020076*^9, 3.898263501167222*^9, {3.898263589072443*^9,
3.898263643397456*^9}, 3.8982636949189367`*^9, 3.898263759169777*^9,
3.8982639309179792`*^9, 3.8982650203654423`*^9, 3.898270865569737*^9,
3.898270926507717*^9, {3.898272399540291*^9, 3.8982724259205627`*^9},
3.898272583126238*^9, {3.898272628997323*^9, 3.898272639092102*^9},
3.898272708561779*^9, 3.898354869044565*^9,
3.898354909424494*^9},ExpressionUUID->"b5e111fd-b57a-4c8a-82d5-\
f6737a82bb69"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"\\!\\(\\*SuperscriptBox[SubscriptBox[\\(\[Chi]\\), \
\\(\[Nu]\\)], \\(2\\)]\\) = \"\>", "\[InvisibleSpace]",
"1.1029855487044706308`4."}],
SequenceForm[
"\!\(\*SuperscriptBox[SubscriptBox[\(\[Chi]\), \(\[Nu]\)], \(2\)]\) = ",
1.1029855487044706308`4.],
Editable->False]], "Print",
CellChangeTimes->{
3.898192776284973*^9, 3.89819396866855*^9, {3.8981940702729197`*^9,
3.8981940973118477`*^9}, 3.898194288851715*^9, 3.8981943666606092`*^9, {
3.89819446080826*^9, 3.898194483550201*^9}, 3.89826136135879*^9,
3.898261399245029*^9, 3.8982615259382353`*^9, {3.8982620016825457`*^9,
3.898262036969986*^9}, {3.898262307216998*^9, 3.898262328842853*^9},
3.898262363565793*^9, 3.898262440162705*^9, {3.8982624726694803`*^9,
3.898262524230679*^9}, 3.898262560052281*^9, {3.89826288118497*^9,
3.89826290170049*^9}, 3.8982629714233217`*^9, 3.8982630867932043`*^9,
3.898263186178502*^9, {3.898263295320239*^9, 3.898263310315226*^9},
3.89826341020076*^9, 3.898263501167222*^9, {3.898263589072443*^9,
3.898263643397456*^9}, 3.8982636949189367`*^9, 3.898263759169777*^9,
3.8982639309179792`*^9, 3.8982650203654423`*^9, 3.898270865569737*^9,
3.898270926507717*^9, {3.898272399540291*^9, 3.8982724259205627`*^9},
3.898272583126238*^9, {3.898272628997323*^9, 3.898272639092102*^9},
3.898272708561779*^9, 3.898354869044565*^9,
3.898354909425992*^9},ExpressionUUID->"f48ae3dd-19e3-4b6c-8fb1-\
16cae16405d0"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"P(\\!\\(\\*SuperscriptBox[SubscriptBox[\\(\[Chi]\\), \
\\(\[Nu]\\)], \\(2\\)]\\);\[Nu]) = \"\>", "\[InvisibleSpace]",
"0.3449222973383543334`4."}],
SequenceForm[
"P(\!\(\*SuperscriptBox[SubscriptBox[\(\[Chi]\), \(\[Nu]\)], \
\(2\)]\);\[Nu]) = ", 0.3449222973383543334`4.],
Editable->False]], "Print",
CellChangeTimes->{
3.898192776284973*^9, 3.89819396866855*^9, {3.8981940702729197`*^9,
3.8981940973118477`*^9}, 3.898194288851715*^9, 3.8981943666606092`*^9, {
3.89819446080826*^9, 3.898194483550201*^9}, 3.89826136135879*^9,
3.898261399245029*^9, 3.8982615259382353`*^9, {3.8982620016825457`*^9,
3.898262036969986*^9}, {3.898262307216998*^9, 3.898262328842853*^9},
3.898262363565793*^9, 3.898262440162705*^9, {3.8982624726694803`*^9,
3.898262524230679*^9}, 3.898262560052281*^9, {3.89826288118497*^9,
3.89826290170049*^9}, 3.8982629714233217`*^9, 3.8982630867932043`*^9,
3.898263186178502*^9, {3.898263295320239*^9, 3.898263310315226*^9},
3.89826341020076*^9, 3.898263501167222*^9, {3.898263589072443*^9,
3.898263643397456*^9}, 3.8982636949189367`*^9, 3.898263759169777*^9,
3.8982639309179792`*^9, 3.8982650203654423`*^9, 3.898270865569737*^9,
3.898270926507717*^9, {3.898272399540291*^9, 3.8982724259205627`*^9},
3.898272583126238*^9, {3.898272628997323*^9, 3.898272639092102*^9},
3.898272708561779*^9, 3.898354869044565*^9,
3.8983549094277363`*^9},ExpressionUUID->"5444a83f-e581-4bb6-9a12-\
4f05461547ed"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"D = \"\>", "\[InvisibleSpace]", "0.9289760604537729005`4."}],
SequenceForm["D = ", 0.9289760604537729005`4.],
Editable->False]], "Print",
CellChangeTimes->{
3.898192776284973*^9, 3.89819396866855*^9, {3.8981940702729197`*^9,
3.8981940973118477`*^9}, 3.898194288851715*^9, 3.8981943666606092`*^9, {
3.89819446080826*^9, 3.898194483550201*^9}, 3.89826136135879*^9,
3.898261399245029*^9, 3.8982615259382353`*^9, {3.8982620016825457`*^9,
3.898262036969986*^9}, {3.898262307216998*^9, 3.898262328842853*^9},
3.898262363565793*^9, 3.898262440162705*^9, {3.8982624726694803`*^9,
3.898262524230679*^9}, 3.898262560052281*^9, {3.89826288118497*^9,
3.89826290170049*^9}, 3.8982629714233217`*^9, 3.8982630867932043`*^9,
3.898263186178502*^9, {3.898263295320239*^9, 3.898263310315226*^9},
3.89826341020076*^9, 3.898263501167222*^9, {3.898263589072443*^9,
3.898263643397456*^9}, 3.8982636949189367`*^9, 3.898263759169777*^9,
3.8982639309179792`*^9, 3.8982650203654423`*^9, 3.898270865569737*^9,
3.898270926507717*^9, {3.898272399540291*^9, 3.8982724259205627`*^9},
3.898272583126238*^9, {3.898272628997323*^9, 3.898272639092102*^9},
3.898272708561779*^9, 3.898354869044565*^9,
3.8983549094294577`*^9},ExpressionUUID->"4d0b31cc-9a7f-495e-9740-\
97e07d2cff2e"],
Cell[BoxData[
StyleBox[
TagBox[GridBox[{
{"\<\"\"\>", "\<\"Estimate\"\>", "\<\"Standard Error\"\>", "\<\"t\
\[Hyphen]Statistic\"\>", "\<\"P\[Hyphen]Value\"\>"},
{"1", "0.7197032275414714`", "4.486679798133517`*^-16",
"1.6040886800989718`*^15", "4.389393261922981`*^-235"},
{"x", "0.4682995636768325`", "1.0329262806176224`*^-16",
"4.533717192255191`*^15", "2.6472055429521275`*^-242"}
},
AutoDelete->False,
GridBoxAlignment->{"Columns" -> {{Left}}, "Rows" -> {{Automatic}}},
GridBoxDividers->{
"ColumnsIndexed" -> {2 -> GrayLevel[0.7]},
"RowsIndexed" -> {2 -> GrayLevel[0.7]}},
GridBoxItemSize->{"Columns" -> {{Automatic}}, "Rows" -> {{Automatic}}},
GridBoxSpacings->{
"ColumnsIndexed" -> {2 -> 1}, "RowsIndexed" -> {2 -> 0.75}}],
"Grid"], "DialogStyle",
StripOnInput->False]], "Print",
CellChangeTimes->{
3.898192776284973*^9, 3.89819396866855*^9, {3.8981940702729197`*^9,
3.8981940973118477`*^9}, 3.898194288851715*^9, 3.8981943666606092`*^9, {
3.89819446080826*^9, 3.898194483550201*^9}, 3.89826136135879*^9,
3.898261399245029*^9, 3.8982615259382353`*^9, {3.8982620016825457`*^9,
3.898262036969986*^9}, {3.898262307216998*^9, 3.898262328842853*^9},
3.898262363565793*^9, 3.898262440162705*^9, {3.8982624726694803`*^9,
3.898262524230679*^9}, 3.898262560052281*^9, {3.89826288118497*^9,
3.89826290170049*^9}, 3.8982629714233217`*^9, 3.8982630867932043`*^9,
3.898263186178502*^9, {3.898263295320239*^9, 3.898263310315226*^9},
3.89826341020076*^9, 3.898263501167222*^9, {3.898263589072443*^9,
3.898263643397456*^9}, 3.8982636949189367`*^9, 3.898263759169777*^9,
3.8982639309179792`*^9, 3.8982650203654423`*^9, 3.898270865569737*^9,
3.898270926507717*^9, {3.898272399540291*^9, 3.8982724259205627`*^9},
3.898272583126238*^9, {3.898272628997323*^9, 3.898272639092102*^9},
3.898272708561779*^9, 3.898354869044565*^9,
3.898354909431162*^9},ExpressionUUID->"82ca3168-1a5a-4bde-af5b-\
2d13c18e12c5"],
Cell[BoxData["\<\"\"\>"], "Print",
CellChangeTimes->{
3.898192776284973*^9, 3.89819396866855*^9, {3.8981940702729197`*^9,
3.8981940973118477`*^9}, 3.898194288851715*^9, 3.8981943666606092`*^9, {
3.89819446080826*^9, 3.898194483550201*^9}, 3.89826136135879*^9,
3.898261399245029*^9, 3.8982615259382353`*^9, {3.8982620016825457`*^9,
3.898262036969986*^9}, {3.898262307216998*^9, 3.898262328842853*^9},
3.898262363565793*^9, 3.898262440162705*^9, {3.8982624726694803`*^9,
3.898262524230679*^9}, 3.898262560052281*^9, {3.89826288118497*^9,
3.89826290170049*^9}, 3.8982629714233217`*^9, 3.8982630867932043`*^9,
3.898263186178502*^9, {3.898263295320239*^9, 3.898263310315226*^9},
3.89826341020076*^9, 3.898263501167222*^9, {3.898263589072443*^9,
3.898263643397456*^9}, 3.8982636949189367`*^9, 3.898263759169777*^9,
3.8982639309179792`*^9, 3.8982650203654423`*^9, 3.898270865569737*^9,
3.898270926507717*^9, {3.898272399540291*^9, 3.8982724259205627`*^9},
3.898272583126238*^9, {3.898272628997323*^9, 3.898272639092102*^9},
3.898272708561779*^9, 3.898354869044565*^9,
3.898354909433422*^9},ExpressionUUID->"0e9df8b8-d164-4c72-b89c-\
5b2784a4cbdc"]
}, Open ]],
Cell[BoxData[
TagBox[
GraphicsBox[{{{{}, {{{}, {
{RGBColor[0.368417, 0.506779, 0.709798], PointSize[
0.012833333333333334`], AbsoluteThickness[1.6],
PointBox[{{0.5, 0.9538530093798879}, {1., 1.1880027912183044`}, {
1.5, 1.4221525730567206`}, {2., 1.656302354895137}, {2.5,
1.8904521367335534`}, {3., 2.1246019185719702`}, {3.5,
2.358751700410386}, {4., 2.5929014822488026`}, {4.5,
2.827051264087219}, {5., 3.061201045925635}, {5.5,
3.2953508277640498`}, {6., 3.5295006096024655`}, {6.5,
3.7636503914408834`}, {7., 3.997800173279302}, {7.5,
4.231949955117715}, {8., 4.4660997369561315`}, {8.5,
4.700249518794549}, {9.,
4.934399300632964}}], {{
LineBox[{{0.5, 1.1279398177536535`}, {0.5, 0.7797662010061224}}],
LineBox[{
Offset[{1.5, 0}, {0.5, 1.1279398177536535`}],
Offset[{-1.5, 0}, {0.5, 1.1279398177536535`}]}],
LineBox[{
Offset[{1.5, 0}, {0.5, 0.7797662010061224}],
Offset[{-1.5, 0}, {0.5, 0.7797662010061224}]}]}, {
LineBox[{{1., 1.3528218020279377`}, {1., 1.0231837804086712`}}],
LineBox[{
Offset[{1.5, 0}, {1., 1.3528218020279377`}],
Offset[{-1.5, 0}, {1., 1.3528218020279377`}]}],
LineBox[{
Offset[{1.5, 0}, {1., 1.0231837804086712`}],
Offset[{-1.5, 0}, {1., 1.0231837804086712`}]}]}, {
LineBox[{{1.5, 1.5802480560463168`}, {1.5, 1.2640570900671244`}}],
LineBox[{
Offset[{1.5, 0}, {1.5, 1.5802480560463168`}],
Offset[{-1.5, 0}, {1.5, 1.5802480560463168`}]}],
LineBox[{
Offset[{1.5, 0}, {1.5, 1.2640570900671244`}],
Offset[{-1.5, 0}, {1.5, 1.2640570900671244`}]}]}, {
LineBox[{{2., 1.8105516437171838`}, {2., 1.5020530660730902`}}],
LineBox[{
Offset[{1.5, 0}, {2., 1.8105516437171838`}],
Offset[{-1.5, 0}, {2., 1.8105516437171838`}]}],
LineBox[{
Offset[{1.5, 0}, {2., 1.5020530660730902`}],
Offset[{-1.5, 0}, {2., 1.5020530660730902`}]}]}, {
LineBox[{{2.5, 2.0439490109865703`}, {2.5, 1.7369552624805364`}}],
LineBox[{
Offset[{1.5, 0}, {2.5, 2.0439490109865703`}],
Offset[{-1.5, 0}, {2.5, 2.0439490109865703`}]}],
LineBox[{
Offset[{1.5, 0}, {2.5, 1.7369552624805364`}],
Offset[{-1.5, 0}, {2.5, 1.7369552624805364`}]}]}, {
LineBox[{{3., 2.2804849633578983`}, {3., 1.9687188737860422`}}],
LineBox[{
Offset[{1.5, 0}, {3., 2.2804849633578983`}],
Offset[{-1.5, 0}, {3., 2.2804849633578983`}]}],
LineBox[{
Offset[{1.5, 0}, {3., 1.9687188737860422`}],
Offset[{-1.5, 0}, {3., 1.9687188737860422`}]}]}, {
LineBox[{{3.5, 2.520020243037157}, {3.5, 2.1974831577836147`}}],
LineBox[{
Offset[{1.5, 0}, {3.5, 2.520020243037157}],
Offset[{-1.5, 0}, {3.5, 2.520020243037157}]}],
LineBox[{
Offset[{1.5, 0}, {3.5, 2.1974831577836147`}],
Offset[{-1.5, 0}, {3.5, 2.1974831577836147`}]}]}, {
LineBox[{{4., 2.7622689760991266`}, {4., 2.4235339883984786`}}],
LineBox[{
Offset[{1.5, 0}, {4., 2.7622689760991266`}],
Offset[{-1.5, 0}, {4., 2.7622689760991266`}]}],
LineBox[{
Offset[{1.5, 0}, {4., 2.4235339883984786`}],
Offset[{-1.5, 0}, {4., 2.4235339883984786`}]}]}, {
LineBox[{{4.5, 3.0068648871758556`}, {4.5, 2.6472376409985827`}}],
LineBox[{
Offset[{1.5, 0}, {4.5, 3.0068648871758556`}],
Offset[{-1.5, 0}, {4.5, 3.0068648871758556`}]}],
LineBox[{
Offset[{1.5, 0}, {4.5, 2.6472376409985827`}],
Offset[{-1.5, 0}, {4.5, 2.6472376409985827`}]}]}, {
LineBox[{{5., 3.253425695922275}, {5., 2.868976395928995}}],
LineBox[{
Offset[{1.5, 0}, {5., 3.253425695922275}],
Offset[{-1.5, 0}, {5., 3.253425695922275}]}],
LineBox[{
Offset[{1.5, 0}, {5., 2.868976395928995}],
Offset[{-1.5, 0}, {5., 2.868976395928995}]}]}, {
LineBox[{{5.5, 3.5015969890067384`}, {5.5, 3.089104666521361}}],
LineBox[{
Offset[{1.5, 0}, {5.5, 3.5015969890067384`}],
Offset[{-1.5, 0}, {5.5, 3.5015969890067384`}]}],
LineBox[{
Offset[{1.5, 0}, {5.5, 3.089104666521361}],
Offset[{-1.5, 0}, {5.5, 3.089104666521361}]}]}, {
LineBox[{{6., 3.7510732341103346`}, {6., 3.3079279850945964`}}],
LineBox[{
Offset[{1.5, 0}, {6., 3.7510732341103346`}],
Offset[{-1.5, 0}, {6., 3.7510732341103346`}]}],
LineBox[{
Offset[{1.5, 0}, {6., 3.3079279850945964`}],
Offset[{-1.5, 0}, {6., 3.3079279850945964`}]}]}, {
LineBox[{{6.5, 4.001602409247439}, {6.5, 3.525698373634328}}],
LineBox[{
Offset[{1.5, 0}, {6.5, 4.001602409247439}],
Offset[{-1.5, 0}, {6.5, 4.001602409247439}]}],
LineBox[{
Offset[{1.5, 0}, {6.5, 3.525698373634328}],
Offset[{-1.5, 0}, {6.5, 3.525698373634328}]}]}, {
LineBox[{{7., 4.2529818410535825`}, {7., 3.7426185055050216`}}],