Hi Sven,
There are few ways to go about this depending what you want.
If you want multiple lines sharing the same axis, you can do something like this:
plot(dataframe, layer(x="x1", y="y1", Geom.line), layer(x="x2", y="y2", Geom.line))
Where "dataframe" is a DataFrame that has columns x1, y1, x2, y2.
If you want to put two entirely separate plots side by side, you can use the "hstack" or "vstack" functions like so:
hstack(plot(data, x="x1", y="y1", Geom.line), plot(data, x="x2", y="y2", Geom.line))
If you want to draw multiple similar plots grouped by one or two categorical variables in a DataFrame, you can use
Geom.subplot_grid, which is actually documented, unlike layer and hstack/vstack.