The following code is incorrect and should produce an error: ```python 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: <img src="https://user-images.githubusercontent.com/26162403/113009337-88174580-9180-11eb-97f1-f5591d243594.png" width="400" height="300" />
The following code is incorrect and should produce an error:
But it just draws a picture: