So I've been trying to get two Dotplots (Hmisc package) to turn up in the same graph but R draws them sequentially instead.
Anybody know how to draw two Dotplots in the same graph, specifically using the Hmisc package?
I've tried somethings like
par(mfrow = c(1, 2))
Dotplot(latitude~mortality, data=USmelanoma)
Dotplot(longitude~mortality, data=USmelanoma)
But it draws them in two seperate graphs, one after the other instead of in one graph, as I had expect par(mfrow = c(1,2)) to do