Skip to content
Prev 205179 / 398506 Next

scatterplot matrix question

William Simpson wrote:
Now that we are able to help with some more detailed view of your data 
(although you could have helped helping by making it easier for us to 
import your data into R), the answer is:

Almost, after reshaping:



dwide <- reshape(d, v.names="resp", idvar="ID",
                  timevar="angle", direction="wide")
pairs(dwide[,-1])


Best,
Uwe Ligges