我想删除 R 中plot_ly 的 y 轴标题,但我找不到任何有关如何执行此操作的建议。
如果我指定空白轴标题,它会生成自动标题。
我发现将轴标题设置为空字符串('' 或“”)是有效的:
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 描述的那样。