Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correcting message when printing objects with more than max entries #3

Open
hturner opened this issue Apr 19, 2024 · 0 comments
Open
Labels
C Issues requiring knowledge of C Hutch 2024 Issues reserved for R Dev Day @ Hutch 2024 I/O Issues related to the input/output system needs analysis Track down the cause of the bug, or identify as not a bug

Comments

@hturner
Copy link
Member

hturner commented Apr 19, 2024

This is a side issue that came out of the analysis at the Bug BBQ of Bug 15027 on Bugzilla, cc @huizezhang-sherry, @gmbecker.

When a data frame has more than max entries, a sensible error message is printed, e.g.

print(as.data.frame(matrix(nrow = 20, ncol = 20)), max = 5)
#>      V1 V2 V3 V4 V5 V6 V7 V8 V9 V10 V11 V12 V13 V14 V15 V16 V17 V18 V19 V20
#>  [ reached 'max' / getOption("max.print") -- omitted 20 rows ]

Created on 2024-04-19 with reprex v2.0.2

However, for vectors, matrices, and arrays, the message incorrectly refers to the "max.print" option only:

getOption("max.print")
#> [1] 99999
print(numeric(10), max = 5)
#> [1] 0 0 0 0 0
#>  [ reached getOption("max.print") -- omitted 5 entries ]
print(matrix(nrow = 20,ncol = 20), max = 5)
#>       [,1] [,2] [,3] [,4] [,5] [,6] [,7] [,8] [,9] [,10] [,11] [,12] [,13]
#>       [,14] [,15] [,16] [,17] [,18] [,19] [,20]
#>  [ reached getOption("max.print") -- omitted 20 rows ]
print(array(dim = c(6, 6, 6)), max = 5)
#>  [ reached getOption("max.print") -- omitted 6 matrix slice(s) ]

Created on 2024-04-19 with reprex v2.0.2

In the case of data frames, the message comes from these lines of R code in print.data.frame: https://github.com/r-devel/r-svn/blob/890b1909d84975b732997eb503a6fa9b172dd4a3/src/library/base/R/dataframe.R#L1507-L1509.

Otherwise, the message "reached getOption("max.print")" comes from the C code - not investigated fully but

Is it as simple as removing the special casing from print.data.frame and updating the message to "reached 'max' / getOption("max.print")" everywhere? This needs further analysis and possibly testing of a patch.

@hturner hturner added needs analysis Track down the cause of the bug, or identify as not a bug I/O Issues related to the input/output system C Issues requiring knowledge of C labels Apr 19, 2024
@hturner hturner added the PLUS 2024 Issues reserved for R Dev Day @ PLUS 2024 label Jun 4, 2024
@hturner hturner added Hutch 2024 Issues reserved for R Dev Day @ Hutch 2024 and removed PLUS 2024 Issues reserved for R Dev Day @ PLUS 2024 labels Jul 16, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C Issues requiring knowledge of C Hutch 2024 Issues reserved for R Dev Day @ Hutch 2024 I/O Issues related to the input/output system needs analysis Track down the cause of the bug, or identify as not a bug
Projects
None yet
Development

No branches or pull requests

1 participant