繁体   English   中英

R - 图示 - 隐藏颜色条

[英]R - plotly - hide colorbar

如何在以下从他们的网站上获取的剧情示例中隐藏彩条?

    df <- read.csv('https://raw.githubusercontent.com/plotly/datasets/master/2014_world_gdp_with_codes.csv')

# light grey boundaries
l <- list(color = toRGB("grey"), width = 0.5)

# specify map projection/options
g <- list(
  showframe = FALSE,
  showcoastlines = FALSE,
  projection = list(type = 'Mercator')
)

plot_ly(df, z = GDP..BILLIONS., text = COUNTRY, locations = CODE, type = 'choropleth',
        color = GDP..BILLIONS., colors = 'Blues', marker = list(line = l),
        colorbar = list(tickprefix = '$', title = 'GDP Billions US$'),
        filename="r-docs/world-choropleth") %>%
  layout(title = '2014 Global GDP<br>Source:<a href="https://www.cia.gov/library/publications/the-world-factbook/fields/2195.html">CIA World Factbook</a>',
         geo = g)

图引用没有提供答案: https//plot.ly/r/reference/#colorbar 我可以通过编辑图形来隐藏颜色栏,但我想在R代码中控制它。

尝试在跟踪级别添加showscale = FALSE

https://plot.ly/r/reference/#heatmap-showscale

另一种选择是使用%>% hide_colorbar()

我最终在这里用JavaScript搜索它。 对于JS,使用showscale :false后图表类型: -

   showscale :false,
   type: 'heatmap',

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM