我的数据如下:
service,rating_1,rating_2,rating_3,rating_4,rating_5
renew_patent,0,0,1,2,11
apply_benefit,21,20,121,828,1744
apply_employment_tribunal,0,0,0,0,0
我希望R为每行打印一个直方图,列为直方图的条形。
到目前为止我已经得到了这个:
require(lattice)
data <- read.csv("test.csv", header = TRUE)
colors = c('red', 'orange', 'yellow', 'blue', 'green')
barchart(rating_1+rating_2+rating_3+rating_4+rating_5 ~ service, data=data,
auto.key=list(space='right'), scales=list(x=list(rot=45)),
ylab="Percentage of total", col=colors)
它正在工作,但它只是改变了条形的颜色,而不是图例的颜色。
如何指定图例的颜色以及条形图?
答案 0 :(得分:7)
如果您更改col=
,格子会更喜欢将barchart
参数传递给par.settings
。在这种情况下。条形的颜色由superpose.polygon决定,因为您有不同的评级组。这应该做你想做的事情
data<-data.frame(
service = c("renew_patent", "apply_benefit", "apply_employment_tribunal"),
rating_1 = c(0, 21, 0),
rating_2 = c(0, 20, 0),
rating_3 = c(1, 121, 0),
rating_4 = c(2, 828, 0),
rating_5 = c(11, 1744, 0)
)
colors = c('red', 'orange', 'yellow', 'blue', 'green')
barchart(rating_1+rating_2+rating_3+rating_4+rating_5 ~ service, data=data,
auto.key=list(space='right'), scales=list(x=list(rot=45)),
ylab="Percentage of total", par.settings=list(superpose.polygon=list(col=colors)))