gpt4 book ai didi

r - 如何在 R 中设置 plotly 图表以具有透明背景?

转载 作者:行者123 更新时间:2023-12-04 05:17:07 25 4
gpt4 key购买 nike

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

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)

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

最佳答案

你试一试:

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 数字以满足您的需要。

关于r - 如何在 R 中设置 plotly 图表以具有透明背景?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37380299/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com