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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044
|
R Under development (unstable) (2025-02-20 r87768) -- "Unsuffered Consequences"
Copyright (C) 2025 The R Foundation for Statistical Computing
Platform: x86_64-pc-linux-gnu
R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.
R is a collaborative project with many contributors.
Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.
Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.
> #### Testing print(), format() and the like --- mainly with numeric()
> ####
> #### to be run as
> ####
> #### R < print-tests.R >& print-tests.out-__version__
> #### == (csh)
> opt.conformance <- 0
>
> DIG <- function(d)
+ if(missing(d)) getOption("digits") else options(digits=as.integer(d))
>
> DIG(7)#-- the default; just to make sure ...
> options(width = 200)
>
> n1 <- 2^(4*1:7)
> i1 <- as.integer(n1)
>
> v1 <- 2^c(-12, 2*(-4:-2),3,6,9)
> v2 <- v1^(63/64)
> ## avoid ending in `5' as printing then depends on rounding of
> ## the run-time (and not all round to even).
> v1[1:4] <-c(2.44140624e-04, 3.90624e-03, 1.5624e-02, 6.24e-02)
>
>
> v3 <- pi*100^(-1:3)
> v4 <- (0:2)/1000 + 1e-10 #-- tougher one
>
> digs1 <- c(1,2*(1:5),11:15) # 16: platform dependent
> # 30 gives ERROR : options(digits=30)
> digs2 <- c(1:20)#,30) gives 'error' in R: ``print.default(): invalid digits..''
>
> all(i1 == n1)# TRUE
[1] TRUE
> i1# prints nicely
[1] 16 256 4096 65536 1048576 16777216 268435456
> n1# did not; does now (same as 'i1')
[1] 16 256 4096 65536 1048576 16777216 268435456
>
> round (v3, 3)#S+ & R 0.49:
[1] 0.031 3.142 314.159 31415.927 3141592.654
> ##[1] 0.031 3.142 314.159 31415.927 3141592.654
> signif(v3, 3)
[1] 3.14e-02 3.14e+00 3.14e+02 3.14e+04 3.14e+06
> ##R.49: [1] 0.0314 3.1400 314.0000 31400.0000 3140000.0000
> ##S+ [1] 3.14e-02 3.14e+00 3.14e+02 3.14e+04 3.14e+06
>
> ###----------------------------------------------------------------
> ##- Date: Tue, 20 May 97 17:11:18 +0200
>
> ##- From: Martin Maechler <maechler@stat.math.ethz.ch>
> ##- To: R-devel@stat.math.ethz.ch
> ##- Subject: R-alpha: print 'problems': print(2^30, digits=12); comments at start of function()
> ##-
> ##- Both of these bugs are not a real harm,
> ##- however, they have been annoying me for too long ... ;-)
> ##-
> ##- 1)
> print (2^30, digits = 12) #- WAS exponential form, unnecessarily -- now ok
[1] 1073741824
> formatC(2^30, digits = 12) #- shows you what you'd want above
[1] " 1073741824"
>
> ## S and R are now the same here; note that the problem also affects
> ## paste(.) & format(.) :
>
> DIG(10); paste(n1); DIG(7)
[1] "16" "256" "4096" "65536" "1048576" "16777216" "268435456"
>
>
> ## Assignment to .Options$digits: Does NOT work for print() nor cat()
> for(i in digs1) { .Options$digits <- i; cat(i,":"); print (v1[-1]) }
1 :[1] 3.90624e-03 1.56240e-02 6.24000e-02 8.00000e+00 6.40000e+01 5.12000e+02
2 :[1] 3.90624e-03 1.56240e-02 6.24000e-02 8.00000e+00 6.40000e+01 5.12000e+02
4 :[1] 3.90624e-03 1.56240e-02 6.24000e-02 8.00000e+00 6.40000e+01 5.12000e+02
6 :[1] 3.90624e-03 1.56240e-02 6.24000e-02 8.00000e+00 6.40000e+01 5.12000e+02
8 :[1] 3.90624e-03 1.56240e-02 6.24000e-02 8.00000e+00 6.40000e+01 5.12000e+02
10 :[1] 3.90624e-03 1.56240e-02 6.24000e-02 8.00000e+00 6.40000e+01 5.12000e+02
11 :[1] 3.90624e-03 1.56240e-02 6.24000e-02 8.00000e+00 6.40000e+01 5.12000e+02
12 :[1] 3.90624e-03 1.56240e-02 6.24000e-02 8.00000e+00 6.40000e+01 5.12000e+02
13 :[1] 3.90624e-03 1.56240e-02 6.24000e-02 8.00000e+00 6.40000e+01 5.12000e+02
14 :[1] 3.90624e-03 1.56240e-02 6.24000e-02 8.00000e+00 6.40000e+01 5.12000e+02
15 :[1] 3.90624e-03 1.56240e-02 6.24000e-02 8.00000e+00 6.40000e+01 5.12000e+02
>
> ## using options() *does* things
> for(i in digs1) { DIG(i); cat(i,":"); print (v3) }
1 :[1] 3e-02 3e+00 3e+02 3e+04 3e+06
2 :[1] 3.1e-02 3.1e+00 3.1e+02 3.1e+04 3.1e+06
4 :[1] 3.142e-02 3.142e+00 3.142e+02 3.142e+04 3.142e+06
6 :[1] 3.14159e-02 3.14159e+00 3.14159e+02 3.14159e+04 3.14159e+06
8 :[1] 3.1415927e-02 3.1415927e+00 3.1415927e+02 3.1415927e+04 3.1415927e+06
10 :[1] 3.141592654e-02 3.141592654e+00 3.141592654e+02 3.141592654e+04 3.141592654e+06
11 :[1] 3.1415926536e-02 3.1415926536e+00 3.1415926536e+02 3.1415926536e+04 3.1415926536e+06
12 :[1] 3.14159265359e-02 3.14159265359e+00 3.14159265359e+02 3.14159265359e+04 3.14159265359e+06
13 :[1] 3.14159265359e-02 3.14159265359e+00 3.14159265359e+02 3.14159265359e+04 3.14159265359e+06
14 :[1] 3.1415926535898e-02 3.1415926535898e+00 3.1415926535898e+02 3.1415926535898e+04 3.1415926535898e+06
15 :[1] 3.14159265358979e-02 3.14159265358979e+00 3.14159265358979e+02 3.14159265358979e+04 3.14159265358979e+06
> for(i in digs1) { DIG(i); cat(i,":", formatC(v3, digits=i, width=8),"\n") }
1 : 0.03 3 3e+02 3e+04 3e+06
2 : 0.031 3.1 3.1e+02 3.1e+04 3.1e+06
4 : 0.03142 3.142 314.2 3.142e+04 3.142e+06
6 : 0.0314159 3.14159 314.159 31415.9 3.14159e+06
8 : 0.031415927 3.1415927 314.15927 31415.927 3141592.7
10 : 0.03141592654 3.141592654 314.1592654 31415.92654 3141592.654
11 : 0.031415926536 3.1415926536 314.15926536 31415.926536 3141592.6536
12 : 0.0314159265359 3.14159265359 314.159265359 31415.9265359 3141592.65359
13 : 0.0314159265359 3.14159265359 314.159265359 31415.9265359 3141592.65359
14 : 0.031415926535898 3.1415926535898 314.15926535898 31415.926535898 3141592.6535898
15 : 0.0314159265358979 3.14159265358979 314.159265358979 31415.9265358979 3141592.65358979
>
>
> ## R-0.50: switches to NON-exp at 14, but should only at 15...
> ## R-0.61++: doesn' switch at all (or at 20 only)
> ## S-plus: does not switch at all..
> for(i in digs1) { cat(i,":"); print(v1, digits=i) }
1 :[1] 2e-04 4e-03 2e-02 6e-02 8e+00 6e+01 5e+02
2 :[1] 2.4e-04 3.9e-03 1.6e-02 6.2e-02 8.0e+00 6.4e+01 5.1e+02
4 :[1] 2.441e-04 3.906e-03 1.562e-02 6.240e-02 8.000e+00 6.400e+01 5.120e+02
6 :[1] 2.44141e-04 3.90624e-03 1.56240e-02 6.24000e-02 8.00000e+00 6.40000e+01 5.12000e+02
8 :[1] 2.4414062e-04 3.9062400e-03 1.5624000e-02 6.2400000e-02 8.0000000e+00 6.4000000e+01 5.1200000e+02
10 :[1] 2.44140624e-04 3.90624000e-03 1.56240000e-02 6.24000000e-02 8.00000000e+00 6.40000000e+01 5.12000000e+02
11 :[1] 2.44140624e-04 3.90624000e-03 1.56240000e-02 6.24000000e-02 8.00000000e+00 6.40000000e+01 5.12000000e+02
12 :[1] 2.44140624e-04 3.90624000e-03 1.56240000e-02 6.24000000e-02 8.00000000e+00 6.40000000e+01 5.12000000e+02
13 :[1] 2.44140624e-04 3.90624000e-03 1.56240000e-02 6.24000000e-02 8.00000000e+00 6.40000000e+01 5.12000000e+02
14 :[1] 2.44140624e-04 3.90624000e-03 1.56240000e-02 6.24000000e-02 8.00000000e+00 6.40000000e+01 5.12000000e+02
15 :[1] 2.44140624e-04 3.90624000e-03 1.56240000e-02 6.24000000e-02 8.00000000e+00 6.40000000e+01 5.12000000e+02
>
> ## R 0.50-a1: switches at 10 inst. 11
> for(i in digs1) { cat(i,":"); print(v1[-1], digits=i) }
1 :[1] 4e-03 2e-02 6e-02 8e+00 6e+01 5e+02
2 :[1] 3.9e-03 1.6e-02 6.2e-02 8.0e+00 6.4e+01 5.1e+02
4 :[1] 3.906e-03 1.562e-02 6.240e-02 8.000e+00 6.400e+01 5.120e+02
6 :[1] 3.90624e-03 1.56240e-02 6.24000e-02 8.00000e+00 6.40000e+01 5.12000e+02
8 :[1] 3.90624e-03 1.56240e-02 6.24000e-02 8.00000e+00 6.40000e+01 5.12000e+02
10 :[1] 3.90624e-03 1.56240e-02 6.24000e-02 8.00000e+00 6.40000e+01 5.12000e+02
11 :[1] 3.90624e-03 1.56240e-02 6.24000e-02 8.00000e+00 6.40000e+01 5.12000e+02
12 :[1] 3.90624e-03 1.56240e-02 6.24000e-02 8.00000e+00 6.40000e+01 5.12000e+02
13 :[1] 3.90624e-03 1.56240e-02 6.24000e-02 8.00000e+00 6.40000e+01 5.12000e+02
14 :[1] 3.90624e-03 1.56240e-02 6.24000e-02 8.00000e+00 6.40000e+01 5.12000e+02
15 :[1] 3.90624e-03 1.56240e-02 6.24000e-02 8.00000e+00 6.40000e+01 5.12000e+02
>
> for(i in digs1) { DIG(i); cat(i,":", formatC(v2, digits=i, width=8),"\n") }
1 : 0.0003 0.004 0.02 0.07 8 6e+01 5e+02
2 : 0.00028 0.0043 0.017 0.065 7.7 60 4.6e+02
4 : 0.000278 0.00426 0.01667 0.06527 7.744 59.97 464.4
6 : 0.000278025 0.0042598 0.0166741 0.0652671 7.74425 59.9734 464.449
8 : 0.00027802457 0.0042597958 0.016674069 0.065267111 7.7442472 59.973364 464.44856
10 : 0.000278024569 0.004259795831 0.01667406876 0.0652671114 7.744247174 59.97336429 464.4485569
11 : 0.00027802456903 0.0042597958307 0.016674068761 0.065267111402 7.744247174 59.973364292 464.44855693
12 : 0.000278024569032 0.00425979583072 0.0166740687606 0.0652671114017 7.74424717397 59.9733642915 464.448556928
13 : 0.0002780245690324 0.004259795830724 0.01667406876058 0.06526711140171 7.744247173969 59.97336429153 464.4485569281
14 : 0.0002780245690324 0.0042597958307237 0.016674068760575 0.065267111401713 7.7442471739692 59.97336429153 464.4485569281
15 : 0.000278024569032395 0.00425979583072366 0.0166740687605754 0.0652671114017134 7.74424717396918 59.9733642915296 464.448556928102
>
> for(i in digs1) { cat(i,":"); print(v2, digits=i) } #-- exponential all thru
1 :[1] 3e-04 4e-03 2e-02 7e-02 8e+00 6e+01 5e+02
2 :[1] 2.8e-04 4.3e-03 1.7e-02 6.5e-02 7.7e+00 6.0e+01 4.6e+02
4 :[1] 2.780e-04 4.260e-03 1.667e-02 6.527e-02 7.744e+00 5.997e+01 4.644e+02
6 :[1] 2.78025e-04 4.25980e-03 1.66741e-02 6.52671e-02 7.74425e+00 5.99734e+01 4.64449e+02
8 :[1] 2.7802457e-04 4.2597958e-03 1.6674069e-02 6.5267111e-02 7.7442472e+00 5.9973364e+01 4.6444856e+02
10 :[1] 2.780245690e-04 4.259795831e-03 1.667406876e-02 6.526711140e-02 7.744247174e+00 5.997336429e+01 4.644485569e+02
11 :[1] 2.7802456903e-04 4.2597958307e-03 1.6674068761e-02 6.5267111402e-02 7.7442471740e+00 5.9973364292e+01 4.6444855693e+02
12 :[1] 2.78024569032e-04 4.25979583072e-03 1.66740687606e-02 6.52671114017e-02 7.74424717397e+00 5.99733642915e+01 4.64448556928e+02
13 :[1] 2.780245690324e-04 4.259795830724e-03 1.667406876058e-02 6.526711140171e-02 7.744247173969e+00 5.997336429153e+01 4.644485569281e+02
14 :[1] 2.7802456903240e-04 4.2597958307237e-03 1.6674068760575e-02 6.5267111401713e-02 7.7442471739692e+00 5.9973364291530e+01 4.6444855692810e+02
15 :[1] 2.78024569032395e-04 4.25979583072366e-03 1.66740687605754e-02 6.52671114017134e-02 7.74424717396918e+00 5.99733642915296e+01 4.64448556928102e+02
> ## ^^^^^ digs2 (>= 18: PLATFORM dependent !!
> for(i in digs1) { cat(i,":", formatC(v2, digits=i, width=8),"\n") }
1 : 0.0003 0.004 0.02 0.07 8 6e+01 5e+02
2 : 0.00028 0.0043 0.017 0.065 7.7 60 4.6e+02
4 : 0.000278 0.00426 0.01667 0.06527 7.744 59.97 464.4
6 : 0.000278025 0.0042598 0.0166741 0.0652671 7.74425 59.9734 464.449
8 : 0.00027802457 0.0042597958 0.016674069 0.065267111 7.7442472 59.973364 464.44856
10 : 0.000278024569 0.004259795831 0.01667406876 0.0652671114 7.744247174 59.97336429 464.4485569
11 : 0.00027802456903 0.0042597958307 0.016674068761 0.065267111402 7.744247174 59.973364292 464.44855693
12 : 0.000278024569032 0.00425979583072 0.0166740687606 0.0652671114017 7.74424717397 59.9733642915 464.448556928
13 : 0.0002780245690324 0.004259795830724 0.01667406876058 0.06526711140171 7.744247173969 59.97336429153 464.4485569281
14 : 0.0002780245690324 0.0042597958307237 0.016674068760575 0.065267111401713 7.7442471739692 59.97336429153 464.4485569281
15 : 0.000278024569032395 0.00425979583072366 0.0166740687605754 0.0652671114017134 7.74424717396918 59.9733642915296 464.448556928102
>
> DIG(7)#-- the default; just to make sure ...
>
> N1 <- 10; N2 <- 7; n <- 8
> x <- 0:N1
> Mhyp <- rbind(phyper(x, N1, N2, n), dhyper(x, N1, N2, n))
> Mhyp
[,1] [,2] [,3] [,4] [,5] [,6] [,7] [,8] [,9] [,10] [,11]
[1,] 0 0.0004113534 0.01336898 0.117030 0.4193747 0.7821884 0.9635952 0.99814891 1.00000000 1 1
[2,] 0 0.0004113534 0.01295763 0.103661 0.3023447 0.3628137 0.1814068 0.03455368 0.00185109 0 0
> ##- [,1] [,2] [,3] [,4] [,5] [,6] [,7]
> ##- [1,] 0 0.0004113534 0.01336898 0.117030 0.4193747 0.7821884 0.9635952
> ##- [2,] 0 0.0004113534 0.01295763 0.103661 0.3023447 0.3628137 0.1814068
> ##- [,8] [,9] [,10] [,11]
> ##- [1,] 0.99814891 1.00000000 1 1
> ##- [2,] 0.03455368 0.00185109 0 0
>
> m11 <- c(-1,1)
> Mm <- pi*outer(m11, 10^(-5:5))
> Mm <- cbind(Mm, outer(m11, 10^-(5:1)))
> Mm
[,1] [,2] [,3] [,4] [,5] [,6] [,7] [,8] [,9] [,10] [,11] [,12] [,13] [,14] [,15] [,16]
[1,] -3.141593e-05 -0.0003141593 -0.003141593 -0.03141593 -0.3141593 -3.141593 -31.41593 -314.1593 -3141.593 -31415.93 -314159.3 -1e-05 -1e-04 -0.001 -0.01 -0.1
[2,] 3.141593e-05 0.0003141593 0.003141593 0.03141593 0.3141593 3.141593 31.41593 314.1593 3141.593 31415.93 314159.3 1e-05 1e-04 0.001 0.01 0.1
> do.p <- TRUE
> do.p <- FALSE
> for(di in 1:10) {
+ options(digits=di)
+ cat(if(do.p)"\n", formatC(di, width=2),":", format.info(Mm),"\n")
+ if(do.p)print(Mm)
+ }
1 : 6 0 1
2 : 8 1 1
3 : 9 2 1
4 : 10 3 1
5 : 11 4 1
6 : 12 5 1
7 : 13 6 1
8 : 14 7 1
9 : 15 8 1
10 : 16 9 1
> ##-- R-0.49 (4/1997) R-0.50-a1 (7.7.97)
> ##- 1 : 13 5 0 1 : 6 0 1
> ##- 2 : 8 1 1 = 2 : 8 1 1
> ##- 3 : 9 2 1 = 3 : 9 2 1
> ##- 4 : 10 3 1 = 4 : 10 3 1
> ##- 5 : 11 4 1 = 5 : 11 4 1
> ##- 6 : 12 5 1 = 6 : 12 5 1
> ##- 7 : 13 6 1 = 7 : 13 6 1
> ##- 8 : 14 7 1 = 8 : 14 7 1
> ##- 9 : 15 8 1 = 9 : 15 8 1
> ##- 10 : 16 9 1 = 10 : 16 9 1
> nonFin <- list(c(Inf,-Inf), c(NaN,NA), NA_real_, Inf)
> mm <- sapply(nonFin, format.info)
> fm <- lapply(nonFin, format)
> w <- c(4,3,2,3)
> stopifnot(sapply(lapply(fm, nchar), max) == w,
+ mm == rbind(w, 0, 0))# m[2,] was 2147483647; m[3,] was 1
> cnF <- c(lapply(nonFin, function(x) complex(re=x, im=x))[-3],
+ complex(re=NaN, im=-Inf))
> cmm <- sapply(cnF, format.info)
> cfm <- lapply(cnF, format)
> cw <- sapply(lapply(cfm, nchar), max)
> stopifnot(cw == cmm[1,]+1 +cmm[4,]+1,
+ nchar(format(c(NA, 1 + 2i))) == 4)# wrongly was (5,4)
>
>
> ##-- Ok now, everywhere
> for(d in 1:9) {cat(d,":"); print(v4, digits=d) }
1 :[1] 1e-10 1e-03 2e-03
2 :[1] 1e-10 1e-03 2e-03
3 :[1] 1e-10 1e-03 2e-03
4 :[1] 1e-10 1e-03 2e-03
5 :[1] 1e-10 1e-03 2e-03
6 :[1] 1e-10 1e-03 2e-03
7 :[1] 1e-10 1e-03 2e-03
8 :[1] 0.0000000001 0.0010000001 0.0020000001
9 :[1] 0.0000000001 0.0010000001 0.0020000001
> DIG(7)
>
>
> ###------------ Very big and very small
> umach <- unlist(.Machine)[paste("double.x", c("min","max"), sep='')]
> xmin <- umach[1]
> xmax <- umach[2]
> tx <- unique(c(outer(-1:1,c(.1,1e-3,1e-7))))# 7 values (out of 9)
> tx <- unique(sort(c(outer(umach,1+tx))))# 11 values (+ 1 Inf)
> length(tx <- tx[is.finite(tx)]) # 11
[1] 11
> (txp <- tx[tx >= 1])#-- Positive exponent -- 4 values
[1] 1.617924e+308 1.795895e+308 1.797693e+308 1.797693e+308
> (txn <- tx[tx < 1])#-- Negative exponent -- 7 values
[1] 2.002566e-308 2.222849e-308 2.225074e-308 2.225074e-308 2.225074e-308 2.227299e-308 2.447581e-308
>
> x2 <- c(0.099999994, 0.2)
> x2 # digits=7: show all seven "9"s
[1] 0.09999999 0.20000000
> print(x2, digits=6) # 0.1 0.2 , not 0.10 0.20
[1] 0.1 0.2
> v <- 6:8; names(v) <- v; sapply(v, format.info, x=x2)
6 7 8
[1,] 3 10 11
[2,] 1 8 9
[3,] 0 0 0
>
> (z <- sort(c(outer(range(txn), 8^c(0,2:3)))))
[1] 2.002566e-308 2.447581e-308 1.281643e-306 1.566452e-306 1.025314e-305 1.253162e-305
> outer(z, 0:6, signif) # had NaN's till 1.1.1
[,1] [,2] [,3] [,4] [,5] [,6] [,7]
[1,] 2e-308 2e-308 2.0e-308 2.00e-308 2.003e-308 2.0026e-308 2.00257e-308
[2,] 2e-308 2e-308 2.4e-308 2.45e-308 2.448e-308 2.4476e-308 2.44758e-308
[3,] 1e-306 1e-306 1.3e-306 1.28e-306 1.282e-306 1.2816e-306 1.28164e-306
[4,] 2e-306 2e-306 1.6e-306 1.57e-306 1.566e-306 1.5665e-306 1.56645e-306
[5,] 1e-305 1e-305 1.0e-305 1.03e-305 1.025e-305 1.0253e-305 1.02531e-305
[6,] 1e-305 1e-305 1.3e-305 1.25e-305 1.253e-305 1.2532e-305 1.25316e-305
>
> olddig <- options(digits=14) # RH6.0 fails at 15
> z <- 1.234567891234567e27
> for(dig in 1:14) cat(formatC(dig,w=2),
+ format(z, digits=dig), signif(z, digits=dig), "\n")
1 1e+27 1e+27
2 1.2e+27 1.2e+27
3 1.23e+27 1.23e+27
4 1.235e+27 1.235e+27
5 1.2346e+27 1.2346e+27
6 1.23457e+27 1.23457e+27
7 1.234568e+27 1.234568e+27
8 1.2345679e+27 1.2345679e+27
9 1.23456789e+27 1.23456789e+27
10 1.234567891e+27 1.234567891e+27
11 1.2345678912e+27 1.2345678912e+27
12 1.23456789123e+27 1.23456789123e+27
13 1.234567891235e+27 1.234567891235e+27
14 1.2345678912346e+27 1.2345678912346e+27
> options(olddig)
> # The following are tests of printf inside formatC
> ##------ Use Emacs screen width 134 ; Courier 12 ----
> # cat("dig| formatC(txp, d=dig)\n")
> # for(dig in 1:17)# about >= 18 is platform dependent [libc's printf()..].
> # cat(formatC(dig,w=2), formatC(txp, dig=dig, wid=-29),"\n")
> # cat("signif() behavior\n~~~~~~~~\n",
> # "dig| formatC(signif(txp, dig=dig), dig = dig\n")
> # for(dig in 1:15)#
> # cat(formatC(dig,w=2), formatC(signif(txp, d=dig), dig=dig, wid=-26),"\n")
>
> # if(opt.conformance >= 1) {
> # noquote(cbind(formatC(txp, dig = 22)))
> # }
>
> # cat("dig| formatC(signif(txn, d = dig), dig=dig\n")
> # for(dig in 1:15)#
> # cat(formatC(dig,w=2), formatC(signif(txn, d=dig), dig=dig, wid=-20),"\n")
>
> # ##-- Testing 'print' / digits :
> # for(dig in 1:13) { ## 12:13: libc-2.0.7 diff; 14:18 --- PLATFORM-dependent !!!
> # cat("dig=",formatC(dig,w=2),": "); print(signif(txp, d=dig),dig=dig+1)
> # }
>
> ##-- Wrong alignment when printing character matrices with quote = FALSE
> m1 <- matrix(letters[1:24],6,4)
> m1
[,1] [,2] [,3] [,4]
[1,] "a" "g" "m" "s"
[2,] "b" "h" "n" "t"
[3,] "c" "i" "o" "u"
[4,] "d" "j" "p" "v"
[5,] "e" "k" "q" "w"
[6,] "f" "l" "r" "x"
> noquote(m1)
[,1] [,2] [,3] [,4]
[1,] a g m s
[2,] b h n t
[3,] c i o u
[4,] d j p v
[5,] e k q w
[6,] f l r x
>
> ##--- Complex matrices and named vectors :
>
> x0 <- x <- c(1+1i, 1.2 + 10i)
> names(x) <- c("a","b")
> x
a b
1.0+ 1i 1.2+10i
> (xx <- rbind(x, 2*x))
a b
x 1+1i 1.2+10i
2+2i 2.4+20i
> rbind(x0, 2*x0)
[,1] [,2]
x0 1+1i 1.2+10i
2+2i 2.4+20i
> x[4:6] <- c(Inf,Inf*c(-1,1i))
> x + pi
a b
4.141593+ 1i 4.341593+ 10i NA Inf+ 0i -Inf+NaNi NaN+Infi
> matrix(x + pi, 2)
[,1] [,2] [,3]
[1,] 4.141593+ 1i NA -Inf+NaNi
[2,] 4.341593+10i Inf+0i NaN+Infi
> matrix(x + 1i*pi, 3)
[,1] [,2]
[1,] 1.0+ 4.141593i Inf+3.141593i
[2,] 1.2+13.141593i -Inf+ NaNi
[3,] NA NaN+ Infi
> xx + pi
a b
x 4.141593+1i 4.341593+10i
5.141593+2i 5.541593+20i
> t(cbind(xx, xx+ 1i*c(1,pi)))
x
a 1.0+ 1i 2.0+ 2.000000i
b 1.2+10i 2.4+20.000000i
a 1.0+ 2i 2.0+ 5.141593i
b 1.2+11i 2.4+23.141593i
>
> #--- format checks after incorrect changes in Nov 2000
> zz <- data.frame("(row names)" = c("aaaaa", "b"), check.names = FALSE)
> format(zz)
(row names)
1 aaaaa
2 b
> format(zz, justify = "left")
(row names)
1 aaaaa
2 b
> zz <- data.frame(a = I("abc"), b = I("def\"gh"))
> format(zz)
a b
1 abc def"gh
> # " (font-locking: closing the string above)
>
> # test format.data.frame on former AsIs's.
> set.seed(321)
> dd <- data.frame(x = 1:5, y = rnorm(5), z = c(1, 2, NA, 4, 5))
> model <- glm(y ~ x, data = dd, subset = 1:4, na.action = na.omit)
> expand.model.frame(model, "z", na.expand = FALSE)
y x z
1 1.7049032 1 1
2 -0.7120386 2 2
4 -0.1196490 4 4
> expand.model.frame(model, "z", na.expand = TRUE)
y x z
1 1.7049032 1 1
2 -0.7120386 2 2
3 -0.2779849 3 NA
4 -0.1196490 4 4
>
> ## print.table() changes affecting summary.data.frame
> options(width=82)
> summary(attenu) # ``one line''
event mag station dist accel
Min. : 1.00 Min. :5.000 117 : 5 Min. : 0.50 Min. :0.00300
1st Qu.: 9.00 1st Qu.:5.300 1028 : 4 1st Qu.: 11.32 1st Qu.:0.04425
Median :18.00 Median :6.100 113 : 4 Median : 23.40 Median :0.11300
Mean :14.74 Mean :6.084 112 : 3 Mean : 45.60 Mean :0.15422
3rd Qu.:20.00 3rd Qu.:6.600 135 : 3 3rd Qu.: 47.55 3rd Qu.:0.21925
Max. :23.00 Max. :7.700 (Other):147 Max. :370.00 Max. :0.81000
NA's : 16
> lst <- levels(attenu$station)
> levels(attenu$station)[lst == "117"] <- paste(rep(letters,3),collapse="")
> summary(attenu) # {2 + one long + 2 } variables
event mag
Min. : 1.00 Min. :5.000
1st Qu.: 9.00 1st Qu.:5.300
Median :18.00 Median :6.100
Mean :14.74 Mean :6.084
3rd Qu.:20.00 3rd Qu.:6.600
Max. :23.00 Max. :7.700
station
abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz: 5
1028 : 4
113 : 4
112 : 3
135 : 3
(Other) :147
NA's : 16
dist accel
Min. : 0.50 Min. :0.00300
1st Qu.: 11.32 1st Qu.:0.04425
Median : 23.40 Median :0.11300
Mean : 45.60 Mean :0.15422
3rd Qu.: 47.55 3rd Qu.:0.21925
Max. :370.00 Max. :0.81000
> ## in 1.7.0, things were split to more lines
>
> ## format.default(*, nsmall > 0) -- for real and complex
>
> sf <- function(x, N=14) sapply(0:N, function(i) format(x,nsmall=i))
> sf(2)
[1] "2" "2.0" "2.00" "2.000"
[5] "2.0000" "2.00000" "2.000000" "2.0000000"
[9] "2.00000000" "2.000000000" "2.0000000000" "2.00000000000"
[13] "2.000000000000" "2.0000000000000" "2.00000000000000"
> sf(3.141)
[1] "3.141" "3.141" "3.141" "3.141"
[5] "3.1410" "3.14100" "3.141000" "3.1410000"
[9] "3.14100000" "3.141000000" "3.1410000000" "3.14100000000"
[13] "3.141000000000" "3.1410000000000" "3.14100000000000"
> sf(-1.25, 20)
[1] "-1.25" "-1.25" "-1.25"
[4] "-1.250" "-1.2500" "-1.25000"
[7] "-1.250000" "-1.2500000" "-1.25000000"
[10] "-1.250000000" "-1.2500000000" "-1.25000000000"
[13] "-1.250000000000" "-1.2500000000000" "-1.25000000000000"
[16] "-1.250000000000000" "-1.2500000000000000" "-1.25000000000000000"
[19] "-1.250000000000000000" "-1.2500000000000000000" "-1.25000000000000000000"
>
> oDig <- options(digits= 3)
> sf(pi)
[1] "3.14" "3.14" "3.14" "3.142"
[5] "3.1416" "3.14159" "3.141593" "3.1415927"
[9] "3.14159265" "3.141592654" "3.1415926536" "3.14159265359"
[13] "3.141592653590" "3.1415926535898" "3.14159265358979"
> sf(1.2e7)
[1] "1.2e+07" "1.2e+07" "1.2e+07" "1.2e+07" "1.2e+07" "1.2e+07" "1.2e+07"
[8] "1.2e+07" "1.2e+07" "1.2e+07" "1.2e+07" "1.2e+07" "1.2e+07" "1.2e+07"
[15] "1.2e+07"
> sf(1.23e7)
[1] "12300000" "12300000.0" "12300000.00"
[4] "12300000.000" "12300000.0000" "12300000.00000"
[7] "12300000.000000" "12300000.0000000" "12300000.00000000"
[10] "12300000.000000000" "12300000.0000000000" "12300000.00000000000"
[13] "12300000.000000000000" "12300000.0000000000000" "12300000.00000000000000"
> s <- -0.01234
> sf(s)
[1] "-0.0123" "-0.0123" "-0.0123"
[4] "-0.0123" "-0.0123" "-0.01234"
[7] "-0.012340" "-0.0123400" "-0.01234000"
[10] "-0.012340000" "-0.0123400000" "-0.01234000000"
[13] "-0.012340000000" "-0.0123400000000" "-0.01234000000000"
>
> sf(pi + 2.2i)
[1] "3.14+2.2i" "3.14+2.2i"
[3] "3.14+2.20i" "3.142+2.200i"
[5] "3.1416+2.2000i" "3.14159+2.20000i"
[7] "3.141593+2.200000i" "3.1415927+2.2000000i"
[9] "3.14159265+2.20000000i" "3.141592654+2.200000000i"
[11] "3.1415926536+2.2000000000i" "3.14159265359+2.20000000000i"
[13] "3.141592653590+2.200000000000i" "3.1415926535898+2.2000000000000i"
[15] "3.14159265358979+2.20000000000000i"
> sf(s + pi*1i)
[1] "-0.0123+3.14i" "-0.0123+3.14i"
[3] "-0.0123+3.14i" "-0.0123+3.142i"
[5] "-0.0123+3.1416i" "-0.01234+3.14159i"
[7] "-0.012340+3.141593i" "-0.0123400+3.1415927i"
[9] "-0.01234000+3.14159265i" "-0.012340000+3.141592654i"
[11] "-0.0123400000+3.1415926536i" "-0.01234000000+3.14159265359i"
[13] "-0.012340000000+3.141592653590i" "-0.0123400000000+3.1415926535898i"
[15] "-0.01234000000000+3.14159265358979i"
>
> options(oDig)
>
> e1 <- tryCatch(options(max.print=Inf), error=function(e)e)
Warning message:
In options(max.print = Inf) : NAs introduced by coercion to integer range
> e2 <- tryCatch(options(max.print= 0), error=function(e)e)
> stopifnot(inherits(e1, "error"))
>
>
> ## Printing of "Date"s
> options(width = 80)
> op <- options(max.print = 500)
> dd <- as.Date("2012-03-12") + -10000:100
> writeLines(t1 <- tail(capture.output(dd)))
[476] "1986-02-12" "1986-02-13" "1986-02-14" "1986-02-15" "1986-02-16"
[481] "1986-02-17" "1986-02-18" "1986-02-19" "1986-02-20" "1986-02-21"
[486] "1986-02-22" "1986-02-23" "1986-02-24" "1986-02-25" "1986-02-26"
[491] "1986-02-27" "1986-02-28" "1986-03-01" "1986-03-02" "1986-03-03"
[496] "1986-03-04" "1986-03-05" "1986-03-06" "1986-03-07" "1986-03-08"
[ reached 'max' / getOption("max.print") -- omitted 9601 entries ]
> l6 <- length(capture.output(print(dd, max = 600)))
> options(op)
> t2 <- tail(capture.output(print(dd, max = 500)))
> stopifnot(identical(t1, t2), l6 == 121)
> ## not quite consistent in R <= 2.14.x
>
>
> ## Calls with S3 class are not evaluated when (auto)-printed
> obj <- structure(quote(stop("should not be evaluated")), class = "foo")
> #--
> a <- list(obj)
> b <- pairlist(obj)
> c <- structure(list(), attr = obj)
> d <- list(list(obj, pairlist(obj, structure(list(obj), attr = obj)), NULL))
> # Now auto-print, and explicit print(.) :
> a
[[1]]
stop("should not be evaluated")
attr(,"class")
[1] "foo"
> b
[[1]]
stop("should not be evaluated")
attr(,"class")
[1] "foo"
> c
list()
attr(,"attr")
stop("should not be evaluated")
attr(,"class")
[1] "foo"
> d
[[1]]
[[1]][[1]]
stop("should not be evaluated")
attr(,"class")
[1] "foo"
[[1]][[2]]
[[1]][[2]][[1]]
stop("should not be evaluated")
attr(,"class")
[1] "foo"
[[1]][[2]][[2]]
[[1]][[2]][[2]][[1]]
stop("should not be evaluated")
attr(,"class")
[1] "foo"
attr(,"attr")
stop("should not be evaluated")
attr(,"class")
[1] "foo"
[[1]][[3]]
NULL
> print(a)
[[1]]
stop("should not be evaluated")
attr(,"class")
[1] "foo"
> print(b)
[[1]]
stop("should not be evaluated")
attr(,"class")
[1] "foo"
> print(c)
list()
attr(,"attr")
stop("should not be evaluated")
attr(,"class")
[1] "foo"
> print(d)
[[1]]
[[1]][[1]]
stop("should not be evaluated")
attr(,"class")
[1] "foo"
[[1]][[2]]
[[1]][[2]][[1]]
stop("should not be evaluated")
attr(,"class")
[1] "foo"
[[1]][[2]][[2]]
[[1]][[2]][[2]][[1]]
stop("should not be evaluated")
attr(,"class")
[1] "foo"
attr(,"attr")
stop("should not be evaluated")
attr(,"class")
[1] "foo"
[[1]][[3]]
NULL
> # Now with a method defined (again "auto" + explicit print()):
> print.foo <- function(x, ...) cat("dispatched\n")
> a ; print(a)
[[1]]
dispatched
[[1]]
dispatched
> b ; print(b)
[[1]]
dispatched
[[1]]
dispatched
> c ; print(c)
list()
attr(,"attr")
dispatched
list()
attr(,"attr")
dispatched
> d ; print(d)
[[1]]
[[1]][[1]]
dispatched
[[1]][[2]]
[[1]][[2]][[1]]
dispatched
[[1]][[2]][[2]]
[[1]][[2]][[2]][[1]]
dispatched
attr(,"attr")
dispatched
[[1]][[3]]
NULL
[[1]]
[[1]][[1]]
dispatched
[[1]][[2]]
[[1]][[2]][[1]]
dispatched
[[1]][[2]][[2]]
[[1]][[2]][[2]][[1]]
dispatched
attr(,"attr")
dispatched
[[1]][[3]]
NULL
>
>
> ## tagbuf is preserved after print dispatch in pairlists
> obj <- structure(list(), class = "foo")
> pairlist(a = list(A = obj, B = obj))
$a
$a$A
dispatched
$a$B
dispatched
> list(list(pairlist(obj), NULL)) ## should print [[1]][[2]] \n NULL
[[1]]
[[1]][[1]]
[[1]][[1]][[1]]
dispatched
[[1]][[2]]
NULL
> LLo <- list(list(obj,
+ pairlist(a=obj, b=structure(list(C=obj), attr=obj)),
+ NULL))
> LLo ## tags (names and [[<n>]]) were lost in R <= 3.5.0
[[1]]
[[1]][[1]]
dispatched
[[1]][[2]]
[[1]][[2]]$a
dispatched
[[1]][[2]]$b
[[1]][[2]]$b$C
dispatched
attr(,"attr")
dispatched
[[1]][[3]]
NULL
>
> ## show() is preferred over print() when printing recursively
> print.callS4Class <- function(x, ...) stop("should not be dispatched")
> .CallS4Class <- setClass("callS4Class", slots = c(x = "numeric"))
> setMethod("show", "callS4Class", function(object) cat("S4 show!\n"))
> x <- .CallS4Class(x = 1)
> ## these should all say 'S4 show!'
> list(x) ; pairlist(x) # these 2 failed in R <= 3.5.0
[[1]]
S4 show!
[[1]]
S4 show!
> structure(list(), attr = x)
list()
attr(,"attr")
S4 show!
> rm(x, .CallS4Class)
>
>
> ## Print dispatch does not reset parameters
> local({
+ num <- 0.123456789
+ print(list(num, obj, num), digits = 2) # should print 2 x '0.12'
+ })
[[1]]
[1] 0.12
[[2]]
dispatched
[[3]]
[1] 0.12
>
>
> ## User-supplied arguments are forwarded on print-dispatch
> print.foo <- function(x, other = FALSE, digits = 0L, ...) {
+ cat("digits: ", digits, "\n")
+ stopifnot(other, digits == 4, !...length())
+ }
> a <- list(obj)
> b <- pairlist(obj)
> c <- LLo[[1]][[2]]$b
> d <- LLo
> print(a, digits = 4, other = TRUE)
[[1]]
digits: 4
> print(b, digits = 4, other = TRUE)
[[1]]
digits: 4
> print(c, digits = 4, other = TRUE)
$C
digits: 4
attr(,"attr")
digits: 4
> print(d, digits = 4, other = TRUE)
[[1]]
[[1]][[1]]
digits: 4
[[1]][[2]]
[[1]][[2]]$a
digits: 4
[[1]][[2]]$b
[[1]][[2]]$b$C
digits: 4
attr(,"attr")
digits: 4
[[1]][[3]]
NULL
> #
> ## Deparsing should not reset parameters
> print(list(a, expression(foo), b, quote(foo), c, base::list, d),
+ digits = 4, other = TRUE)
[[1]]
[[1]][[1]]
digits: 4
[[2]]
expression(foo)
[[3]]
[[3]][[1]]
digits: 4
[[4]]
foo
[[5]]
[[5]]$C
digits: 4
attr(,"attr")
digits: 4
[[6]]
function (...) .Primitive("list")
[[7]]
[[7]][[1]]
[[7]][[1]][[1]]
digits: 4
[[7]][[1]][[2]]
[[7]][[1]][[2]]$a
digits: 4
[[7]][[1]][[2]]$b
[[7]][[1]][[2]]$b$C
digits: 4
attr(,"attr")
digits: 4
[[7]][[1]][[3]]
NULL
>
> ## max.print fully obeyed by print and format
> ## These failed briefly due to bug in r76734
> o <- options(max.print = 5)
> 1:10
[1] 1 2 3 4 5
[ reached 'max' / getOption("max.print") -- omitted 5 entries ]
> as.numeric(1:10)
[1] 1 2 3 4 5
[ reached 'max' / getOption("max.print") -- omitted 5 entries ]
> as.character(1:10)
[1] "1" "2" "3" "4" "5"
[ reached 'max' / getOption("max.print") -- omitted 5 entries ]
> as.complex(1:10)
[1] 1+0i 2+0i 3+0i 4+0i 5+0i
[ reached 'max' / getOption("max.print") -- omitted 5 entries ]
> as.raw(1:10)
[1] 01 02 03 04 05
[ reached 'max' / getOption("max.print") -- omitted 5 entries ]
> options(o)
>
> ## print() max.print and max for matrices (w/ many columns) -- PR#15027
> ## whenever the columns are larger than max.print, no values inside the matrix are displayed
> print(matrix(nrow = 100, ncol = 4), max = 5)
[,1] [,2] [,3] [,4]
[1,] NA NA NA NA
[ reached 'max' / getOption("max.print") -- omitted 99 rows ]
> print(matrix(nrow = 100, ncol = 100), max = 40) # omitting rows and columns
[,1] [,2] [,3] [,4] [,5] [,6] [,7] [,8] [,9] [,10] [,11] [,12] [,13]
[1,] NA NA NA NA NA NA NA NA NA NA NA NA NA
[,14] [,15] [,16] [,17] [,18] [,19] [,20] [,21] [,22] [,23] [,24] [,25]
[1,] NA NA NA NA NA NA NA NA NA NA NA NA
[,26] [,27] [,28] [,29] [,30] [,31] [,32] [,33] [,34] [,35] [,36] [,37]
[1,] NA NA NA NA NA NA NA NA NA NA NA NA
[,38] [,39] [,40]
[1,] NA NA NA
[ reached 'max' / getOption("max.print") -- omitted 99 rows and 60 columns ]
> print(matrix(nrow = 10, ncol = 4), max = 3) # (ditto)
[,1] [,2] [,3]
[1,] NA NA NA
[ reached 'max' / getOption("max.print") -- omitted 9 rows and 1 column ]
> print(matrix(nrow = 0, ncol = 4), max = 3) # omitting 1 column
[,1] [,2] [,3]
[ reached 'max' / getOption("max.print") -- omitted 1 column ]
> print(matrix(nrow = 10, ncol = 2), max = 5) # omitting rows
[,1] [,2]
[1,] NA NA
[2,] NA NA
[ reached 'max' / getOption("max.print") -- omitted 8 rows ]
> print(matrix(nrow = 1, ncol = 6), max = 5) # omitting 1 col, at least one row prints
[,1] [,2] [,3] [,4] [,5]
[1,] NA NA NA NA NA
[ reached 'max' / getOption("max.print") -- omitted 1 column ]
> ## ----- "higher" arrays ("rank >= 3"): --------
> print(array(dim = c(2, 2, 2)), max = 4) # omit 1 slice
, , 1
[,1] [,2]
[1,] NA NA
[2,] NA NA
[ reached 'max' / getOption("max.print") -- omitted 1 slice ]
> print(array(dim = c(2, 2, 2)), max = 5) # omit 1 row + 1 column
, , 1
[,1] [,2]
[1,] NA NA
[2,] NA NA
, , 2
[,1]
[1,] NA
[ reached 'max' / getOption("max.print") -- omitted 1 row 1 column ]
> print(array(dim = c(2, 2, 2)), max = 6) # omit 1 row
, , 1
[,1] [,2]
[1,] NA NA
[2,] NA NA
, , 2
[,1] [,2]
[1,] NA NA
[ reached 'max' / getOption("max.print") -- omitted 1 row ]
> print(array(dim = c(2, 2, 2)), max = 7) # omit 1 row
, , 1
[,1] [,2]
[1,] NA NA
[2,] NA NA
, , 2
[,1] [,2]
[1,] NA NA
[ reached 'max' / getOption("max.print") -- omitted 1 row ]
> #
> print(array(dim = c(2, 2, 1)), max = 2) # omit 1 row
, , 1
[,1] [,2]
[1,] NA NA
[ reached 'max' / getOption("max.print") -- omitted 1 row ]
> print(array(dim = c(2, 2, 1)), max = 1) # omit 1 row + 1 column
, , 1
[,1]
[1,] NA
[ reached 'max' / getOption("max.print") -- omitted 1 row 1 column ]
>
>
>
> ## Cleanup
> rm(print.foo, obj, a, b, c, d, o)
>
|