我想制作一张包含三个重叠直方图的rbokeh
图表。我可以这样做,但没有传说:
library(rbokeh)
figure(tools=c(), legend_location="top_right", padding_factor = 0.01) %>%
ly_hist(rnorm(10000, mean=0),
color=color_palette[1], alpha = 0.3, breaks=20, lname="L", legend="L", freq=F) %>%
ly_hist(rnorm(10000, mean=1, sd=0.25),
color=color_palette[2], alpha = 0.3, breaks=20, lname="M", legend="M", freq=F) %>%
ly_hist(rnorm(10000, mean=2, sd=0.5),
color=color_palette[3], alpha = 0.3, breaks=20, lname="H", legend="H", freq=F)
如果我使用基础R,我需要明确地调用legend()
,如同
Adding key legend to multi-histogram plot in R
我没有看到rbokeh::legend()
功能。
有人可以建议如何在情节中添加图例吗?
提前致谢。