No need to redo the data here.
histogram( ~ height +age +weight ,data = dd)
Then you can use layout to change the display order of the panels. For instance:
histogram( ~ height +age +weight ,layout=c(1,3),data = dd)
This will result in 3 histograms in 3 panels.
EDIT
to add a title you can use main
histogram( ~ height +age +weight ,layout=c(1,3),data = dd, main='PLEASE READ LATTICE HELP')
Note: Parameter parameters are shared between different lattice functions. For example, the entry xlab: See xyplot . when you go to xyplot help you can read:
main: Typically a character string or expression describing the main title to be placed on top of each page. Defaults to NULL
source share