如果要调节文本框的位置可以使用nudge_x和nudge_y参数 代码语言:javascript 复制 ggplot(data=df,aes(x=x,y=y))+geom_label(aes(label=label,fill=label),label.r=unit(0,'mm'),label.size=NA,label.padding=unit(0.3,'cm'),nudge_y=c(-0.5,0.2),nudge_x=c(0.5,-0.2))+theme_bw()+theme(aspect...
ggplot(data=df,aes(x=x,y=y))+ geom_label(aes(label=label,fill=label))+ theme(aspect.ratio = 0.2)+ ylim(0,3) 文本框的四周默认是带有圆角的,如果不想要圆角可以使用参label.r ggplot(data=df,aes(x=x,y=y))+ geom_label(aes(label=label,fill=label), label.r = unit(0,'mm'))+ ...
geom_label(aes(label=label,fill=label))+ theme(aspect.ratio = 0.2)+ ylim(0,3) 1. 2. 3. 4. image.png 文本框的四周默认是带有圆角的,如果不想要圆角可以使用参label.r ggplot(data=df,aes(x=x,y=y))+ geom_label(aes(label=label,fill=label), label.r = unit(0,'mm')...
首先是构造一份数据集 画图 文本框的四周默认是带有圆角的,如果不想要圆角可以使用参label.r 这样就变成了直角 如果不想要文本框四周的黑线,可以使用label.size=...