设置条形图颜色并添加x轴值

时间:2016-02-29 21:36:58

标签: r

这是我的代码

#!/usr/bin/R

c1 <-c(60,199,102,134,81,95,135,151,102,112,211,120)
barplot(c1, main="number of points per cluster", 
    color="dark blue")

但警告信息说

  

警告信息:1:在plot.window(xlim,ylim,log = log,...)中:
  &#34;颜色&#34;不是图形参数

我的图片enter image description here

我还想在x轴上从1到12编号。

2 个答案:

答案 0 :(得分:5)

设置颜色使用col,而不是color。要在x轴上包含数字,我们可以为c1指定名称。

c1 <- c(60,199,102,134,81,95,135,151,102,112,211,120)
names(c1) <- 1:length(c1)

barplot(c1, main = "number of points per cluster", 
        col = "dark blue")

enter image description here

答案 1 :(得分:0)

要添加其他答案:您甚至可以更进一步获取分类数据,并将颜色与数据本身相匹配。


- (void)applicationDidBecomeActive:(UIApplication *)application {
   [FBSDKAppEvents activateApp];
}

enter image description here