Daniel Slutsky

Results 89 issues of Daniel Slutsky

Function metadata will allow tooling such as [ElDoc](https://docs.cider.mx/cider/config/eldoc.html) help the user know what arguments are expected. Here again, the experience of Libpython-clj can teach us a lot. See [this](https://clojurians.zulipchat.com/#narrow/stream/215609-libpython-clj-dev/topic/python-library-import) and...

enhancement

At the moment, `require-r` supports only basic syntax analogous to Clojure's `require` and Libpython-clj's `require-python`. We wish it to become fully compatible with `require`-like syntax.

enhancement

Both R and the JVM have a good story for processing geospatial data. R has [sf](https://r-spatial.github.io/sf/articles/sf1.html), Java has [JTS](https://locationtech.github.io/jts/), etc. Communicating between the two has a good potential for Clojure....

enhancement

The current notion of sessions (Rserve sessions in the current implementation) requires some rethinking to allow for a more robust experience. See some discussion [here](https://clojurians.zulipchat.com/#narrow/stream/204621-r-interop/topic/clojuress.20on.20clojupyter).

bug
discussion

At the moment, most documentation and testing is done in [the tutorials](https://github.com/scicloj/clojuress#tutorials). We need to see if and how this workflow could live in harmony with a systematic API documentation...

documentation
help wanted

We may want the statical HTML version of notebooks to be indexable by search engines. For that, it makes sense to render the markdown parts as plain HTML, rather than...

The following example: ```clj (ns images (:require [nextjournal.clerk :as clerk])) (import javax.imageio.ImageIO java.net.URL) (clerk/html [:div [:h1 "image1"] (ImageIO/read (URL. "https://images.unsplash.com/photo-1532879311112-62b7188d28ce?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8")) [:h1 "image2"] (ImageIO/read (URL. "https://images.unsplash.com/photo-1532879311112-62b7188d28ce?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8"))]) ``` results in the following:...

Probably this is a matter of taste, but I think it could be helpful to have a very short description that says what tablecloth is. This could be useful in...

Currently (checked with https://github.com/scicloj/tablecloth/commit/a067803de29daf58240f720014cd02b6fa4bca46), it is possible to specify the type of a new column using a call to `dtype-next`. ```clj (-> {:x [1 2]} (tablecloth.api/dataset) (tablecloth.api/add-or-replace-column :y (tech.v3.datatype/as-reader [1...