Re: [Rd] Make factanal accept functions for rotation parameter

2024-08-22 Thread Haan, Stefan via R-devel
ted out, the condition should really be ``` is.function(rotation) || rotation != "none" ``` as != would fail before is.function(rotation) is evaluated. Best greetings, Stefan On Thu, 2024-08-22 at 18:09 +0200, Martin Maechler wrote: > > > > > > Haan, Stefan via R-deve

[Rd] Make factanal accept functions for rotation parameter

2024-08-22 Thread Haan, Stefan via R-devel
Dear R developers, Would it be possible to make `factanal` to also accept functions and not just function names for its `rotation` parameter? If I understand correctly, `do.call` also supports this. Best greetings, Stefan Index: src/library/stats/R/factanal.R =