如何删除 R 中plot_ly 的 y 轴标题?

问题描述 投票:0回答:1

我想删除 R 中plot_ly 的 y 轴标题,但我找不到任何有关如何执行此操作的建议。

如果我指定空白轴标题,它会生成自动标题。

plotly
1个回答
0
投票

我发现将轴标题设置为空字符串('' 或“”)是有效的:

library(plotly)

# Calculate average mpg for each number of cylinders
agg_data <- aggregate(mpg ~ cyl, data = mtcars, mean)

# Create bar chart
fig <- plot_ly(data = agg_data, x = ~cyl, y = ~mpg, type = 'bar') %>%
  layout(title = 'Average MPG by Number of Cylinders',
         xaxis = list(title = ''),
         yaxis = list(title = ''))

# Display the plot
fig

但是设置

title = NULL
会导致返回默认标题,如 OP 描述的那样。

© www.soinside.com 2019 - 2024. All rights reserved.