我的数据框看起来像这样:
word x y
"and" 0 0
"the" 0.5 0.4
"some" 1 1
"get" -0.3 0.4
....
我希望将word
中的字词映射到坐标(x, y)
。
ggplot会更好。
答案 0 :(得分:4)
试试这个:
require(ggplot2)
df <- data.frame(
words = c("These","Are","Words"),
x = c(1,2,3),
y = c(1,2,3)
)
ggplot(data = df) +
geom_text(aes(x = x, y = y, label=words))