Daniel Slutsky

Results 103 issues of Daniel Slutsky

We will use this issue to record cases of failures that are hard to debug.

1. The user can avoid this by wrapping with `(kind/hiccup [:div ...])`.

Zulip discussion: https://clojurians.zulipchat.com/#narrow/stream/422115-clay-dev/topic/quarto.20books/near/457380965

https://scicloj.github.io/clojure-data-tutorials/projects/ml/sklearn-clj is quite useful.

Zulip discussion: https://clojurians.zulipchat.com/#narrow/stream/151763-beginners/topic/datetime.20problem.20in.20tablecloth.20group-by Here is a self-contained example. Create the file `d.csv` as follows: ```csv date,x 2021-01-01,1 2021-01-02,2 ``` Then: ```clj (require '[tablecloth.api :as tc]) (-> "d.csv" (tc/dataset {:key-fn keyword})...

The following was reported by @lvh on a Slack thread: https://clojurians.slack.com/archives/C0BQDEJ8M/p1727016052908239 `tablecloth.api/percentiles` is currently expected to add a column to a dataset, but this does not make sense. https://github.com/scicloj/tablecloth/blob/1d501aa/src/tablecloth/api.clj#L1790 The...

@krukow @behrica I think the new additions to `clojupyter.misc.kind` are fantastic, really a game-changer in offering Clojure to new users. Currently, Cheshire is used to convert values to JSON. For...