Correcting message when printing objects with more than max
entries
#3
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
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.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:
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
print.default()
calls the Internal function do_printdefaultIs 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.
The text was updated successfully, but these errors were encountered: