如何设置绘图图表以在 R 中具有透明背景?图表、如何设置、透明、背景

2023-09-06 14:34:25 作者:男女都可以用的 男女通用的好听的

到目前为止,这是我所拥有的:

Here's what I have, so far:

f1 <- list(
   family = "Arial, sans-serif",
   size = 25,
   color = "white"
)
f2 <- list(
   family = "Old Standard TT, serif",
   size = 14,
   color = "black"

)
a <- list(
   title = "SALES PER SONG",
   titlefont = f1,
   showgrid = FALSE,
   showticklabels = TRUE,
   showline=TRUE,
   tickangle = 45,
   tickfont = f2
  )

 salesplot <-plot_ly(producersales, type="scatter", x=Producer, y=SalesPerSong, color=SongRange, colors=cols, mode="markers", size=SalesPerSong) %>% 
layout(xaxis = a, yaxis = a)

我尝试在 layout() 中的 x 和 y 轴信息之后添加 paper_bgcolor=#00000000, plot_bgcolor=#00000000,但是当我运行命令时,我得到加号.我不知道该怎么做,所以任何帮助表示赞赏.谢谢!

I tried adding paper_bgcolor=#00000000, plot_bgcolor=#00000000 after the x and y axis information within layout(), but when I run the command, I get the plus sign. I don't know what to do, so any help is appreciated. Thanks!

推荐答案

试试吧:

salesplot <-plot_ly(producersales, type="scatter", x=Producer, y=SalesPerSong, color=SongRange, colors=cols, mode="markers", size=SalesPerSong) %>% 
layout(xaxis = a, yaxis = a) %>% 
layout(plot_bgcolor='rgb(254, 247, 234)') %>% 
layout(paper_bgcolor='rgb(254, 247, 234)') #will also accept paper_bgcolor='black' or paper_bgcolor='transparent'

您可以更改 rgb 数字以满足您的需要.

You can change the rgb numbers to fit your needs.

 
精彩推荐