-
Notifications
You must be signed in to change notification settings - Fork 633
Issue in Sankey Plot: Error in proposed[["hoveron"]] #1315
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Thank you for your work. I tested your code with R version 3.5.1, plotly_4.8.0. Please help me! |
I didn't say it was fixed, I just moved the issue's location |
I encountered the same problem when my Sankey chart stopped working after upgrade to plotly 4.8.0. Reverting to 4.7.1 fixed the problem ofcourse (devtools::install_version("plotly", "4.7.1")). I had upgraded to 4.8.0 to get a fix for the following warning as described in #985.
|
As it turns out, the example itself has a bug...the domain = list(
x = c(0,1),
y = c(0,1)
) Not an atomic vector with four elements: domain = c(
x = c(0,1),
y = c(0,1)
) If anyone sees this error due to a different problem please let me know. |
Verified, works with |
From @KoningD
Example https://plot.ly/r/sankey-diagram/#basic-sankey-diagram under Add Links gives the error:
Error in proposed[["hoveron"]] : subscript out of bounds
I tried it with the following versions:
r version 3.5.1, plotly_4.8.0
r version 3.4.2, plotly_4.8.0
The text was updated successfully, but these errors were encountered: