How to produce a meaningful draftsman/correlation plot for discrete values
问题 One of my favorite tools for exploratory analysis is pairs() , however in the case of a limited number of discrete values, it falls flat as the dots all align perfectly. Consider the following: y <- t(rmultinom(n=1000,size=4,prob=rep(.25,4))) pairs(y) It doesn't really give a good sense of correlation. Is there an alternative plot style that would? 回答1: If you change y to a data.frame you can add some 'jitter' and with the col option you can set the transparency level (the 4th number in rgb):