Graham Smith
Graham Smith
Since a stacked barplot can't be constructed as a sequence of labeled plots, I'm not sure how to construct a legend other than from the axis. However, `Legend(fig, stack_ax)` cannot...
Feel free to close this if this is expected/tolerated. I just happened across this error when trying to serialize an object that contained an FFTPlan, and the serializer (BSON) trips...
I'm posting here rather than AxisIndices because I checked `src/Interpolations.jl:273` and found a comment stating that the offending method is at a "non-exported point in the dispatch hierarchy" in order...
Implement a function `domaincheck(L::AbstractDiffEqLinearOperator, u)` to see if components of `L` along each dimension match the size of `u`.
In some cases, @ turbo is far slower on BitArrays than on anything else, and in other cases check_args fails and the vectorization doesn't happen. I can't replicate the check_args...
Dev'ing my private repos is failing today, where it worked yesterday. `git pull` works fine. I'm on julia v1.6.2 Ubuntu and v1.6.5 Windows. As the final phase in updating their...
Faceting fails silently when the faceted variable is numeric. ```julia df = (x=rand(100), y=rand(100), j=rand(1:6, 100)) plt = data(df) * mapping(:x, :y, row=:j) draw(plt) ``` This plots all points in...
I'm not sure how to specify grid and spines of a facet through `draw`, nor can I find an answer in the docs. The code below worked a few weeks...
I get the following error with the attached file. Here's a file that's causing the problem (renamed to txt, hoping Github won't get mad). [ensemble_solution.txt](https://github.com/JuliaData/JuliaDB.jl/files/5199194/ensemble_solution.txt) I eventually figured out that...
``` @everywhere using JuliaDB indicesA = (S=[0.6, 0.7], T=[1,2.0]) indicesB = (S=[1.6, 1.7], T=[2,5.0]) valsAscalar = (u=[1, 2], t=[2, 3]) valsBscalar = (u=[30, 50], t=[4, 5]) Ascalar = ndsparse(indicesA, valsAscalar)...