如何在圆点图中插入标签?

时间:2019-07-14 10:29:54

标签: r charts

我有一个看起来像这样的数据框。

enter image description here

enter image description here

我想为此数据绘制一个点状图,但是使用我的代码,不会打印标签。另外,我想用颜色填充点。这可能吗?

以下代码显示了我尝试过的内容:

  lexical_density=read.csv("~/lexical_density_lit_job10.csv", sep=";")
  dat=lexical_density

dotchart(dat$Lexical.Density,labels=row.names(dat$TEXTS),
         main="Literature Domain", 
         xlab="Lexical Density")

我想绘制this

之类的图表

1 个答案:

答案 0 :(得分:0)

这是你的追求吗?

df <- data.frame(T = c('S', 'HT',' MT',' PF', 'PL', 'SF', 'SL'), 
                 LD = c(0.559, 0.576, 0.567, 0.585, 0.567, 0.566, 0.568), stringsAsFactors = FALSE)

dotchart(df$LD, labels = df$T,  bg = 'red')