We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I think I might have found a bug associated with the ggplotly function in the plotly package.
ggplotly
plotly
In the following bit of code, the result works for n = 9 but not n >= 10.
Can anybody suggest a work around, or at least a reason for the bug?
require(data.table) require(plotly) require(ggplot2) n <- 10 jj <- CJ(week=c(1:n),day=c('Sun','Mon','Tue','Wed','Thu','Fri','Sat'),hour=c(0:23)) jj[,day:=factor(day,levels = c('Sun','Mon','Tue','Wed','Thu','Fri','Sat'))] jj[,n:=rnorm(nrow(jj))] p1 <- ggplot(jj,aes(x=hour,y=n))+geom_line()+facet_grid(week~day) p1 p1 <- ggplotly(p1) p1
Thanks,
The text was updated successfully, but these errors were encountered:
The PR #620 should fix the bug, but since the package undergoes heavy refactoring at the moment, I'm not sure the owner would merge it to the master.
Sorry, something went wrong.
be92f44
No branches or pull requests
I think I might have found a bug associated with the
ggplotly
function in theplotly
package.In the following bit of code, the result works for n = 9 but not n >= 10.
Can anybody suggest a work around, or at least a reason for the bug?
Thanks,
The text was updated successfully, but these errors were encountered: