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

Add the % symbol to the format when using percentage statistical variables

Open IKupriyanov-HORIS opened this issue 1 year ago • 0 comments

import numpy as np
from lets_plot import *

LetsPlot.setup_html()

np.random.seed(42)

data = {'x': np.random.randint(10, size=3000)}
ggplot(data, aes(x='x', y='..sumpct..')) + geom_bar()

Output: image

Would be great to see % in tick labels and tooltips

IKupriyanov-HORIS avatar Feb 05 '24 11:02 IKupriyanov-HORIS