Igor Alshannikov

Results 285 comments of Igor Alshannikov

@hathawayj , we are gearing up for it )

`geomPie` added in [v4.2.0](https://github.com/JetBrains/lets-plot-kotlin/releases/tag/v4.2.0)

If KtNDArray implements Iterable then even `toList` wont be necessary, providing that `mean` argument had type `Iterable`.

Isn't the overhead there in any case? `mean=array(listOf(-2,0)`

Would be nice also to relax the type of parameter `cov` because now I have to create KtNDArrays when I don't really need them. Compare how Python is so much...

Another example: Python: ``` ... aaa \ + bbb ``` Must be replased in Kotlin with ``` ... aaa + bbb ```

What `linetype` would do for `elementText()` ?

See: [example notebook](https://nbviewer.org/github/JetBrains/lets-plot-kotlin/blob/master/docs/examples/jupyter-notebooks/f-4.7.1/theme_linetype.ipynb).

Hi @OSuwaidi . `buildPlotFromProcessedSpecs()` doesn't apply statistical transformation you needed. Try using [`buildPlotFromRawSpecs()`](https://github.com/JetBrains/lets-plot/blob/81e85b721e9ba33c24b14f691be77ee728d77480/js-package/src/jsMain/kotlin/MonolithicJs.kt#L35C5-L35C26) instead.

Hi guys, try to "standardize" plot specs before passing it to `buildPlotFromRawSpecs()`: ```Python from lets_plot._type_utils import standardize_dict plot_spec_std = standardize_dict(plot.as_dict()) ```