Carsten Behring

Results 517 comments of Carsten Behring

now as well the `str-md`

I think I made all "lazy", keeping full functionality. running `clj src/clojisr/v1/r.clj` does not trigger initialize R any more, so namespace can be required and does not try to connect...

lates commit https://github.com/scicloj/clojisr/pull/99/commits/c952bed0f66028d1b58b3b84c442b70995ee6895 here fixes as well #96

Where is the code which defines x %% y x %/% y %in% ? Its mentioned in CHANGELOG, but cannot find it

@genmeblog any progress on the review of this PR ?

is this ready to be merged ?

I am just wondering if this is not better called a "clay option". Just from the reflection, that this cannot be implemented in clojupyter.

these don't work neither: ``` (r.base/matrix (r/clj->r tensor)) (r.base/matrix tensor) ```

For reference, it does work like this: ```clojure (require '[tech.v3.tensor :as tens] '[tech.v3.datatype :as dtt]) (-> tensor tens/tensor->buffer (r.base/matrix :nrow (first (dtt/shape tensor)) :ncol (second (dtt/shape tensor)) ) r.base/t )...

Some remarks: - tech.v3.tensor tensors multi dimensional, R matrices 2D not all tensors can be converted - tensors are implementations of https://github.com/cnuernber/dtype-next/blob/master/java/tech/v3/datatype/NDBuffer.java so maybe the integration could / should be...