gpt4 book ai didi

r - 标题R为中心的空剧情

转载 作者:行者123 更新时间:2023-12-03 16:13:11 25 4
gpt4 key购买 nike

我正在尝试创建一个空的plotly,并显示一条消息,说明为什么该图作为标题为空。我想将消息水平和垂直居中。

我缺少垂直中心:

empty_plot <- function(title = NULL){
p <- plotly_empty(type = "scatter", mode = "markers") %>%
config(
displayModeBar = FALSE
) %>%
layout(
title = title
)
return(p)
}

empty_plot("Why it is empty")

最佳答案

刚发现选项yref = "paper",其中y = 0.5位于中间位置:

empty_plot <- function(title = NULL){
p <- plotly_empty(type = "scatter", mode = "markers") %>%
config(
displayModeBar = FALSE
) %>%
layout(
title = list(
text = title,
yref = "paper",
y = 0.5
)
)
return(p)
}
empty_plot("Why it is empty")

关于r - 标题R为中心的空剧情,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56788175/

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