Igor Alshannikov

Results 285 comments of Igor Alshannikov

Hi, @aeturrell I would like to let you know we are now using your books as the [de-facto user guide](https://lets-plot.org/python/index.html#python-index-user-guide) for lets-plot :) If you don't mind of course. BTW...

Absolutely, I'm keeping track of my books on Goodreads, but apart from rating them, this is my first book review ever :) https://www.goodreads.com/review/show/6258370366

Thanx for the books :)

Hi, yes, it seems `lims` aren't working for y-axis in barchart. See related issue: https://github.com/JetBrains/lets-plot-kotlin/issues/219 However, stacked bars poses a kind of discrepancy between user's expectations and how scale's limits...

That's right, "coord limits" work as a visual zooming. With "scale limits", the key difference is that setting these limits discards all data outside the range. Here is the relevant...

Hi, regarding annotation labels on bars - congrats, you nailed a bug :) : https://github.com/JetBrains/lets-plot/issues/981 As for `geom_text()`, the key thing you have to do is to use the "group"...

> but I don't understand why you wouldn't just use color or fill instead. You are right, as long as you map color aesthetic in `geom_text()` layer (color or fill...

Hi @OSuwaidi this overlapping you can try to fix using `vjust` in [`position_stack`](https://lets-plot.org/pages/api/lets_plot.position_stack.html#lets_plot.position_stack): ``` geom_text(position=position_stack(vjust=0.9)) ``` > labels=layer_labels(['sales_value']) doesn't work with coord_cartesian(), yet This is fixed already - will work...

Hi @OSuwaidi , the issue with "scale limits" was fixed in v4.3.0. Note however that "coord system limits" is still a better way to zoom charts. Also, since v4.3.0, you...