用坐标绘制单词

时间:2015-05-26 14:34:57

标签: r ggplot2

我的数据框看起来像这样:

word   x     y
"and"  0     0
"the"  0.5   0.4
"some" 1     1
"get"  -0.3  0.4
....

我希望将word中的字词映射到坐标(x, y)

ggplot会更好。

1 个答案:

答案 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))