Igor Alshannikov
Igor Alshannikov
Now when passing 1d KtNDArray as a data series to lets-plot user have to explicitly call `toList()`.
When trying to execute Kotlin notebook at mybinder I'm getting an error: ``` ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command...
It is 1-D array_like thing and can be just a std Kotiln collection. Instead of ``` Random.multivariateNormal(mean=array(listOf(-2,0)), ... ``` would be nice to have: ``` Random.multivariateNormal(mean=listOf(-2,0), ... ```
[`typeE()`](https://github.com/JetBrains/lets-plot/blob/85dbbed132fcdf35529c7b4a321bedda6cc9894c/commons/src/commonTest/kotlin/org/jetbrains/letsPlot/commons/formatting/number/NumberFormatExtremesTest.kt#L27) test fails under corretto-21 (arm64). Under corretto-17 however the test is successful.
I.e. geometry defaults: sizes, palettes etc., in addition to flavors. See Matplotlib stylesheets: https://matplotlib.org/stable/gallery/style_sheets/style_sheets_reference.html Related concern: > I have been wondering if there is an easy way to get back...
See discussion: https://github.com/JetBrains/lets-plot/issues/955#issuecomment-2191425769 Two ways this issue can be fixed: - Introduce an option similar to "trim" in `geom_density()` (in this case historgram can't be stacked) - Remove empty bins...
``` + theme( panel_grid_major_y=element_line(size=2, linetype='dotted', color='pen') ) ``` results in exception.
Currently abline is corrupted on a chart with polar coord system.
Currently tooltip pops up only when hover over the dead center of point regardless of the point's size.