这是我的代码
#!/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;不是图形参数
我还想在x轴上从1到12编号。
答案 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")
答案 1 :(得分:0)