1
ggplot2'deki geom_point npc koordinatları
Referans çerçevesinin tüm çizilen görüntünün olduğu bir ggplot'ta geom_point'in x , y koordinatlarını nasıl alabilirim ? Bazı geom_point s kullanarak bir ggplot oluşturabilirsiniz : library(ggplot2) my.plot <- ggplot(data.frame(x = c(0, 0.456, 1), y = c(0, 0.123, 1))) + geom_point(aes(x, y), color = "red") Bu şunu verir: Bunu bir oyuğa dönüştürerek …