如何调整(增加或减少)轴文本(数字)和绘图区域(灰色区域)之间的空间?
dfr <- data.frame(x=1:5,y=1:5)
ggplot(dfr,aes(x,y))+
geom_point()+
theme(axis.title=element_blank(),
axis.ticks=element_blank())
答案 0 :(得分:3)
一个选项可能是使用document.querySelectorAll('a[href^="#cite"]')
来设置绘图区域和轴文本之间的空间,因为您选择不显示刻度线(axis.ticks.length()
)。
axis.ticks=element_blank()
它产生输出:
或者,您可以定义ggplot(dfr,aes(x,y))+
geom_point()+
theme(axis.title=element_blank(),
axis.ticks.length = unit(.85, "cm"),
axis.ticks=element_blank())
到adjust the space的参数(t,r,b,l)。
margin()