尝试在x轴标签中创建带括号的图形,但括号和它们之间的任何文本都没有显示。
以下是代码:
ggplot(newData, aes(Size, Seconds)) +
geom_bar(aes(fill = Method), position="dodge", stat="identity") +
scale_x_discrete("Size") +
ggtitle("Cached Comparison (lower is better)") +
xlab("Size (MB)")
This is the graph that is being produced
我尝试使用以下代码将标签保存为变量:
label <- "Size (MB)"
然后改变使用的图形:
xlab(label)
但输出是一样的。如何在标签中显示括号?
答案 0 :(得分:2)
一种选择是在x和x标签x上手动输入元素。
ggplot(newData, aes(Size, Seconds)) +
geom_bar(aes(fill = Time), position="dodge", stat="identity") +
scale_x_discrete(labels=c("1","10","100","1000", "5000")) +
ggtitle("Cached Comparison (lower is better)") +
xlab("Size (MB)")