gpt4 book ai didi

r - 增加绘图图形标题的大小

转载 作者:行者123 更新时间:2023-12-05 00:49:28 24 4
gpt4 key购买 nike

我正在使用 plotly 4.5.2 .

以下是我如何使用 titlefont=list(size=30) 更改 plotly 标题的大小在 layout() :

library(plotly)
x <- 0:10
y <- 0:10
dd <- transform(expand.grid(x=x, y=y), z=x+y)
dd1 <- data.frame(x=x, y=y)
pp <- plot_ly() %>%
layout(title="Hello", titlefont=list(size=30)) %>%
add_trace(data=dd, x=~x, y=~y, z=~z, type="heatmap") %>%
add_trace(data=dd1, x=~x, y=~y, type="scatter", mode="lines", showlegend=FALSE)

但是当标题太大时无法正确渲染:

enter image description here

这是一个错误,还是我做错了什么?

最佳答案

您可以手动设置图形大小。请尝试以下操作:
pp %>% layout(autosize = F, height = 500, margin = list(l=50, r=50, b=100, t=100, pad=4))

Title is visible now

关于r - 增加绘图图形标题的大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40400609/

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