无法在条形图中显示标签

时间:2018-05-19 16:32:47

标签: r ggplot2

我正在尝试使用R编程在条形图中显示标签。以下是代码。

    faults <- read.csv("/resources/data/Fault Data/Fault_data.csv")
p<-ggplot(data=faults,aes(x=Region))+
  geom_bar(fill="steelblue")+
  labs(x="Region",y="Fault Count")+
    theme_minimal()
p + geom_text(aes(y=count,label=count), vjust=1.6, color="white", size=3.5)
p

想要显示与条形图内的区域名称匹配的计数。虽然条形图即将到来,但计数不会显示在条形图内。 CSV文件中没有单独的计数字段。得到以下错误。

  

不知道如何自动选择类型对象的比例   nonstandardGenericFunction。违约持续。不知道怎么做   自动选择类型对象的比例   nonstandardGenericFunction。违约持续。错误   (function(...,row.names = NULL,check.rows = FALSE,check.names =   TRUE,:参数意味着行数不同:0,4816

0 个答案:

没有答案