genmeblog

Results 156 comments of genmeblog

Just to leave it before pull request. Formals is defined as below: ```clojure (def ^:private empty-symbol (symbol "")) (defn formals [{:keys [code class]}] (when (= class ["function"]) (let [args (->...

Sorry for duplicate.

Great! Regarding 4: this would be the best solution. But remember that meta are attached to symbol not to object itself.

There are certain number of issues here. 1. Wrapping into function. As I answered [here](https://clojurians.zulipchat.com/#narrow/stream/224816-clojisr-dev/topic/plotting.20api), this is how R plotting works. You have to know which method works which way:...

Maybe there is something wrong with escaping certain characters when converting to a String on Clojure side? What we do we `slurp` generated SVG by R and pass it to...

Ok, looks like the same svg embedded in html renders bad but when opened just svg in a browser everything is render properly. Any idea what is going there? Maybe...

@awb99 I found the reason - every SVG generated by R contains `defs` section with definition of glyphs under the same names. And when you put two different SVG files...

`require-r` is regular function and should work, what error do you get?

Maybe something with `intern` function which is used to create namespaces and functions?

I will test it soon. `require-r` should work from a function. `defs` macro should also work. Can you give me example of `defs` usage?