Sebastian

Results 100 issues of Sebastian

Attempting to assign a scale date to column that stores the dates as strings is currently broken. It never calls the procedure to generate the ticks for it. In `ggplot_ticks`...

When using `geom_bar` with already computed statistics and stacking them based on some additional fill column (different groups by color), the generation of the plot can fail if not every...

While these can be easily done via `geom_linerange`, it's easier and more intuitive to support these. Implementation should be straightforward. On the implementation side we should probably do it by...

Currently the `aes` macro is very picky about the kind of NimNodes it accepts. Sometimes if one wishes to assign a scalar value (and in theory even a vector like...

For some reason our docgen fails on CI now....

Take the old example from the [nimib penguins example](https://pietroppeter.github.io/nimib/penguins.html): ```nim ggplot(df, aes(x="body_mass_g", y="flipper_length_mm", color = "sex", shape="species")) + geom_point() + ggsave("/tmp/broken.png") ``` using the dataset from here: https://github.com/allisonhorst/palmerpenguins It gives...

I just thought I introduced a regression with PR #115, because the following is broken: ```nim import ggplotnim template callMe(): untyped = let couplings = newSeq[float](10) let vals = newSeq[float](10)...

Trying to combine `stat = "bin"` for any geom with log plots is currently broken. Instead of something like: ![log_log_sampled_energy_for_energy_loss](https://user-images.githubusercontent.com/7742232/121069099-60baa580-c7cd-11eb-89d9-f0c7fb819fd8.png) we instead get something like: ![broken_stat_bin](https://user-images.githubusercontent.com/7742232/121069339-a4adaa80-c7cd-11eb-9118-7e4b7adc875f.png) Clearly assigning x/y pairs...

It seems that cairo on different platforms produces slightly different results. This may just be related to using `strWidth/Height` in some of our computations, which might then be different, due...

With the following data ranges for the two geoms: ``` 1. (low: 4.740334241187842, high: 5.570311792097331) 2. (low: 1.966464433299198, high: 2.030504138958957) ``` the plot cannot be created, because we only look...