如何为离散值生成有意义的绘图员/关联图

时间:2014-02-11 01:26:40

标签: r analytics correlation

我最喜欢的探索性分析工具之一是pairs(),但是在离散值有限的情况下,由于点都完全对齐,所以它会变平。请考虑以下事项:

y <- t(rmultinom(n=1000,size=4,prob=rep(.25,4)))
pairs(y)

它并没有真正给出良好的相关感。是否会有另一种情节风格?

3 个答案:

答案 0 :(得分:5)

如果将y更改为data.frame,则可以添加一些“jitter”,使用col选项可以设置透明度级别(rgb中的第4个数字):

y <- data.frame(y)
pairs(sapply(y,jitter), col = rgb(0,0,0,.2))

enter image description here

或者你可以使用ggplot2的plotmatrix:

library(ggplot2)
plotmatrix(y) + geom_jitter(alpha = .2)

enter image description here

编辑:由于ggplot2中的plotmatrix已被弃用,请使用ggpairs(上面的@ hadley评论中提到的GGally包)

library(GGally)
ggpairs(y, lower = list(params = c(alpha = .2, position = "jitter")))

enter image description here

答案 1 :(得分:3)

以下是使用corrplot的示例:

M <- cor(y)
corrplot.mixed(M)

enter image description here

您可以在简介中找到更多示例

http://cran.r-project.org/web/packages/corrplot/vignettes/corrplot-intro.html

答案 2 :(得分:2)

以下是使用ggplot2的几个选项:

library(ggplot2)

## re-arrange data (copied from plotmatrix function)
prep.plot <- function(data) {
    grid <- expand.grid(x = 1:ncol(data), y = 1:ncol(data))
    grid <- subset(grid, x != y)
    all <- do.call("rbind", lapply(1:nrow(grid), function(i) {
        xcol <- grid[i, "x"]
        ycol <- grid[i, "y"]
        data.frame(xvar = names(data)[ycol], yvar = names(data)[xcol], 
                   x = data[, xcol], y = data[, ycol], data)
    }))
    all$xvar <- factor(all$xvar, levels = names(data))
    all$yvar <- factor(all$yvar, levels = names(data))
    return(all)
}

dat <- prep.plot(data.frame(y))

## plot with transparent jittered points
ggplot(dat, aes(x = x, y=y)) +
    geom_jitter(alpha=.125) +
    facet_grid(xvar ~ yvar) +
    theme_bw()

## plot with color representing density
ggplot(dat, aes(x = factor(x), y=factor(y))) +
    geom_bin2d() +
    facet_grid(xvar ~ yvar) +
    theme_bw()