library(dplyr)
library(tibble)
a <- as_tibble(seq(1:10))
for (i in 1:50) print( a %>% summarise(value = mean(value), sd = sd(value)) )
On my machine the sd result is sometimes 1.73, sometimes Inf. Something very strange is going on here.
#2169 (comment), CC @nuskcalb.
On my machine the
sdresult is sometimes1.73, sometimesInf. Something very strange is going on here.#2169 (comment), CC @nuskcalb.