Martin Hinsch

Results 18 issues of Martin Hinsch

Gerbera crashes for me with a `std::out_of_range` exception from `map::at` in line 49 of `config_options.cc`.

The boxes in a boxplot scale freely according to the axes. If the y range of the data is small enough the boxes completely disappear. There should be a minimum...

If I want to plot a scatter plot on top of a box plot with `visual(BoxPlot) + visual(Scatter)` using colour to distinguish an additional dimension (with `color=:var, dodge=:var` in `mapping`)...

If the `date` field contains the month and the year, e.g. `12/2014`, it seems the 12 is interpreted as the (beginning of?) the year.

For tiled windows the title bar is not very useful, so for maximum screen space it would be nice to be able to be able to hide it (when tiled).

enhancement

I have a tsv file that contains object ids (as produced by `objectid`) as the first two columns. When reading with `CSV.read(fname, DataFrame)`, the first column is correctly recognised as...

bug

This is probably either too much work or outside of the scope of the package altogether, but it would be very useful if there was a way to tell the...

As it is now the cache generated by `@memoize` will always by of type `Any => Any` which can be sub-optimal. If argument and return types of the memoized function...

This used to work but doesn't any more: ```Julia using CompositeStructs struct A{T} x :: T end @composite struct B A{B}... end ``` This is the error message I get:...

MWE: ```julia @kwdef struct Foo{T} x :: Int = sizeof(T) end @composite @kwdef struct Bar Foo{Int}... end ``` Calling `Bar()` errors with "UndefVarError: `T` not defined". The problem seems to...