-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvb2.sas
2452 lines (1711 loc) · 76.4 KB
/
vb2.sas
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
DATA pred_result;
SET dataset_name;
If (petal_length) < (2.45) and not missing (petal_length) Then
var0 = 0.41652894;
Else
If (petal_width) < (0.6) and not missing (petal_width) Then
var0 = 0.257142842;
Else
var0 = -0.209508225;
If (petal_length) < (2.45) and not missing (petal_length) Then
var1 = 0.289331138;
Else
If (petal_width) < (0.6) and not missing (petal_width) Then
var1 = 0.211369321;
Else
var1 = -0.18690227;
If (petal_length) < (2.45) and not missing (petal_length) Then
var2 = 0.231908903;
Else
If (petal_width) < (0.6) and not missing (petal_width) Then
var2 = 0.176793814;
Else
var2 = -0.170180246;
If (petal_length) < (2.45) and not missing (petal_length) Then
var3 = 0.199418262;
Else
If (petal_width) < (0.6) and not missing (petal_width) Then
var3 = 0.15227066;
Else
var3 = -0.157188073;
If (petal_length) < (2.45) and not missing (petal_length) Then
var4 = 0.17847003;
Else
If (petal_width) < (0.6) and not missing (petal_width) Then
var4 = 0.133899882;
Else
var4 = -0.146191612;
If (petal_length) < (2.45) and not missing (petal_length) Then
var5 = 0.163556546;
Else
If (petal_width) < (0.6) and not missing (petal_width) Then
var5 = 0.121037848;
Else
If (sepal_length) < (15.800001) and not missing (sepal_length) Then
var5 = -0.150712818;
Else
If (sepal_width) < (6.600001) and not missing (sepal_width) Then
var5 = -0.114914298;
Else
var5 = -0.0125278207;
If (petal_length) < (2.45) and not missing (petal_length) Then
var6 = 0.151984125;
Else
If (petal_width) < (0.6) and not missing (petal_width) Then
var6 = 0.111083977;
Else
If (sepal_length) < (15.800001) and not missing (sepal_length) Then
var6 = -0.143814757;
Else
If (sepal_width) < (6.600001) and not missing (sepal_width) Then
var6 = -0.105590232;
Else
var6 = -0.0124585936;
If (petal_length) < (2.45) and not missing (petal_length) Then
var7 = 0.142283946;
Else
If (petal_width) < (0.6) and not missing (petal_width) Then
var7 = 0.102381364;
Else
If (sepal_length) < (15.800001) and not missing (sepal_length) Then
var7 = -0.137251794;
Else
If (sepal_width) < (6.600001) and not missing (sepal_width) Then
var7 = -0.0976087227;
Else
var7 = -0.0122977979;
If (petal_length) < (2.45) and not missing (petal_length) Then
var8 = 0.133623257;
Else
If (petal_width) < (1.05) and not missing (petal_width) Then
var8 = 0.0678052753;
Else
If (sepal_length) < (15.800001) and not missing (sepal_length) Then
var8 = -0.129999518;
Else
If (sepal_width) < (6.600001) and not missing (sepal_width) Then
var8 = -0.088720277;
Else
var8 = -0.0113113634;
If (petal_length) < (2.45) and not missing (petal_length) Then
var9 = 0.125528589;
Else
If (petal_width) < (1.05) and not missing (petal_width) Then
var9 = 0.062039014;
Else
If (sepal_length) < (15.800001) and not missing (sepal_length) Then
var9 = -0.123788334;
Else
If (sepal_width) < (6.600001) and not missing (sepal_width) Then
var9 = -0.0815188885;
Else
var9 = -0.00926173199;
If (petal_length) < (2.45) and not missing (petal_length) Then
var10 = 0.117761388;
Else
If (petal_width) < (1.05) and not missing (petal_width) Then
var10 = 0.0572772846;
Else
If (sepal_length) < (15.800001) and not missing (sepal_length) Then
var10 = -0.117445499;
Else
var10 = -0.0445702523;
If (petal_length) >= (2.45) and not missing (petal_length) Then
var11 = -0.113714062;
Else
If (sepal_length) < (11.600001) and not missing (sepal_length) Then
var11 = 0.111096039;
Else
If (petal_width) < (1.3499999) and not missing (petal_width) Then
var11 = 0.0389809757;
Else
var11 = -0.0267289262;
If (petal_width) >= (0.7) and not missing (petal_width) Then
var12 = -0.108021289;
Else
If (petal_length) < (2.7) and not missing (petal_length) Then
var12 = 0.104496792;
Else
var12 = -0.00124709716;
If (petal_length) >= (2.45) and not missing (petal_length) Then
var13 = -0.102783956;
Else
If (sepal_length) < (11.600001) and not missing (sepal_length) Then
var13 = 0.0986303315;
Else
If (sepal_width) >= (2.85) and not missing (sepal_width) Then
var13 = 0.0280537549;
Else
var13 = -0.0186156556;
If (petal_width) >= (0.7) and not missing (petal_width) Then
var14 = -0.0977657065;
Else
If (petal_length) < (2.7) and not missing (petal_length) Then
var14 = 0.0934355557;
Else
var14 = -0.000143057739;
If (petal_width) >= (0.7) and not missing (petal_width) Then
var15 = -0.0928244814;
Else
If (petal_length) < (2.7) and not missing (petal_length) Then
var15 = 0.08872848;
Else
var15 = -0.000119852841;
If (petal_length) >= (2.45) and not missing (petal_length) Then
var16 = -0.0879553854;
Else
If (sepal_length) < (11.600001) and not missing (sepal_length) Then
var16 = 0.0842235014;
Else
If (petal_width) < (2.4) and not missing (petal_width) Then
var16 = 0.0120193837;
Else
var16 = -0.00808206573;
If (petal_width) < (0.7) and not missing (petal_width) Then
var17 = 0.0822966844;
Else
If (sepal_width) < (7.600001) and not missing (sepal_width) Then
var17 = -0.082996659;
Else
If (petal_length) < (5.75) and not missing (petal_length) Then
var17 = 0.0109510925;
Else
var17 = -0.0094955489;
If (petal_length) >= (2.45) and not missing (petal_length) Then
var18 = -0.0798313692;
Else
If (sepal_length) < (11.600001) and not missing (sepal_length) Then
var18 = 0.0776047111;
Else
var18 = -0.000950112531;
If (petal_length) >= (1.8) and not missing (petal_length) Then
var19 = -0.0691121519;
Else
If (sepal_width) >= (2.95) and not missing (sepal_width) Then
var19 = 0.0488661937;
Else
var19 = 0.00860608369;
If (petal_length) < (3.75) and not missing (petal_length) Then
var20 = 0.0608791336;
Else
If (petal_width) >= (0.15) and not missing (petal_width) Then
var20 = -0.0543446094;
Else
var20 = -0.00739436084;
If (petal_length) < (4.05) and not missing (petal_length) Then
var21 = 0.0471797623;
Else
If (sepal_width) < (3.5) and not missing (sepal_width) Then
var21 = -0.0337324329;
Else
var21 = -0.0120818252;
If (petal_length) >= (1.55) and not missing (petal_length) Then
var22 = -0.046281971;
Else
var22 = 0.0193880536;
If (petal_length) < (4.45) and not missing (petal_length) Then
var23 = 0.0364663266;
Else
var23 = -0.0220301542;
If (petal_length) < (4.55) and not missing (petal_length) Then
var24 = 0.0293321516;
Else
var24 = -0.0184478108;
If (petal_width) < (1.45) and not missing (petal_width) Then
var25 = 0.0260171983;
Else
var25 = -0.0163965747;
If (sepal_length) < (5.8500004) and not missing (sepal_length) Then
var26 = 0.0250302367;
Else
var26 = -0.0148513829;
If (petal_length) >= (1.45) and not missing (petal_length) Then
var27 = -0.0255437698;
Else
var27 = 0.0124105737;
If (petal_width) < (1.45) and not missing (petal_width) Then
var28 = 0.0230955575;
Else
var28 = -0.0148349134;
If (petal_width) >= (0.15) and not missing (petal_width) Then
var29 = -0.024465967;
Else
var29 = 0.0106918262;
If (petal_length) >= (1.45) and not missing (petal_length) Then
var30 = -0.0227411482;
Else
var30 = 0.00937269349;
If (petal_width) >= (0.15) and not missing (petal_width) Then
var31 = -0.0226353593;
Else
var31 = 0.0084459288;
If (sepal_width) >= (2.85) and not missing (sepal_width) Then
var32 = 0.0167151;
Else
var32 = -0.0134578878;
If (petal_width) < (1.55) and not missing (petal_width) Then
var33 = 0.0143243102;
Else
var33 = -0.0119101619;
If (sepal_length) < (6.4) and not missing (sepal_length) Then
var34 = 0.0120238354;
Else
var34 = -0.0106252329;
If (sepal_length) >= (4.75) and not missing (sepal_length) Then
var35 = -0.0145505061;
Else
var35 = 0.00480017299;
If (petal_width) < (1.7) and not missing (petal_width) Then
var36 = 0.00869152509;
Else
var36 = -0.00898798741;
If (petal_width) < (1.7) and not missing (petal_width) Then
var37 = 0.00953057967;
Else
var37 = -0.00888795406;
If (petal_width) < (1.7) and not missing (petal_width) Then
var38 = 0.0093454197;
Else
var38 = -0.00809465069;
If (sepal_length) < (6.75) and not missing (sepal_length) Then
var39 = 0.00738859549;
Else
var39 = -0.00735212537;
If (sepal_width) >= (2.75) and not missing (sepal_width) Then
var40 = 0.00714580761;
Else
var40 = -0.00683990307;
If (sepal_width) >= (2.75) and not missing (sepal_width) Then
var41 = 0.00702210795;
Else
var41 = -0.00623275992;
If (sepal_width) < (3.65) and not missing (sepal_width) Then
var42 = -0.00880495552;
Else
var42 = 0.00243638176;
If (petal_width) < (2.05) and not missing (petal_width) Then
var43 = 0.00573393935;
Else
var43 = -0.00589240668;
If (petal_width) < (2.05) and not missing (petal_width) Then
var44 = 0.00514120515;
Else
var44 = -0.00523090549;
If (sepal_width) >= (2.65) and not missing (sepal_width) Then
var45 = 0.00441568717;
Else
var45 = -0.00510522723;
If (sepal_width) < (3.75) and not missing (sepal_width) Then
var46 = -0.00661038002;
Else
var46 = 0.000918276433;
If (petal_width) < (2.25) and not missing (petal_width) Then
var47 = 0.00381673803;
Else
var47 = -0.00433760649;
If (sepal_width) >= (2.45) and not missing (sepal_width) Then
var48 = 0.00247759465;
Else
var48 = -0.00391722843;
If (sepal_width) < (3.85) and not missing (sepal_width) Then
var49 = -0.00475811167;
Else
var49 = 0.000651532551;
If (sepal_width) >= (2.45) and not missing (sepal_width) Then
var50 = 0.00278589665;
Else
var50 = -0.00374441198;
If (sepal_width) >= (2.45) and not missing (sepal_width) Then
var51 = 0.00161687564;
Else
var51 = -0.00278248684;
If (sepal_width) >= (2.35) and not missing (sepal_width) Then
var52 = 0.00109532278;
Else
var52 = -0.00287223468;
If (sepal_width) < (4.05) and not missing (sepal_width) Then
var53 = -0.00344661577;
Else
var53 = -0.000423971127;
If (sepal_width) >= (2.1) and not missing (sepal_width) Then
var54 = 0.000642617582;
Else
var54 = -0.00248785503;
var55 = Exp(((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((0.5) + (var0)) + (var1)) + (var2)) + (var3)) + (var4)) + (var5)) + (var6)) + (var7)) + (var8)) + (var9)) + (var10)) + (var11)) + (var12)) + (var13)) + (var14)) + (var15)) + (var16)) + (var17)) + (var18)) + (var19)) + (var20)) + (var21)) + (var22)) + (var23)) + (var24)) + (var25)) + (var26)) + (var27)) + (var28)) + (var29)) + (var30)) + (var31)) + (var32)) + (var33)) + (var34)) + (var35)) + (var36)) + (var37)) + (var38)) + (var39)) + (var40)) + (var41)) + (var42)) + (var43)) + (var44)) + (var45)) + (var46)) + (var47)) + (var48)) + (var49)) + (var50)) + (var51)) + (var52)) + (var53)) + (-0.00175219192)) + (var54)) + (-0.00138787972)) + (-0.00165736291)) + (-0.00181188225)) + (-0.00162853068)) + (-0.00149315957)) + (-0.00165574334)) + (-0.00185844942)) + (-0.0016636448)) + (-0.0014232262)) + (-0.0016033944)) + (-0.00159803231)) + (-0.00148498977)) + (-0.00134657766)) + (-0.00139234716)) + (-0.00130204379)) + (-0.00135295163)) + (-0.00119656324)) + (-0.00141426164)) + (-0.00157726242)) + (-0.00153390272)) + (-0.00168608024)) + (-0.00181680464)) + (-0.00159627723)) + (-0.00154064398)) + (-0.00168970868)) + (-0.00148212048)) + (-0.00141914422)) + (-0.00156732753)) + (-0.0016662007)) + (-0.00157068786)) + (-0.00169202138)) + (-0.00147027057)) + (-0.00159990392)) + (-0.00157111662)) + (-0.00149565411)) + (-0.00143083755)) + (-0.00123696052)) + (-0.00135163555)) + (-0.00145185576)) + (-0.00133804756)) + (-0.00116077822)) + (-0.00110935885)) + (-0.00110194704)) + (-0.00106088596));
If (sepal_width) < (2.95) and not missing (sepal_width) Then
If (petal_width) < (1.7) and not missing (petal_width) Then
var56 = 0.400000036;
Else
var56 = -0.163636371;
Else
If (petal_length) < (2.7) and not missing (petal_length) Then
var56 = -0.208264485;
Else
If (petal_length) < (4.8) and not missing (petal_length) Then
var56 = 0.387692332;
Else
If (petal_length) >= (4.95) and not missing (petal_length) Then
var56 = -0.204950511;
Else
If (sepal_width) >= (3.15) and not missing (sepal_width) Then
var56 = -0.128571451;
Else
If (petal_width) >= (0.8) and not missing (petal_width) Then
var56 = 0.128571421;
Else
var56 = -0.0183673594;
If (petal_length) < (2.45) and not missing (petal_length) Then
var57 = -0.185207516;
Else
If (petal_width) >= (1.7) and not missing (petal_width) Then
var57 = -0.186689198;
Else
If (petal_length) >= (4.95) and not missing (petal_length) Then
If (sepal_length) < (6.5) and not missing (sepal_length) Then
var57 = -0.0241971593;
Else
var57 = -0.133348972;
Else
If (petal_width) < (0.6) and not missing (petal_width) Then
var57 = -0.121866241;
Else
If (sepal_width) < (6.400001) and not missing (sepal_width) Then
var57 = 0.29340741;
Else
If (petal_length) < (4.8) and not missing (petal_length) Then
var57 = 0.257297486;
Else
var57 = 0.0181013234;
If (petal_length) < (2.45) and not missing (petal_length) Then
var58 = -0.168812945;
Else
If (petal_width) >= (1.7) and not missing (petal_width) Then
var58 = -0.169709578;
Else
If (petal_length) >= (4.95) and not missing (petal_length) Then
If (sepal_length) < (6.5) and not missing (sepal_length) Then
var58 = -0.0157554112;
Else
var58 = -0.12079642;
Else
If (petal_width) < (0.6) and not missing (petal_width) Then
var58 = -0.110585131;
Else
If (sepal_width) < (6.400001) and not missing (sepal_width) Then
var58 = 0.234807149;
Else
If (petal_length) < (4.8) and not missing (petal_length) Then
var58 = 0.207654163;
Else
var58 = 0.0112676639;
If (petal_length) < (2.45) and not missing (petal_length) Then
var59 = -0.156163022;
Else
If (petal_width) >= (1.7) and not missing (petal_width) Then
var59 = -0.156518415;
Else
If (petal_width) >= (0.6) and not missing (petal_width) Then
If (sepal_length) >= (6.8500004) and not missing (sepal_length) Then
var59 = 0.0625256151;
Else
var59 = 0.203980252;
Else
If (petal_length) < (4.8) and not missing (petal_length) Then
var59 = 0.177010491;
Else
If (sepal_length) < (14.600001) and not missing (sepal_length) Then
var59 = -0.134261593;
Else
If (sepal_width) < (7.200001) and not missing (sepal_width) Then
var59 = -0.100394629;
Else
var59 = 0.0274297576;
If (petal_length) < (2.45) and not missing (petal_length) Then
var60 = -0.145656615;
Else
If (petal_width) >= (1.7) and not missing (petal_width) Then
var60 = -0.145565718;
Else
If (petal_length) < (4.95) and not missing (petal_length) Then
If (petal_length) < (4.8500004) and not missing (petal_length) Then
var60 = 0.178499401;
Else
var60 = 0.0554932989;
Else
If (sepal_width) < (2.95) and not missing (sepal_width) Then
var60 = 0.156126872;
Else
If (sepal_length) < (14.600001) and not missing (sepal_length) Then
var60 = -0.122554697;
Else
If (sepal_width) < (7.200001) and not missing (sepal_width) Then
var60 = -0.0371631272;
Else
var60 = 0.018640738;
If (petal_length) < (2.45) and not missing (petal_length) Then
var61 = -0.136319637;
Else
If (petal_width) >= (1.7) and not missing (petal_width) Then
var61 = -0.13600719;
Else
If (petal_width) >= (0.6) and not missing (petal_width) Then
If (sepal_length) >= (6.8500004) and not missing (sepal_length) Then
var61 = 0.0436923653;
Else
var61 = 0.168236002;
Else
If (petal_length) < (4.8) and not missing (petal_length) Then
var61 = 0.13836813;
Else
If (sepal_length) < (14.600001) and not missing (sepal_length) Then
var61 = -0.11201746;
Else
var61 = -0.0210165326;
If (petal_length) < (2.45) and not missing (petal_length) Then
var62 = -0.127558306;
Else
If (petal_length) < (4.8500004) and not missing (petal_length) Then
var62 = 0.150931388;
Else
If (petal_width) < (1.7) and not missing (petal_width) Then
If (sepal_width) < (2.95) and not missing (sepal_width) Then
var62 = 0.133517891;
Else
var62 = -0.0208010059;
Else
If (sepal_length) < (15.800001) and not missing (sepal_length) Then
var62 = -0.13251783;
Else
var62 = -0.0169687588;
If (petal_length) < (2.45) and not missing (petal_length) Then
var63 = -0.119042255;
Else
If (petal_width) >= (1.7) and not missing (petal_width) Then
var63 = -0.119445063;
Else
If (petal_width) >= (0.6) and not missing (petal_width) Then
If (sepal_length) >= (6.75) and not missing (sepal_length) Then
var63 = 0.0420124754;
Else
var63 = 0.146134421;
Else
If (petal_length) < (4.8) and not missing (petal_length) Then
var63 = 0.112074994;
Else
If (sepal_length) < (14.600001) and not missing (sepal_length) Then
var63 = -0.0917850882;
Else
var63 = -0.0139084151;
If (sepal_width) < (2.95) and not missing (sepal_width) Then
If (petal_width) < (1.55) and not missing (petal_width) Then
var64 = 0.122667052;
Else
var64 = -0.00904723816;
Else
If (petal_length) >= (4.95) and not missing (petal_length) Then
var64 = -0.115152501;
Else
If (petal_length) >= (2.7) and not missing (petal_length) Then
var64 = 0.105362013;
Else
If (sepal_length) < (11.600001) and not missing (sepal_length) Then
var64 = -0.110632829;
Else
If (sepal_width) < (7.200001) and not missing (sepal_width) Then
var64 = -0.0575746037;
Else
var64 = 0.0166172944;
If (sepal_width) < (2.95) and not missing (sepal_width) Then
If (petal_width) < (1.55) and not missing (petal_width) Then
var65 = 0.11446134;
Else
var65 = -0.00318384147;
Else
If (petal_length) >= (4.95) and not missing (petal_length) Then
var65 = -0.10759484;
Else
If (petal_length) >= (2.7) and not missing (petal_length) Then
var65 = 0.0926035196;
Else
If (sepal_length) < (11.600001) and not missing (sepal_length) Then
var65 = -0.102330104;
Else
If (sepal_width) < (7.200001) and not missing (sepal_width) Then
var65 = -0.0518429503;
Else
var65 = 0.0147984996;
If (sepal_width) < (2.95) and not missing (sepal_width) Then
If (petal_width) < (1.45) and not missing (petal_width) Then
var66 = 0.101717159;
Else
var66 = 0.0201521907;
Else
If (petal_length) >= (4.95) and not missing (petal_length) Then
var66 = -0.100577548;
Else
If (petal_length) >= (2.7) and not missing (petal_length) Then
var66 = 0.0827134028;
Else
If (petal_width) < (0.9) and not missing (petal_width) Then
var66 = -0.0962641612;
Else
var66 = -0.00888905674;
If (sepal_width) < (2.95) and not missing (sepal_width) Then
If (petal_width) < (1.45) and not missing (petal_width) Then
var67 = 0.0947500542;
Else
var67 = 0.0203628205;
Else
If (petal_length) >= (4.95) and not missing (petal_length) Then
var67 = -0.0929536745;
Else
If (petal_length) >= (2.7) and not missing (petal_length) Then
var67 = 0.0716404989;
Else
If (petal_width) < (0.9) and not missing (petal_width) Then
var67 = -0.0892083868;
Else
var67 = -0.00681902375;
If (sepal_width) < (2.95) and not missing (sepal_width) Then
If (petal_width) < (1.45) and not missing (petal_width) Then
var68 = 0.0888001025;
Else
var68 = 0.0229282491;
Else
If (petal_length) >= (4.95) and not missing (petal_length) Then
var68 = -0.0866366178;
Else
If (petal_length) >= (2.7) and not missing (petal_length) Then
var68 = 0.0629500598;
Else
If (petal_width) < (0.9) and not missing (petal_width) Then
var68 = -0.0827873498;
Else
var68 = -0.0065799919;
If (sepal_width) < (2.95) and not missing (sepal_width) Then
var69 = 0.0698311478;
Else
If (petal_length) >= (4.95) and not missing (petal_length) Then
var69 = -0.0798786879;
Else
If (petal_length) >= (2.7) and not missing (petal_length) Then
var69 = 0.0568093844;
Else
If (sepal_width) < (8.800001) and not missing (sepal_width) Then
var69 = -0.0599872731;
Else
var69 = -0.00869162846;
If (sepal_width) < (2.95) and not missing (sepal_width) Then
var70 = 0.0621545315;
Else
If (petal_length) >= (4.8) and not missing (petal_length) Then
var70 = -0.0678711459;
Else
If (petal_length) >= (1.8) and not missing (petal_length) Then
var70 = 0.0697929561;
Else
If (sepal_width) < (8.800001) and not missing (sepal_width) Then
var70 = -0.0520095266;
Else
var70 = -0.00730153592;
If (petal_width) < (1.7) and not missing (petal_width) Then
If (petal_width) < (1.1500001) and not missing (petal_width) Then
var71 = -0.0397306755;
Else
var71 = 0.0867232755;
Else
If (petal_length) >= (4.8) and not missing (petal_length) Then
var71 = -0.0844255537;
Else
If (sepal_length) < (12.600001) and not missing (sepal_length) Then
var71 = 0.0174561068;
Else
var71 = -0.0052807969;
If (sepal_width) < (2.95) and not missing (sepal_width) Then
var72 = 0.0533039384;
Else
If (petal_length) >= (4.8) and not missing (petal_length) Then
var72 = -0.0599885024;
Else
If (petal_length) >= (1.55) and not missing (petal_length) Then
var72 = 0.0482073463;
Else
var72 = -0.0190744326;
If (sepal_width) < (2.95) and not missing (sepal_width) Then
var73 = 0.0501747951;
Else
If (petal_length) >= (4.8) and not missing (petal_length) Then
var73 = -0.0553633794;
Else
If (sepal_width) < (8.800001) and not missing (sepal_width) Then
var73 = -0.0319369398;
Else
var73 = 0.011623444;
If (petal_width) < (1.7) and not missing (petal_width) Then
If (sepal_width) < (2.95) and not missing (sepal_width) Then
var74 = 0.0827232972;
Else
var74 = -0.017503323;
Else
If (petal_length) >= (4.3) and not missing (petal_length) Then
var74 = -0.0508295745;
Else
var74 = -0.00520998379;
If (sepal_width) < (2.95) and not missing (sepal_width) Then
var75 = 0.0423747562;
Else
If (sepal_width) < (8.800001) and not missing (sepal_width) Then
var75 = -0.0341298133;
Else
If (sepal_length) < (14.600001) and not missing (sepal_length) Then
var75 = -0.0116192661;
Else
var75 = 0.0038067298;
If (petal_width) < (1.7) and not missing (petal_width) Then
If (petal_length) >= (2.45) and not missing (petal_length) Then
var76 = 0.0552212;
Else
var76 = -0.00905931462;
Else
If (sepal_length) < (15.800001) and not missing (sepal_length) Then
var76 = -0.0286466423;
Else
var76 = -0.00658639567;
If (sepal_width) >= (2.95) and not missing (sepal_width) Then
var77 = -0.034359321;
Else
If (petal_length) >= (2.35) and not missing (petal_length) Then
var77 = 0.038319923;
Else
var77 = -0.00284348219;
If (sepal_width) < (2.95) and not missing (sepal_width) Then
var78 = 0.0360275395;
Else
If (sepal_width) < (8.800001) and not missing (sepal_width) Then
var78 = -0.0313964821;
Else
If (sepal_length) < (14.600001) and not missing (sepal_length) Then
var78 = -0.00729676057;
Else
var78 = 0.00401351368;
If (petal_length) >= (2.45) and not missing (petal_length) Then
If (petal_width) < (1.9) and not missing (petal_width) Then
var79 = 0.0382747278;
Else
var79 = 0.000197457746;
Else
If (sepal_width) >= (2.65) and not missing (sepal_width) Then
var79 = -0.0322165675;
Else
var79 = -0.00207502372;
If (petal_width) < (1.7) and not missing (petal_width) Then
var80 = 0.0266236681;
Else
If (sepal_length) < (15.800001) and not missing (sepal_length) Then
var80 = -0.0221790895;
Else
var80 = -0.00490328763;
If (sepal_width) >= (2.95) and not missing (sepal_width) Then
var81 = -0.030670708;
Else
If (petal_length) >= (2.35) and not missing (petal_length) Then