Hi,
I was wondering if it would be possible to add an argument to the aggreagte
function to retain NA by categories?(default can not to in order to avoid
breaking code) Please see below example:
df = iris
df$Species[5] = NA
aggregate(`Petal.Width` ~ Species, df, sum) # does not include NA
aggrega
Le 20/11/2019 à 09:56, Hilmar Berger a écrit :
Hi Florian,
just a guess, but couldn't it be that the multiplication of very small
values leads to FP underflow exceptions which have to be handled by
BLAS in a less efficient way than "normal" multiplications handled by
SIMD instructions ?
Anoth
Hi Florian,
just a guess, but couldn't it be that the multiplication of very small
values leads to FP underflow exceptions which have to be handled by BLAS
in a less efficient way than "normal" multiplications handled by SIMD
instructions ?
Best regards,
Hilmar
On 19/11/2019 15:09, Florian