gpt4 book ai didi

r - 在绘图中左对齐图表标题

转载 作者:行者123 更新时间:2023-12-02 08:33:57 25 4
gpt4 key购买 nike

如何在 plot_ly 对象(从 ggplotly 创建)中左对齐图表标题?

library(ggplot2)
library(plotly)

p <-
ggplot(mtcars, aes(mpg, cyl)) +
geom_point() +
ggtitle("My Title") +
# Not necessary by default:
theme(plot.title = element_text(hjust = 0.0))

p

ggplotly(p)

p 的输出(预期标题对齐):

enter image description here

ggplotly(p)(未保留标题对齐):

enter image description here

最佳答案

plot_lyadded这个功能。现在您可以调用:

ggplotly(p) %>%
layout(
title = list(
xanchor = "right"
)
)

ggplotly(p) %>%
layout(
title = list(
x = 0.1
)
)

其中 x 是标准化位置,x=0 始终定位在左侧,x=1 始终定位向右。

关于r - 在绘图中左对齐图表标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44712678/

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