lattice is a R package specialized in making plot in one step.
It created a trellis object print() out to graphics device. In the command line environment, the object will be printed out automatically.
xyplot(Ozone ~ Wind, data=airquality)
The multi-panle plot is marked as subplot is Python.
xyplot(Ozone ~ Wind | Month, data=airquality, layout=c(5,1))
xyplot(y~x |f, panel=function(x,y,...){ panel.xyplot(x,y,...) panel.lmline(x,y,col=2) }