Матрица собственных векторов
U
## [,1] [,2]
## [1,] -0.961 0.275
## [2,] -0.275 -0.961
ggplot(XY_norm_cent, aes(x = x, y = y)) +
geom_point() +
geom_point(aes(x = mean(x), y = mean(y)),
size = 4, color = "yellow") +
geom_line(data = PC1, aes(x = x, y = y),
color = "yellow", size = 1.5) +
geom_line(data = PC2, aes(x = x, y = y),
color = "yellow", size = 1.5) +
coord_equal() +
geom_abline(slope = (U[2,1])/(U[1,1]),
color = "blue") +
geom_abline(slope = (U[2,2])/(U[1,2]),
color = "blue")
Для удобства восприятия лучше повернуть систему координат так, чтобы ось максимального варьирования была расположена горизонтально.