gpt4 book ai didi

r - 如何为 R Plotly 表添加标题

转载 作者:行者123 更新时间:2023-12-04 01:36:14 24 4
gpt4 key购买 nike

我使用ropensci/plotly 库创建了一个表格。我尝试通过多种方式添加标题。

这是我的代码:

library(plotly)
data <- read.csv("data.csv")

plot_ly(

type = 'table',
columnwidth = c(33, 32, 32),
columnorder = c(0, 1, 2),
header = list(
values = list(list(c("1st column")),
list(c("2nd column")),
list(c("3rd column"))
),
align = c("center", "center"),
line = list(width = 2, color = 'black'),
fill = list(color = c("blue", "blue")),
font = list(family = "Arial", size = 14, color = "white")
),
cells = list(
values = list(c(data$1st_column),c(data$2nd_column),c(data$3rd_column)),
align = c("center", "center"),
line = list(color = "black", width = 1),
font = list(family = "Arial", size = 12, color = c("black"))
))

最佳答案

我发现添加:

%>%
layout(title = "Text Title")

在最后一个“))”之后,您的标题将显示在您的图表上方。

这是我遇到的问题,无法在 R 中找到“标题”图表的答案,所以我想我会发布它。

关于r - 如何为 R Plotly 表添加标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49657941/

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