Re: [Rd] FR: improve "use" function

2025-06-04 Thread Roland Fuß via R-devel
As a user I would prefer: A (classed) error if I ask for something impossible. A (classed) warning if 'include.only' is handled as 'include' (because I might rely on the .only part for some reason and have forgotten that I have already attached the namespace). - Ursprüngliche Mail - >

[Rd] FR: improve "use" function

2025-05-23 Thread Roland Fuß via R-devel
data.table", "nafill") ls("package:data.table") #[1] "fread" "nafill"| [1] https://stackoverflow.com/q/79633064/1412059 -- Dr. Roland Fuß Thünen-Institut für Agrarklimaschutz/ Thünen Institute of Climate-Smart Agriculture Bundesallee 65 D-38116

[Rd] Small typo in nlme documentation

2025-01-07 Thread Roland Fuß via R-devel
Hi, I've noticed a small typo in `help("varClasses", "nlme")`. Contrary to what the "Note" says, variance classes need a method for `Initialize` (capital i) and not `initialize`. Best regards, Roland -- Dr. Roland Fuß Thünen-Institut für Agrarklimaschutz

[Rd] Recycling in arithmetic operations involving zero-length vectors

2023-01-16 Thread Roland Fuß
is recycled to the length of the longer vector. Would it be possible to throw at least a warning for such cases? I don't expect them to be intended by most users. Best regards, -- Dr. Roland Fuß Thünen-Institut für Agrarklimaschutz/ Thünen Institute of Climate-Smart Agriculture Bu

Re: [Rd] Date method of as.POSIXct does not respect tz

2022-09-20 Thread Roland Fuß
Hello, May I follow up on this? Has it fallen through the cracks or were there considerations against passing `tz` to `.POSIXct`? Regards, Roland Am 17.05.2018 um 19:55 schrieb Martin Maechler: Roland Fuß on Wed, 16 May 2018 17:21:07 +0200 writes: > R 3.5.0 Is it intended t

[Rd] OfficeScan deletes Rterm as malware

2018-12-20 Thread Roland Fuß
by Rterm.exe. I've deinstalled R 3.5.2 for now and switched back to 3.5.1, which works fine. Best, Roland Fuß __ R-devel@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-devel

Re: [Rd] Date method of as.POSIXct does not respect tz

2018-05-18 Thread Roland Fuß
Am 17.05.2018 um 19:55 schrieb Martin Maechler: Roland Fuß on Wed, 16 May 2018 17:21:07 +0200 writes: > R 3.5.0 Is it intended that the Date method of as.POSIXct > does not respect the tz parameter? I suggest changing > as.POSIXct.Date which is fu

[Rd] Date method of as.POSIXct does not respect tz

2018-05-16 Thread Roland Fuß
R 3.5.0 Is it intended that the Date method of as.POSIXct does not respect the tz parameter? I suggest changing as.POSIXct.Date to this: function (x, tz = "", ...) .POSIXct(unclass(x) * 86400, tz = tz) Currently, the best workaround seems to be using the character method if one doesn't wan