dax44

Results 3 issues of dax44

`flextable` function won't show tables after rendering qmd files to html, but for pdf and docx works. If I write the following code ``` library(flextable) mtcars |> head() |> flextable()...

I've learned Keras sequential model with the following code: ``` library(keras) library(fastshap) x_train slice(1:100) |> select(-Species) |> as.matrix() y_train slice(1:100) |> select(Species) |> mutate(Species = as.numeric(Species)-1) |> as.matrix() mod layer_dense(units...

Why `ggdistribution(ppois, seq(0, 30), lambda = 20)` gives me continous function?

bug
contributions welcome