awb99

Results 191 comments of awb99

If you just review and merge, then I can use it in deps.edn projects fine. And if it is helpful to you I could try it in the next 2-4...

Unfortunately I cannot add snapshot dependencies; most of my libraries are on clojars, and I cannot depend on snapshot dependencies. I was looking for a commit somewhere, a branch or...

I also have adapted your macro with-show that creates png files from matplotlib plots. https://github.com/pink-gorilla/python-gorilla/blob/master/src/pinkgorilla/python/plot.clj With the adapted version, matplotlib plots will be stored and rendered to a pinkgorilla notebook.

Could it be that plots need to be closed after plotting them? i am getting errors after makibng a few seaborn plots. ![Screenshot from 2020-04-23 00-06-25](https://user-images.githubusercontent.com/10854682/80061232-515b9880-84f6-11ea-8418-ccd4cfdf252b.png)

This is a namespace that can be used to reproduce the bug I posted: ``` (ns notebook.playground.bardb.bug-duckdb (:require [tick.core :as t] [tablecloth.api :as tc] [tmducken.duckdb :as duckdb])) (def db (duckdb/open-db...

https://github.com/pink-gorilla/nrepl-middleware I just refactored this project from leiningen to tools.deps. https://github.com/clojure-quant/trateg/blob/master/demo/deps.edn in trateg I do experiments with using local only projects. The link is a demo project that uses the...

This is my current approach: https://github.com/clojure-quant/techml.vector-math/blob/main/test/syntax.clj (s/calc d [x (+ a b) y (+ x c) z [y 1] ]) This is the macro that adds bindings to all columns...

My goal is to be able to enter vector math in a format that has identical syntax to a scalar only math. So (* a b) in vector mode means...

I believe I know what is the issue: clojars artefacts can only have dependencies that are in clojars.

the interesting thing is that the reader did work. and it is also interesting that subsequent transact were working again.