轉載自http://stats.stackexchange.com/questions/12392/how-to-compare-two-datasets-with-q-q-plot-using-ggplot2
感謝csgillespie的答案
qqplot是可以直觀反應兩組數字是否屬於同一分布的作圖。ggplot2提供了一個qqplot的函數,但這個函數並不能對兩組觀測的數字進行作圖。與此相對的是,R中卻有原生函數qqplot來提供這個作圖。
以下是如何利用qqplot函數的方法,使用ggplot來作圖。
這是R中qqplot的原始方法:
R> qqplot function (x, y, plot.it = TRUE, xlab = deparse(substitute(x)), ylab = deparse(substitute(y)), ...) { sx <- sort(x) sy <- sort(y) lenx <- length(sx) leny <- length(sy) if (leny < lenx) sx <- approx(1L:lenx, sx, n = leny)$y if (leny > lenx) sy <- approx(1L:leny, sy, n = lenx)$y if (plot.it) plot(sx, sy, xlab = xlab, ylab = ylab, ...) invisible(list(x = sx, y = sy)) } <environment: namespace:stats>
這是ggplot利用同樣方法進行作圖的代碼:
x <- rnorm(10);y <- rnorm(20) sx <- sort(x); sy <- sort(y) lenx <- length(sx) leny <- length(sy) if (leny < lenx)sx <- approx(1L:lenx, sx, n = leny)$y if (leny > lenx)sy <- approx(1L:leny, sy, n = lenx)$y require(ggplot2) g = ggplot() + geom_point(aes(x=sx, y=sy)) g
