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

Incorrect code does not throw an exception

Open ASmirnov-HORIS opened this issue 4 years ago • 1 comments

The following code is incorrect and should produce an error:

from lets_plot import *
LetsPlot.setup_html()
p = ggplot() + geom_point(x=0, y=0)
q = ggplot() + geom_point(x=1, y=1)
p + q

But it just draws a picture:

ASmirnov-HORIS avatar Mar 30 '21 15:03 ASmirnov-HORIS

If we show two plots it could be a feature )

alshan avatar Jun 28 '21 22:06 alshan