Tôi đã bắt gặp một văn bản rất hay trên Bayes / MCMC. CNTT gợi ý rằng việc tiêu chuẩn hóa các biến độc lập của bạn sẽ giúp thuật toán MCMC (Đô thị) hiệu quả hơn, nhưng cũng có thể làm giảm (đa) cộng tuyến. Điều đó có thể đúng không? Đây có phải là một cái gì đó tôi nên làm như là tiêu chuẩn . (Xin lỗi).
Kruschke 2011, Thực hiện phân tích dữ liệu Bayes. (AP)
chỉnh sửa: ví dụ
> data(longley)
> cor.test(longley$Unemployed, longley$Armed.Forces)
Pearson's product-moment correlation
data: longley$Unemployed and longley$Armed.Forces
t = -0.6745, df = 14, p-value = 0.5109
alternative hypothesis: true correlation is not equal to 0
95 percent confidence interval:
-0.6187113 0.3489766
sample estimates:
cor
-0.1774206
> standardise <- function(x) {(x-mean(x))/sd(x)}
> cor.test(standardise(longley$Unemployed), standardise(longley$Armed.Forces))
Pearson's product-moment correlation
data: standardise(longley$Unemployed) and standardise(longley$Armed.Forces)
t = -0.6745, df = 14, p-value = 0.5109
alternative hypothesis: true correlation is not equal to 0
95 percent confidence interval:
-0.6187113 0.3489766
sample estimates:
cor
-0.1774206
Điều này đã không làm giảm mối tương quan hoặc do đó mặc dù sự phụ thuộc tuyến tính hạn chế của các vectơ.
Chuyện gì đang xảy ra vậy?
R