lets-plot icon indicating copy to clipboard operation
lets-plot copied to clipboard

Multiplatform plotting library based on the Grammar of Graphics

Results 201 lets-plot issues
Sort by recently updated
recently updated
newest added

See docs: https://ggplot2.tidyverse.org/reference/element.html Needed to be able to move axis labels away from the axis: ![image](https://user-images.githubusercontent.com/4430922/177605791-7b803ac9-ef40-41ee-add2-39e5a0ed1f4a.png)

Currently, lines are drawn on top of all filled areas. ``` import numpy as np from lets_plot import * LetsPlot.setup_html() np.random.seed(12) data = dict( cond=np.repeat(['A','B'], 200), rating=np.concatenate((np.random.normal(0, 1, 200), np.random.normal(1,...

Like: ``` from lets_plot.bistro import * ```

There are arm64 MaoOS wheels. There is also x86_64/amd64 manylinux, MacOS, and Windows wheels. However, there are no arm64 manylinux wheels.

When I have a horizontal rotation with the plot, I noticed the x and y lab tooltips perfectly rotated as well. However, the tooltip for the plot data is not...

Apologies if this is not the right place to report issues in lets-plot-batik. The lets-plot-batik jar has META-INF/services files for javax.xml, org.apache.xml and org.apache.xalan that refer to xalan classes. xalan...

boxplot example - values in outlier tooltips are formatted in the exponential notation: Simplified: ``` data = { "alphabet": ["a","a","b","a","a","a","b","b","b","a","a","a"], "coeff": [ 0.9898989898989898, 0.98989898989899, 0.9871794871794872, 0.9916666666666667, 0.9882352941176471, 0.9947368421052631, 0.9916666666666667, 0.9882352941176471,...

Result should look like combination of `boxplot` and `errorbar`: