I am new to R, and I am trying to create a simple barplot. I have been able to create a barplot with the correct values, but only a single color for all bars. If I change the code slightly ( using table() instead of as.table() ), I get the wrong values, but the correct colors on the graph. How can I get the as.table() to accept multiple colors in a graph? Here is an altered version of my code:
a=30
b=20
c=10
d=15
x=matrix(c(a,b,c,d),ncol=4,byrow=TRUE)
colnames(x)=c("Label1","Label2","Label3","Label4")
rownames(x)=c("Percentage")
x=as.table(x)
color=c("red","blue","green","orange")
barplot(x,main="X",ylab="Percent",cex.names=0.75,col=color)
Passing in a vector instead of a table should do the trick:
Or