-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtdt310_193.out
3811 lines (3776 loc) · 163 KB
/
tdt310_193.out
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
Loading required package: data.table
R version 3.1.0 (2014-04-10)
Platform: powerpc64-unknown-linux-gnu (64-bit)
locale:
[1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C
[3] LC_TIME=en_US.UTF-8 LC_COLLATE=en_US.UTF-8
[5] LC_MONETARY=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8
[7] LC_PAPER=en_US.UTF-8 LC_NAME=C
[9] LC_ADDRESS=C LC_TELEPHONE=C
[11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C
attached base packages:
[1] stats graphics grDevices utils datasets base
other attached packages:
[1] data.table_1.9.3
loaded via a namespace (and not attached):
[1] methods_3.1.0 plyr_1.8.1 Rcpp_0.11.1 reshape2_1.4 stringr_0.6.2
Running /home/gerhard/lib/R/Work/data.table/tests/tests.Rraw
Loading required package: reshape2
Loading required package: reshape
Attaching package: ‘reshape’
The following objects are masked from ‘package:reshape2’:
colsplit, melt, recast
Loading required package: plyr
Attaching package: ‘plyr’
The following objects are masked from ‘package:reshape’:
rename, round_any
Loading required package: ggplot2
Loading required package: methods
Loading required package: hexbin
Loading required package: grid
Loading required package: lattice
Loading required package: nlme
Loading required package: xts
Loading required package: zoo
Attaching package: ‘zoo’
The following objects are masked from ‘package:base’:
as.Date, as.Date.numeric
Attaching package: ‘xts’
The following object is masked from ‘package:data.table’:
last
Loading required package: bit64
Loading required package: bit
Attaching package bit
package:bit (c) 2008-2012 Jens Oehlschlaegel (GPL-2)
creators: bit bitwhich
coercion: as.logical as.integer as.bit as.bitwhich which
operator: ! & | xor != ==
querying: print length any all min max range sum summary
bit access: length<- [ [<- [[ [[<-
for more help type ?bit
Attaching package: ‘bit’
The following object is masked from ‘package:data.table’:
setattr
The following object is masked from ‘package:base’:
xor
Loading package bit64 0.9-2
package:bit64 (c) 2011-2012 Jens Oehlschlaegel (GPL-2 with commercial restrictions)
creators: integer64 seq :
coercion: as.integer64 as.vector as.logical as.integer as.double as.character as.bin
logical operator: ! & | xor != == < <= >= >
arithmetic operator: + - * / %/% %% ^
math: sign abs sqrt log log2 log10
math: floor ceiling trunc round
querying: is.integer64 is.vector [is.atomic} [length] is.na format print
aggregation: any all min max range sum prod
cumulation: diff cummin cummax cumsum cumprod
access: length<- [ [<- [[ [[<-
combine: c rep cbind rbind as.data.frame
for more help type ?bit64
Loading required package: gdata
gdata: read.xls support for 'XLS' (Excel 97-2004) files ENABLED.
gdata: read.xls support for 'XLSX' (Excel 2007+) files ENABLED.
Attaching package: ‘gdata’
The following object is masked from ‘package:stats’:
nobs
The following object is masked from ‘package:utils’:
object.size
Test 24 ran without errors but failed check that x equals y:
> x = TESTDT[SJ(c(1, NA, 4, NA, NA, 4, 4), c(5, 5, 6, 6, 7, 9, 10)), v, mult = "all", roll = TRUE, nomatch = 0]
[1] 3 4 5 6 6 1
> y = INT(1, 3:4, 5:6, 6)
[1] 1 3 4 5 6 6
Test 191 ran without errors but failed check that x equals y:
> x = TESTDT[SJ(c(1, NA, 4, NA, NA, 4, 4), c(5, 5, 6, 6, 7, 9, 10)), v, mult = "all", roll = TRUE, nomatch = NA, allow.cartesian = TRUE]
First 6 of 9 :[1] NA NA NA 3 4 5
> y = INT(NA, NA, NA, 1, 3:4, 5:6, 6)
First 6 of 9 :[1] NA NA NA 1 3 4
Don't know how to automatically pick scale for object of type ITime. Defaulting to continuous
Don't know how to automatically pick scale for object of type ITime. Defaulting to continuous
Test 272 ran without errors but failed check that x equals y:
> x = DT[, sum(z), by = key(DT)]$V1
[1] 2 1 3
> y = c(1L, 3L, 2L)
[1] 1 3 2
Test 599 ran without errors but failed check that x equals y:
> x = DT[c(8, 9, 4, 11, 2, 10, 7, 1, 3, 5, 6)]
V1 V2 [Key= Types=num,num]
1: NA NA
2: NA 1.1
---
10: 2.22 2.3
11: 2.22 2.4
> y = setkey(setkey(DT), NULL)
V1 V2 [Key= Types=num,num]
1: NA NA
2: NA 1.1
---
10: 2.22 2.3
11: 2.22 2.4
Test 632 ran without errors but failed check that x equals y:
> x = merge(DT1, DT2, all = TRUE)
a total.x total.y [Key=a Types=num,num,num]
1: 2 NA 5
2: 3 1 1
---
4: 5 1 2
5: 1 2 NA
> y = data.table(a = c(1, 2, 3, 4, 5), total.x = c(2, NA, 1, 3, 1), total.y = c(NA, 5, 1, NA, 2), key = "a")
a total.x total.y [Key=a Types=num,num,num]
1: 1 2 NA
2: 2 NA 5
---
4: 4 3 NA
5: 5 1 2
Test 632.1 ran without errors but failed check that x equals y:
> x = merge(DT1, DT2, all = TRUE)
a total.x total.y [Key=a Types=num,num,num]
1: 2 NA 5
2: 3 1 1
---
4: 5 1 2
5: 1 2 NA
> y = setkey(adt(merge(adf(DT1), adf(DT2), by = "a", all = TRUE)), a)
a total.x total.y [Key=a Types=num,num,num]
1: 1 2 NA
2: 2 NA 5
---
4: 4 3 NA
5: 5 1 2
Test 1018 didn't produce correct warning :
> fread("1.46761e-313\n")
Expected warning: 'strtod() returned ERANGE'
Observed: no error or warning
Test 1104.2 ran without errors but failed check that x equals y:
> x = as.data.frame(dcast.data.table(x, a ~ b, value.var = "b"))
a 0.747815270209685 0.363015734823421 0.807170010404661 0.568322559352964
1 1 NA 0.3630157 NA NA
2 2 NA NA 0.80717 NA
3 3 NA NA NA NA
4 4 0.7478153 NA NA NA
5 5 NA NA NA 0.5683226
0.882325432961807
1 NA
2 NA
3 0.8823254
4 NA
5 NA
> y = dcast(x, a ~ b, value.var = "b")
a 0.363015734823421 0.568322559352964 0.747815270209685 0.807170010404661
1 1 0.3630157 NA NA NA
2 2 NA NA NA 0.80717
3 3 NA NA NA NA
4 4 NA NA 0.7478153 NA
5 5 NA 0.5683226 NA NA
0.882325432961807
1 NA
2 NA
3 0.8823254
4 NA
5 NA
Test 1147.2 ran without errors but failed check that x equals y:
> x = ordernumtol(x)
First 6 of 1000000 :[1] 1826 451746 14295 561589 648188 688733
> y = dradixorder(x)
First 6 of 1000000 :[1] 235106 734005 434418 275307 952640 918271
Test 1154.1 ran without errors but failed check that x equals y:
> x = DT[J(NaN)]
x y z [Key=x Types=num,int,cha]
1: NaN NA NA
> y = DT[is.nan(x)]
x y z [Key=x Types=num,int,cha]
1: NaN 1 e
2: NaN 5 f
---
5: NaN 7 a
6: NaN 6 b
Test 1155.1 ran without errors but failed check that x equals y:
> x = merge(dt1, dt2, by = c("y"))
y x z [Key=y Types=num,cha,cha]
1: NA green missing data
2: 2 orange b
> y = data.table(y = dt1$y, x = dt1$x, z = dt2$z[1:3], key = "y")
y x z [Key=y Types=num,cha,cha]
1: NA green missing data
2: 2 orange b
3: 1 red c
Test 1155.2 ran without errors but failed check that x equals y:
> x = dt2[dt1]
y z x [Key=y Types=num,cha,cha]
1: NA missing data green
2: 2 b orange
3: 1 NA red
> y = data.table(y = dt1$y, z = dt2$z[1:3], x = dt1$x, key = "y")
y z x [Key=y Types=num,cha,cha]
1: NA missing data green
2: 2 b orange
3: 1 c red
Test 1155.3 ran without errors but failed check that x equals y:
> x = dt1[dt2, nomatch = 0L]
x y z [Key=y Types=cha,num,cha]
1: green NA missing data
2: orange 2 b
> y = data.table(x = dt1$x, y = dt1$y, z = dt2$z[1:3], key = "y")
x y z [Key=y Types=cha,num,cha]
1: green NA missing data
2: orange 2 b
3: red 1 c
Test 1162.4 ran without errors but failed check that x equals y:
> x = is.sorted(DT[[2L]])
[1] FALSE
> y = TRUE
[1] TRUE
Test 1162.9 ran without errors but failed check that x equals y:
> x = length(forderv(DT, by = 2:3))
[1] 200
> y = 0
[1] 0
Test 1207.1 ran without errors but failed check that x equals y:
> x = DT[.(c(NA_real_, Inf)), B]
[1] 8 12 NA
> y = INT(8, 12, 4)
[1] 8 12 4
Test 1208.1 ran without errors but failed check that x equals y:
> x = DT[.(c(Inf, NA_real_)), B]
[1] NA 8 12
> y = INT(4, 8, 12)
[1] 4 8 12
Test 1211.1 ran without errors but failed check that x equals y:
> x = DT[, sum(B), by = A]$V1
First 6 of 10 :[1] 20 17 1 2 5 4
> y = INT(20, 17, 3, 6, 1, 2, 11, 5, 9, 4)
First 6 of 10 :[1] 20 17 3 6 1 2
Test 1212.1 ran without errors but failed check that x equals y:
> x = DT[, sum(B), by = list(g = abs(trunc(A)))]
g V1 [Key= Types=num,int]
1: NA 20
2: NaN 17
---
5: 3 14
6: Inf 7
> y = data.table(g = c(NA, NaN, Inf, 1, 2, 3), V1 = INT(20, 17, 7, 7, 13, 14))
g V1 [Key= Types=num,int]
1: NA 20
2: NaN 17
---
5: 2 13
6: 3 14
Test 1207.2 ran without errors but failed check that x equals y:
> x = DT[.(c(NA_real_, Inf)), B]
[1] 8 12 NA
> y = INT(8, 12, 4)
[1] 8 12 4
Test 1208.2 ran without errors but failed check that x equals y:
> x = DT[.(c(Inf, NA_real_)), B]
[1] NA 8 12
> y = INT(4, 8, 12)
[1] 4 8 12
Test 1211.2 ran without errors but failed check that x equals y:
> x = DT[, sum(B), by = A]$V1
First 6 of 10 :[1] 20 17 1 2 5 4
> y = INT(20, 17, 3, 6, 1, 2, 11, 5, 9, 4)
First 6 of 10 :[1] 20 17 3 6 1 2
Test 1212.2 ran without errors but failed check that x equals y:
> x = DT[, sum(B), by = list(g = abs(trunc(A)))]
g V1 [Key= Types=num,int]
1: NA 20
2: NaN 17
---
5: 3 14
6: Inf 7
> y = data.table(g = c(NA, NaN, Inf, 1, 2, 3), V1 = INT(20, 17, 7, 7, 13, 14))
g V1 [Key= Types=num,int]
1: NA 20
2: NaN 17
---
5: 2 13
6: 3 14
Test 1223.001 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.002 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.003 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 20 142 172 238 796 292
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 65 265 541 831 324 441
Test 1223.004 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 98 127 185 74 178 689
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 32 459 476 602 102 232
Test 1223.013 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.014 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.015 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.016 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.017 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.018 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.019 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.02 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.021 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.022 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.023 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.024 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.025 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.026 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.027 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.028 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.029 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.03 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.031 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.032 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.033 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 20 142 172 238 796 292
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 65 265 831 541 801 529
Test 1223.034 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 142 20 796 238 172 846
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 541 831 265 65 441 638
Test 1223.035 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 127 185 98 178 74 689
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 32 602 459 476 338 232
Test 1223.036 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 98 185 127 689 74 178
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 476 459 602 32 518 963
Test 1223.037 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 20 142 238 796 172 292
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 541 265 831 65 441 638
Test 1223.038 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 142 20 172 796 238 443
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 65 831 265 541 529 801
Test 1223.039 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 98 127 185 689 74 178
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 459 602 476 32 338 963
Test 1223.04 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 185 127 98 178 74 689
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 32 476 602 459 232 102
Test 1223.041 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 142 20 238 796 172 603
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 541 265 831 65 324 441
Test 1223.042 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 20 142 172 796 238 846
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 65 831 265 541 529 638
Test 1223.043 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 98 127 185 74 178 689
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 602 459 476 32 338 232
Test 1223.044 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 185 127 98 689 178 74
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 32 476 459 602 511 518
Test 1223.045 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 20 142 796 172 238 846
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 65 541 831 265 441 529
Test 1223.046 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 20 142 238 172 796 292
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 265 831 541 65 638 324
Test 1223.047 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 185 98 127 178 689 74
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 476 459 602 32 338 511
Test 1223.048 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 127 98 185 74 689 178
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 32 459 602 476 232 102
Test 1223.073 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.074 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.075 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.076 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.077 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.078 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.079 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.08 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.081 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.082 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.083 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.084 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.085 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.086 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.087 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.088 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.089 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.09 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.091 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.092 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.093 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.094 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.095 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.096 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.097 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.098 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.099 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.1 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.101 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.102 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.103 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.104 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.105 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.106 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.107 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.108 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.109 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.11 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.111 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.112 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.113 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.114 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.115 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.116 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.117 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.118 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.119 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.12 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.121 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.122 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.123 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.124 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.125 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.126 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.127 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.128 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.129 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.13 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.131 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.132 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.133 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.134 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.135 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.136 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.137 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.138 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.139 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.14 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.141 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.142 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.143 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.144 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.145 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.146 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.147 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.148 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 560 356 697 772 617 226
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 898 124 805 900 46 672
Test 1223.149 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.15 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.151 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.152 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 121 400 520 691 672 762
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 337 477 526 515 133 533
Test 1223.153 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 20 142 172 238 796 292
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 65 265 831 541 801 529
Test 1223.154 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 20 142 172 238 796 603
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 65 265 831 541 801 529
Test 1223.155 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 142 20 796 238 172 846
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 541 831 265 65 441 638
Test 1223.156 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 142 20 796 238 172 846
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 541 831 265 65 441 638
Test 1223.157 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 127 185 98 178 74 689
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 32 602 459 476 338 232
Test 1223.158 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 127 185 98 178 74 689
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 32 602 459 476 338 232
Test 1223.159 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 98 185 127 689 74 178
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 476 459 602 32 963 518
Test 1223.16 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 98 185 127 689 74 178
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 476 459 602 32 518 963
Test 1223.161 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 20 142 172 238 796 603
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 65 265 831 541 801 529
Test 1223.162 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 20 142 172 238 796 292
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 65 265 831 541 801 529
Test 1223.163 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 142 20 796 238 172 846
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 541 831 265 65 441 638
Test 1223.164 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 142 20 796 238 172 846
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 541 831 265 65 441 638
Test 1223.165 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 127 185 98 178 74 689
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 32 602 459 476 338 232
Test 1223.166 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 127 185 98 178 74 689
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 32 602 459 476 338 232
Test 1223.167 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 98 185 127 689 74 178
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 476 459 602 32 963 518
Test 1223.168 ran without errors but failed check that x equals y:
> x = forderv(DT, by = x, order = y)
First 6 of 1000 :[1] 98 185 127 689 74 178
> y = with(DT, eval(ll))
First 6 of 1000 :[1] 476 459 602 32 518 963