在 Plotly 中添加脚注
Adding footnote in Plotly
我正在尝试向使用 Plotly 绘制的图表添加星号脚注。这是我的代码:
library(plotly)
fig <- plot_ly(
x = c("giraffes", "orangutans", "monkeys"),
y = c(20, 14, 23),
name = "SF Zoo",
type = "bar"
)
fig
现在我想在“长颈鹿*”上加一个星号,然后在这个条形图下面给出一些额外的解释,比方说:Note: * The tallest animal
.
我正在尝试向使用 Plotly 绘制的图表添加星号脚注。这是我的代码:
library(plotly)
fig <- plot_ly(
x = c("giraffes", "orangutans", "monkeys"),
y = c(20, 14, 23),
name = "SF Zoo",
type = "bar"
)
fig
现在我想在“长颈鹿*”上加一个星号,然后在这个条形图下面给出一些额外的解释,比方说:Note: * The tallest animal
.