我使用繪制我的資料ggplot2并得到錯誤"prediction from a rank-deficient fit may be misleading"。看這里:
# Data.
temp <- structure(list(x = c(-62135599651, -62135599057, -62135598463, -62135597869, -62135597275, -62135596681, -62135596087, -62135595493, -62135594899, -62135594305), y = c(0.1, 0.2, 0.4, 0.3, 0.5, 0.5, 0.9, 0.9, 0.8, 1)), class = "data.frame", row.names = c(NA, -10L))
# Plot.
ggplot(temp, aes(x, y))
geom_point()
geom_smooth(method= "lm")
圖中的geom_smooth()線看起來錯誤(如錯誤所示):

有一個
轉載請註明出處,本文鏈接:https://www.uj5u.com/ruanti/444190.html
