如何删除 ggplot2 中 plots/graphics 周围的黑色边框? R

How to remove black border around plots/graphics in ggplot2? R

我正在创建一些图,但我创建的每个图都有黑色方形边框?我怎样才能使这个边框变白或完全删除它?

这是我的代码

library(ggplot2)
library(ggthemes)

ggplot(mtcars, aes(x = mpg)) + 
  geom_point(aes(y = hp)) + 
  theme_clean(base_size=18)


这是我粘贴到绘图中的输出图,并使用红色箭头指向我图周围的黑色边框

如何去除黑色方框?

编辑 themeplot.background 元素,将 color 更改为白色

library(ggplot2)
library(ggthemes)
data(mtcars)
ggplot(mtcars, aes(x = mpg)) +
  geom_point(aes(y = hp)) +
  theme_clean() +
  theme(plot.background = element_rect(
    color = "white"
  ))