About the command 'scatterPlot' from package 'openair' of R, I used the following command:
data(mydata)
scatterPlot(mydata, x = "nox", y = "no2", method = "hexbin",
colorcut = seq(0, 1, length = 7), cols = "default", trans=log, inv=exp)
and I got this graphic:
I need to know if it is possible to have two Scatterplots on the same graph, one with the method "hexbin" and other with the method "scatter"?
Or, more specifically, it is possible to plot points of another variable over a scatterplot hexbin? I tried to do this for a while, but I did not get hit.
I appreciate any help.