如何在R语言中使用plot函数创建图表后移除图例的边框?
当我们使用plot函数创建图表并向图表添加图例时,图表输出的图例带有边框。但这会破坏图表的流程,边框覆盖的区域会使图表看起来不美观。因此,我们可以使用`bty="n"`与legend函数一起使用,它将移除图例的边框。
示例
创建带有边框图例的图表:
plot(x=1:10,y=10:1) legend(1,2,"This is a scatterplot between x and y")
输出
创建没有边框图例的图表:
示例
plot(x=1:10,y=10:1) legend(1,2,"This is a scatterplot between x and y",bty="n")
输出
广告