有
我从图中创建了一个直方图,并尝试将CDF放在hoverinfo上。不知何故,“CDF”显示不正确。我想我没有引用正确的bin信息。这是代码。
cdf <- ecdf(iris$Sepal.Length)
plot_ly(iris) %>%
add_trace(x=~Sepal.Length,
type='histogram',
hoverinfo='text+x+y',
text=~cdf(Sepal.Length))
谢谢!