I'm trying to create a columnn plot with 6 categories. But I'm not sure why when the graph produced, it got everything on the same level.
Here is the code I used:
barchart<-ggplot()
barchart<-barchart + geom_col(data=slowdown, aes(x=Period, y="Growth rate", fill=Measure), position="dodge")
barchart
Sorry I'm new to R :((