lets-plot
lets-plot copied to clipboard
Lack of support for multi-line axis labels
Code:
from lets_plot import *
LetsPlot.setup_html()
data = {
'x': ['foo\nbar\nbaz'],
'y': ['qwe\nasd\nzxc']
}
ggplot(data) + geom_point(aes(x='x', y='y'))
Output: