I would support this suggestion. There is a similar binary
dependency chain from Matrix → TMB → glmmTMB; we have implemented
various checks to make users aware that they need to reinstall from
source, and to some extent we've tried to push out synchronous updates
(i.e., push an update of TMB
CRAN, by relying on the powerful package management system that is part of R,
provides an unparalleled framework for extending R with nearly 20k packages.
We recently encountered an issue that highlights a missing element in the
otherwise outstanding package management system. So we would like t
I guess my memory was off slightly. Densities are only plotted with freq=TRUE.
Still there the ever present conundrum that 0 counts cannot be sensibly
represented.
Why not:
hist( log(x), …) #? In situations where it might make sense.
Sent from my iPhone
> On Aug 6, 2023, at 9:01 AM, David W
hist() is designed so that the total area sums to 1. You should build you
desired behavior using a barchart.
—
David
Sent from my iPhone
> On Aug 5, 2023, at 11:50 PM, Ott Toomet wrote:
>
> Sorry if this topic has been discussed earlier.
>
> Currently, hist(..., log="y") fails with
>
>>
В Sun, 6 Aug 2023 12:18:09 +0200
Kurt Hornik пишет:
> IIrc all Linux versions advertize themselves as something like
>
> HTML Tidy for Linux version 5.8.0
>
> What about windows and macOS?
I've checked the "modern" Windows binaries of HTML Tidy, and they say
so too. Cannot check the macOS ve
I have done this using attributes:
fr <- function(x) { ## Rosenbrock Banana function
x1 <- x[1]
x2 <- x[2]
ans <- 100 * (x2 - x1 * x1)^2 + (1 - x1)^2
attr(ans, "extra1") <- 1:10
attr(ans, "extra2") <- letters
ans
}
Not sure if this works in your case though.
Cheers,
Ott
On S