Not in print.default(), but in print.data.frame(), which is now doing its own 
max= handling but not passing max to print.default (maechler, r75122 --- was 
this really for r-patched?

-pd

> On 22 Sep 2018, at 23:46 , Gábor Csárdi <csardi.ga...@gmail.com> wrote:
> 
> The max argument of print.default() does not override
> options(max.print), see below.
> R 3.5.1 and  R-devel both seem good.
> 
> Gábor
> 
>> options(max.print = 1)
>> print(data.frame(a=1:10))
>  a
> 1 1
> [ reached 'max' / getOption("max.print") -- omitted 9 rows ]
>> print(data.frame(a=1:10), max  = 100)
>    a
> 1   1
> [ reached getOption("max.print") -- omitted 9 rows ]
>> options(max.print = 1000)
>> R.version
>               _
> platform       x86_64-w64-mingw32
> arch           x86_64
> os             mingw32
> system         x86_64, mingw32
> status         Patched
> major          3
> minor          5.1
> year           2018
> month          09
> day            11
> svn rev        75286
> language       R
> version.string R version 3.5.1 Patched (2018-09-11 r75286)
> nickname       Feather Spray
>> 
> 
> ______________________________________________
> R-devel@r-project.org mailing list
> https://stat.ethz.ch/mailman/listinfo/r-devel

-- 
Peter Dalgaard, Professor,
Center for Statistics, Copenhagen Business School
Solbjerg Plads 3, 2000 Frederiksberg, Denmark
Phone: (+45)38153501
Office: A 4.23
Email: pd....@cbs.dk  Priv: pda...@gmail.com

______________________________________________
R-devel@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-devel

Reply via email to