Jakob
Jakob
Is there a julia equivalent to `dash-auth` in Python or some other means for authentication?
How do you access the `data-*` wildcard attributes in julia?
Issue in response to [this discourse thread](https://discourse.julialang.org/t/order-of-legend-entries-in-algebraofgraphics/77753/4). Specifying a color sorter to reorder legend entries when a palette with pairs of labels and colors is used errors: ```julia labels =...
I get the below error when trying to perform a join on distributed tables. Here's a MWE: ``` t1 = table((lk = [1,1,2,2,3], v1 = rand(5)), chunks = 2) t2...
When I run the example for unit of work transactions, I receive the following error: ```julia julia> driver = Neo4jBoltDriver("bolt://127.0.0.1:7687", auth=("neo4j", "password")) Neo4jBoltDriver(address: Address(scheme: bolt, host: 127.0.0.1 port: 7687)) julia>...
Upon trying to remove sparse terms from a corpus via ```julia remove_sparse_terms!(corp, .05) ``` I run into the following error message: ```julia PCRE compilation error: regular expression is too large...
It would be convenient if you could do something like `filter(f -> f.NAME == "France", collection)`, but currently filtering is not supported. Right now, I'm naivley pirating this like so:...
Following [this](https://app.slack.com/client/T68168MUP) slack thread, it would be nice to have an implementation of [std::partition](https://en.cppreference.com/w/cpp/algorithm/partition).
I have a carousel (using flickity) which contains a set of card elements. In principle this works really well and also plays nicely with Tailwind, which is amazing! I however...
Specifying a tooltip via the encoding channel with multiple fields results in a method error for `augment_encoding_type`, which expects an `AbstractDict` and has no method for a `Vector{AbstractDict}`. Here's an...